packages feed

diagrams-contrib 0.7 → 1.0

raw patch · 102 files changed

+1489/−253 lines, 102 filesdep +data-default-classdep +parsecdep +semigroupsdep ~basedep ~diagrams-coredep ~diagrams-libsetup-changed

Dependencies added: data-default-class, parsec, semigroups, text, vector-space-points

Dependency ranges changed: base, diagrams-core, diagrams-lib

Files

CHANGES.markdown view
@@ -1,3 +1,25 @@+1.0: 25 November 2013+---------------------++* **New features**++    - New module `Diagrams.TwoD.Sunburst`, for drawing sunburst+      charts.+    - New module `Diagrams.TwoD.Path.Metafont`, for specifying+      trails/paths using an API inspired by Metafont.  Like+      `cubicSpline` but gives you control over things like the+      tension/curvature or the tangent at a given point.+    - New module `Diagrams.TwoD.Path.Calligraphic` for making simple+      "calligraphic" strokes.+    - New module `Diagrams.Lens` with lenses for working with+      diagrams.++* **Bug fixes**++    - `Diagrams.TwoD.Factorization.primeLayout` has been rewritten to+      avoid iterated transformations, giving a significant performance+      boost.+ 0.7: 9 August 2013 ------------------ 
CONTRIBUTORS view
@@ -1,5 +1,10 @@+Daniel Bergey <bergey@alum.mit.edu>+Jan Bracker <jan.bracker@googlemail.com> Joachim Breitner <mail@joachim-breitner.de>+Joel Burget <joel@khanacademy.org> Deepak Jois <deepak.jois@gmail.com>+John Lato <jwlato@tsurucapital.com>+Jeffrey Rosenbluth <Jeffrey.Rosenbluth@gmail.com> Michael Sloan <mgsloan@gmail.com> Dominic Steinitz <dominic@steinitz.org> Ryan Yates <ryates@cs.rochester.edu>
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2011-2012, various (see headers of individual source files)+Copyright (c) 2011-2013, various (see headers of individual source files)  All rights reserved. 
Setup.hs view
@@ -1,27 +1,2 @@-import           Data.List                 (isSuffixOf)-import           Distribution.Simple-import           Distribution.Simple.Setup (Flag (..), HaddockFlags,-                                            haddockDistPref)-import           Distribution.Simple.Utils (copyFiles)-import           Distribution.Text         (display)-import           Distribution.Verbosity    (normal)-import           System.Directory          (getDirectoryContents)-import           System.FilePath           ((</>))---- Ugly hack, logic copied from Distribution.Simple.Haddock-haddockOutputDir :: Package pkg => HaddockFlags -> pkg -> FilePath-haddockOutputDir flags pkg = destDir-   where-     baseDir = case haddockDistPref flags of-                      NoFlag -> "."-                      Flag x -> x-     destDir = baseDir </> "doc" </> "html" </> display (packageName pkg)--main :: IO ()-main = defaultMainWithHooks simpleUserHooks-         { postHaddock = \args flags pkg lbi -> do-             dias <- filter ("svg" `isSuffixOf`) `fmap` getDirectoryContents "diagrams"-             copyFiles normal (haddockOutputDir flags pkg)-               (map (\d -> ("", "diagrams" </> d)) dias)-             postHaddock simpleUserHooks args flags pkg lbi-         }+import Distribution.Simple+main = defaultMain
diagrams-contrib.cabal view
@@ -1,5 +1,5 @@ name:                diagrams-contrib-version:             0.7+version:             1.0 synopsis:            Collection of user contributions to diagrams EDSL description:         A collection of user contributions for diagrams,                      an embedded domain-specific language for generation@@ -11,9 +11,10 @@ maintainer:          Various; see individual modules Bug-reports:         http://github.com/diagrams/diagrams-contrib/issues category:            Graphics-build-type:          Custom+build-type:          Simple cabal-version:       >=1.10 extra-source-files:  README.markdown, CHANGES.markdown, diagrams/*.svg, CONTRIBUTORS+extra-doc-files:     diagrams/*.svg tested-with:         GHC == 7.4.2, GHC == 7.6.1 Source-repository head   type:     git@@ -24,30 +25,43 @@   exposed-modules:     Diagrams.Color.HSV,                        Diagrams.Example.Logo,                        Diagrams.Layout.Wrap,+                       Diagrams.Lens,                        Diagrams.TwoD.Apollonian,                        Diagrams.TwoD.Factorization,                        Diagrams.TwoD.Tilings,+                       Diagrams.TwoD.Sunburst,                        Diagrams.TwoD.Layout.Tree,                        Diagrams.TwoD.Layout.CirclePacking,+                       Diagrams.TwoD.Path.Calligraphic,                        Diagrams.TwoD.Path.IteratedSubset,                        Diagrams.TwoD.Path.Turtle,                        Diagrams.TwoD.Path.Turtle.Aliases,                        Diagrams.TwoD.Path.Turtle.Internal-  build-depends:       base >= 4.2 && < 4.7,+                       Diagrams.TwoD.Path.Metafont+                       Diagrams.TwoD.Path.Metafont.Types+                       Diagrams.TwoD.Path.Metafont.Internal+                       Diagrams.TwoD.Path.Metafont.Combinators+                       Diagrams.TwoD.Path.Metafont.Parser+  build-depends:       base >= 4.2 && < 4.8,                        mtl >= 2.0 && < 2.2,                        containers > 0.4 && < 0.6,                        split >= 0.2.1 && < 0.3,                        vector-space >= 0.7 && < 0.9,+                       vector-space-points >= 0.1 && < 0.2,                        colour >= 2.3.1 && < 2.4,                        split >= 0.2.1 && < 0.3,-                       diagrams-core >= 0.7 && < 0.8,-                       diagrams-lib >= 0.7 && < 0.8,+                       diagrams-core >= 1.0 && < 1.1,+                       diagrams-lib >= 1.0 && < 1.1,                        arithmoi >= 0.4 && < 0.5,                        lens >= 3.8 && < 4,                        force-layout >= 0.2 && < 0.3,                        data-default >= 0.3 && < 0.6,                        MonadRandom >= 0.1.8 && < 0.2,-                       circle-packing >= 0.1 && < 0.2+                       circle-packing >= 0.1 && < 0.2,+                       parsec >= 3.1 && < 3.2,+                       text >= 0.11 && < 0.12,+                       data-default-class < 0.1,+                       semigroups >= 0.3.4 && < 0.12   hs-source-dirs:      src   default-language:    Haskell2010 @@ -66,7 +80,7 @@                        test-framework-hunit       >= 0.2 && < 0.4,                        test-framework-quickcheck2 >= 0.2 && < 0.4, -                       base >= 4.2 && < 4.7,-                       diagrams-lib >= 0.7 && < 0.8+                       base >= 4.2 && < 4.8,+                       diagrams-lib >= 1.0 && < 1.1    default-language:    Haskell2010
− diagrams/apollonian1.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="399.99999999999994" font-size="1" viewBox="0 0 400 400"><g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2815373906536786,0.6530913978828048 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.21934417441416615,0.7267549551686588 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.3984376761929896,0.7726551987151614 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.3793505552292814,0.7648868303214785 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.3521609767157176,0.7498094807324468 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.31213902973979246,0.7145944965922721 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2599116035070047,0.5222232024207253 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.20080082917277878,0.47740128390421843 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.28128523205212236,0.4419161112756696 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2672636474037272,0.4791556986718716 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 4.43933113006482e-2,0.6690771602732234 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 3.192589808381093e-2,0.6436622105651014 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 5.3509784325814824e-2,0.5182922448452651 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.10490589568205957,0.5764939882688405 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -7.652302684477676e-2,0.5045129754307014 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.30234235807538123,0.4032418782813029 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.28313117838818835,0.4187067472658536 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.25781249330572464,0.43742727532891257 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.2231663131622284,0.46040534187454 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.1734223007608759,0.4889259586503651 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -9.7373211879208e-2,0.5242883150201415 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 2.898622907015514e-2,0.565993208782911 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.26277404305271235,0.6015809210700274 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7475909572591641,0.6530913978828048 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.8180766023306116,0.7267549551686588 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6218747885684126,0.7726551987151614 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6508118059633982,0.7648868303214785 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6971186977123766,0.7498094807324468 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7817914553903114,0.7145944965922721 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7640972361422947,0.5222232024207253 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.8252164900295883,0.47740128390421843 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7499597347975746,0.4419161112756696 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.799232453338065,0.4791556986718716 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9789711342736777,0.6690771602732234 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.014881512107808,0.6436622105651014 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9853154518197665,0.5182922448452651 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.1324016182130618,0.5764939882688405 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.1010559216041287,0.5045129754307014 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.322654822836783,0.4032418782813029 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3083934744652261,0.4187067472658536 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2900598334463935,0.43742727532891257 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2657055080541237,0.46040534187454 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.231980761696604,0.4889259586503651 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.1827122421476661,0.5242883150201415 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.1055891340526576,0.565993208782911 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9744519138945753,0.6015809210700274 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.41716734290777446,0.3125340374837838 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.4552752483399817,0.29231643213807884 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6064991305471471,0.3125340374837838 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5894495033200366,0.29231643213807884 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5148458296557342,0.12274456531309759 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.48458296557342e-2 -1.484582965573419e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5261183982500285,0.16370879321886023 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028443e-2 -2.611839825002843e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5580875589830302,0.24791475045191885 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303017e-2 -5.8087558983030134e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7413364125799319,0.5473387220148809 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.2413364125799319 -0.24133641257993177Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.41754295925454943,-0.5577512867312748 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.5103609721090018,-0.53713143315396 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4648420761665976,-0.722589193517122 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.46519555816574687,-0.697909947413537 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.460953651347835,-0.6585463674510966 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4393048513010377,-0.5869444844071892 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.31630054807618396,-0.47580552005993687 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.30653689527337896,-0.40133343143290556 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.2342567209678753,-0.4510287447882533 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.26470515853061066,-0.44224130124814964 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.5514000508446582,-0.362867213774731 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.529763024215616,-0.32921154090611326 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.41239304942116106,-0.2886751345948127 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.5448374561781029,-0.18548982636336775 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4690493429944119,-0.17536254744831065 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4953107733087007,6.901077884114544e-2 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.497860695043014,4.678431453498789e-2 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.499667544360743,1.852203883445571e-2 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.49967107995955085,-1.85149627534068e-2 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4954938359073817,-6.891830389508855e-2 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.4813988480872702,-0.14086359830118464 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.44202754185968973,-0.24982657353218887 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.33029084931550673,-0.4256376046970958 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.18451617595180672,-0.9613655149359679 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.21099475815077906,-1.055648925799137 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.35312351997888647,-0.9160914089824763 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.32946493279868894,-0.9330022866923787 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.2884747908495057,-0.9572885170657877 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -0.20447863847577832,-0.9936754159695207 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -6.420773175853892e-2,-0.9124430861452264 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 5.670935155025787e-3,-0.942093256255751 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 8.053040485090333e-5,-0.8569127702718545 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2792444365582883e-3,-0.9029398012081602 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -8.411113935814336e-2,-1.1722353502829306 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -3.828521720361743e-2,-1.1804760734434263 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 5.3509784325814824e-2,-1.0956425140348907 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 7.381630076945801e-2,-1.2570295656899102 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.11974013123004085,-1.1951758317668284 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.31718781714738126,-1.3382780609068856 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.29790163138369313,-1.3315164655852787 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2742686190153159,-1.3219747179478054 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2447648306486252,-1.3079157829055708 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.2072076953213583,-1.2860330585397144 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.15864387892616685,-1.2494501205033948 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 9.627391063156154e-2,-1.18219203903516 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 2.5548086105424722e-2,-1.0419687201573697 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -5.6162126190656934e-2,-0.5072966517143025 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M -1.433464409021068e-2,-0.5210717612879694 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 3.850376762902936e-2,-0.6712627895539197 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 5.275248339981681e-2,-0.6372700746345478 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.15854591791811354,-0.49438498454876817 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.48458296557342e-2 -1.484582965573419e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.1343424244996019,-0.5148670985016495 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028443e-2 -2.611839825002843e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 9.338708711878888e-2,-0.5569700771181787 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303017e-2 -5.8087558983030134e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.7327174840136184e-2,-0.7066820628996595 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.2413364125799319 -0.24133641257993177Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4466713071673922,-0.5577512867312748 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5477817488537797,-0.53713143315396 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4851545409279998,-0.722589193517122 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4953579193584263,-0.697909947413537 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.510233325775929,-0.6585463674510966 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5332353364311417,-0.5869444844071892 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3403093877254835,-0.47580552005993687 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3325542144757463,-0.40133343143290556 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2655016878175724,-0.4510287447882533 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.331201259272403,-0.44224130124814964 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5747644964189838,-0.362867213774731 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5765704344072344,-0.32921154090611326 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4512182855667421,-0.2886751345948127 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5723331787091053,-0.18548982636336775 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4935822377537638,-0.17536254744831065 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5156232380701025,6.901077884114544e-2 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.523122991120052,4.678431453498789e-2 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5319148845014119,1.852203883445571e-2 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5422102748514461,-1.85149627534068e-2 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5540522968431096,-6.891830389508855e-2 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5667378783557284,-0.14086359830118464 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.576602904982502,-0.24982657353218887 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5675168062627944,-0.4256376046970958 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2136445238646494,-0.9613655149359679 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421417e-2 -1.4564173956421409e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2484155348955568,-1.055648925799137 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388913e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3734359847402882,-0.9160914089824763 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701027e-2 -1.0156232380701022e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3596272939913683,-0.9330022866923787 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339795e-2 -1.5081180596339786e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.3377544652776,-0.9572885170657877 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047052e-2 -2.463983721404704e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.2984091236058823,-0.9936754159695207 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.6965242565051885e-2 -4.696524256505186e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0882165714078385,-0.9124430861452264 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649762e-2 -1.2004419824649755e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0203463840473415,-0.942093256255751 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183532e-2 -1.3008659601183525e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.031164436444846,-0.8569127702718545 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848411e-2 -1.5622483424848402e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.065216856305234,-0.9029398012081602 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.324805037089609e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.1074755849324693,-1.1722353502829306 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162869e-2 -1.1682222787162862e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0850926273952364,-1.1804760734434263 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809454e-2 -2.340370509580944e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9853154518197665,-1.0956425140348907 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.9412618072790662e-2 -1.941261807279065e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9536794217615443,-1.2570295656899102 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501354e-2 -1.3747861265501347e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.904792763529311,-1.1951758317668284 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676101e-2 -1.2266447379676094e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7031246476140199,-1.3382780609068856 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.0156232380701024e-2 -1.0156232380701019e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7273606646933446,-1.3315164655852787 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519164e-2 -1.2631148038519157e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7579787211253528,-1.3219747179478054 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.6123670070334564e-2 -1.6123670070334554e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.7977743642432704,-1.3079157829055708 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.126959744594789e-2 -2.126959744594788e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.85135076561437,-1.2860330585397144 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864167e-2 -2.927923046786415e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9266951513422913,-1.2494501205033948 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422914e-2 -4.266951513422912e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0383014524912513,-1.18219203903516 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140641e-2 -6.728768156140637e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.211677870841863,-1.0419687201573697 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364383 -0.11861297847364376Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0798285996455788,-0.5072966517143025 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.059059395750229,-0.5210717612879694 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9851627058258925,-0.6712627895539197 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.1833236727460788e-2 -1.1833236727460781e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9919722682602017,-0.6372700746345478 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009162e-2 -2.236237583000915e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.871145741393355,-0.49438498454876817 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.48458296557342e-2 -1.484582965573419e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.9178943720004551,-0.5148670985016495 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028443e-2 -2.611839825002843e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0227880308472714,-0.5569700771181787 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303017e-2 -5.8087558983030134e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.4653456503197277,-0.7066820628996595 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.2413364125799319 -0.24133641257993177Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5773502691896262,-0.2886751345948131 c 0.0,-0.5950041238995307 -0.4823461452900954,-1.0773502691896262 -1.077350269189626 -1.0773502691896262c -0.5950041238995307,-3.6433494790651767e-17 -1.0773502691896262,0.48234614529009534 -1.0773502691896262 1.0773502691896257c -7.286698958130353e-17,0.5950041238995307 0.4823461452900953,1.0773502691896262 1.0773502691896257 1.0773502691896262c 0.5950041238995307,1.0930048437195531e-16 1.0773502691896262,-0.4823461452900952 1.0773502691896262 -1.0773502691896255Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5106708994088345,-0.10384973520923345 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.067089940883444e-2 -1.0670899408834434e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5170112552462188,-0.13153188986428674 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218847e-2 -1.7011255246218836e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.4781585994343343,-0.20670923437038705 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5436828011313314,-0.20670923437038705 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5313908601473407,-0.17993400525784636 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.139086014734077e-2 -3.139086014734075e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.3506074082763179,-0.3810878342876026 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.067089940883444e-2 -1.0670899408834434e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.3809212132764681,-0.36724675696007597 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218847e-2 -1.7011255246218836e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.4235550980201702,-0.3012852730908784 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.4563171988686687,-0.35803089632317325 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.4372182797053185,-0.3430456992632962 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.139086014734077e-2 -3.139086014734075e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.670734390541351,-0.3810878342876026 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.067089940883444e-2 -1.0670899408834434e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6531012972159695,-0.36724675696007597 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218847e-2 -1.7011255246218836e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5982863025454955,-0.3012852730908784 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.565524201696997,-0.35803089632317325 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832832e-2 -1.0920700282832827e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.6255634405893631,-0.3430456992632962 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.139086014734077e-2 -3.139086014734075e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5773502691896257,-0.28867513459481287 c 0.0,-4.2719374068737e-2 -3.4630895120888766e-2,-7.735026918962577e-2 -7.735026918962576e-2 -7.735026918962577e-2c -4.2719374068737e-2,-2.6158072357428605e-18 -7.735026918962577e-2,3.463089512088876e-2 -7.735026918962577e-2 7.735026918962574e-2c -5.231614471485721e-18,4.2719374068737e-2 3.463089512088875e-2,7.735026918962577e-2 7.735026918962574e-2 7.735026918962577e-2c 4.2719374068737e-2,7.847421707228581e-18 7.735026918962577e-2,-3.463089512088875e-2 7.735026918962577e-2 -7.735026918962573e-2Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.0,-0.8660254037844386 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 1.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3" font-size="1.0em"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g></g></svg>
− diagrams/apollonian2.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="400.0" font-size="1" viewBox="0 0 400 400"><g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.37751045085976026,0.6053025340546552 c 0.0,-8.053465476643307e-3 -6.52862370671852e-3,-1.4582089183361829e-2 -1.4582089183361825e-2 -1.4582089183361829e-2c -8.053465476643307e-3,-4.9313253590074695e-19 -1.4582089183361829e-2,6.5286237067185195e-3 -1.4582089183361829e-2 1.4582089183361823e-2c -9.862650718014939e-19,8.053465476643307e-3 6.528623706718519e-3,1.4582089183361829e-2 1.4582089183361822e-2 1.4582089183361829e-2c 8.053465476643307e-3,1.4793976077022408e-18 1.4582089183361829e-2,-6.528623706718518e-3 1.4582089183361829e-2 -1.458208918336182e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.29748132615332673,0.7033944209713446 c 0.0,-5.825415370910087e-3 -4.72243222527078e-3,-1.0547847596180868e-2 -1.0547847596180866e-2 -1.0547847596180868e-2c -5.825415370910087e-3,-3.5670381438444143e-19 -1.0547847596180868e-2,4.722432225270779e-3 -1.0547847596180868e-2 1.0547847596180864e-2c -7.134076287688829e-19,5.825415370910087e-3 4.722432225270779e-3,1.0547847596180868e-2 1.0547847596180862e-2 1.0547847596180868e-2c 5.825415370910087e-3,1.0701114431533244e-18 1.0547847596180868e-2,-4.722432225270778e-3 1.0547847596180868e-2 -1.0547847596180862e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.3355286772444547,0.6952829532141163 c 0.0,-1.0813690874093534e-2 -8.766228501566546e-3,-1.9579919375660084e-2 -1.957991937566008e-2 -1.9579919375660084e-2c -1.0813690874093534e-2,-6.621475957963796e-19 -1.9579919375660084e-2,8.766228501566546e-3 -1.9579919375660084e-2 1.9579919375660077e-2c -1.3242951915927591e-18,1.0813690874093534e-2 8.766228501566544e-3,1.9579919375660084e-2 1.9579919375660074e-2 1.9579919375660084e-2c 1.0813690874093534e-2,1.986442787389139e-18 1.9579919375660084e-2,-8.766228501566544e-3 1.9579919375660084e-2 -1.9579919375660074e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.4999999999999994,0.6855362096428833 c 0.0,-8.110990090384693e-3 -6.575256619975681e-3,-1.4686246710360376e-2 -1.4686246710360373e-2 -1.4686246710360376e-2c -8.110990090384693e-3,-4.966549026052758e-19 -1.4686246710360376e-2,6.57525661997568e-3 -1.4686246710360376e-2 1.4686246710360371e-2c -9.933098052105517e-19,8.110990090384693e-3 6.575256619975679e-3,1.4686246710360376e-2 1.468624671036037e-2 1.4686246710360376e-2c 8.110990090384693e-3,1.4899647078158274e-18 1.4686246710360376e-2,-6.575256619975678e-3 1.4686246710360376e-2 -1.4686246710360368e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.47077059665551657,0.6821965739130665 c 0.0,-1.3452461428175891e-2 -1.0905374692226483e-2,-2.4357836120402376e-2 -2.435783612040237e-2 -2.4357836120402376e-2c -1.3452461428175891e-2,-8.237256914334418e-19 -2.4357836120402376e-2,1.0905374692226482e-2 -2.4357836120402376e-2 2.435783612040237e-2c -1.6474513828668835e-18,1.3452461428175891e-2 1.090537469222648e-2,2.4357836120402376e-2 2.4357836120402366e-2 2.4357836120402376e-2c 1.3452461428175891e-2,2.4711770743003254e-18 2.4357836120402376e-2,-1.0905374692226478e-2 2.4357836120402376e-2 -2.4357836120402362e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.4239083522995312,0.6659748672366104 c 0.0,-2.6265160384041218e-2 -2.12921194287514e-2,-4.7557279812792626e-2 -4.755727981279261e-2 -4.7557279812792626e-2c -2.6265160384041218e-2,-1.6082772296703972e-18 -4.7557279812792626e-2,2.1292119428751397e-2 -4.7557279812792626e-2 4.755727981279261e-2c -3.2165544593407945e-18,2.6265160384041218e-2 2.1292119428751397e-2,4.7557279812792626e-2 4.7557279812792605e-2 4.7557279812792626e-2c 2.6265160384041218e-2,4.8248316890111915e-18 4.7557279812792626e-2,-2.1292119428751394e-2 4.7557279812792626e-2 -4.75572798127926e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.32939002349310903,0.4819157475048848 c 0.0,-6.543422791232337e-3 -5.304492243968401e-3,-1.1847915035200739e-2 -1.1847915035200735e-2 -1.1847915035200739e-2c -6.543422791232337e-3,-4.00669088837526e-19 -1.1847915035200739e-2,5.3044922439684e-3 -1.1847915035200739e-2 1.1847915035200735e-2c -8.01338177675052e-19,6.543422791232337e-3 5.304492243968399e-3,1.1847915035200739e-2 1.1847915035200733e-2 1.1847915035200739e-2c 6.543422791232337e-3,1.202007266512578e-18 1.1847915035200739e-2,-5.304492243968399e-3 1.1847915035200739e-2 -1.1847915035200732e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2643792300484015,0.44734230333656105 c 0.0,-7.229430999314296e-3 -5.860611775774489e-3,-1.3090042775088786e-2 -1.3090042775088783e-2 -1.3090042775088786e-2c -7.229430999314296e-3,-4.426749766483451e-19 -1.3090042775088786e-2,5.860611775774489e-3 -1.3090042775088786e-2 1.3090042775088781e-2c -8.853499532966902e-19,7.229430999314296e-3 5.860611775774488e-3,1.3090042775088786e-2 1.3090042775088781e-2 1.3090042775088786e-2c 7.229430999314296e-3,1.3280249299450354e-18 1.3090042775088786e-2,-5.860611775774487e-3 1.3090042775088786e-2 -1.309004277508878e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.3372900012915734,0.40182613528367384 c 0.0,-8.320578789967774e-3 -6.7451618311828105e-3,-1.5065740621150587e-2 -1.5065740621150583e-2 -1.5065740621150587e-2c -8.320578789967774e-3,-5.094885091093696e-19 -1.5065740621150587e-2,6.74516183118281e-3 -1.5065740621150587e-2 1.5065740621150582e-2c -1.0189770182187391e-18,8.320578789967774e-3 6.745161831182809e-3,1.5065740621150587e-2 1.506574062115058e-2 1.5065740621150587e-2c 8.320578789967774e-3,1.5284655273281088e-18 1.5065740621150587e-2,-6.745161831182808e-3 1.5065740621150587e-2 -1.5065740621150578e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.32963515568284935,0.4423827054001457 c 0.0,-1.809421258147297e-2 -1.4668257479517473e-2,-3.2762470060990444e-2 -3.276247006099044e-2 -3.2762470060990444e-2c -1.809421258147297e-2,-1.1079509760496318e-18 -3.2762470060990444e-2,1.4668257479517471e-2 -3.2762470060990444e-2 3.276247006099043e-2c -2.2159019520992635e-18,1.809421258147297e-2 1.466825747951747e-2,3.2762470060990444e-2 3.276247006099043e-2 3.2762470060990444e-2c 1.809421258147297e-2,3.3238529281488955e-18 3.2762470060990444e-2,-1.4668257479517468e-2 3.2762470060990444e-2 -3.276247006099042e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 6.552968029136148e-2,0.6585277605680642 c 0.0,-6.059377066393684e-3 -4.9120956535214115e-3,-1.0971472719915097e-2 -1.0971472719915096e-2 -1.0971472719915097e-2c -6.059377066393684e-3,-3.7102983645929523e-19 -1.0971472719915097e-2,4.9120956535214115e-3 -1.0971472719915097e-2 1.0971472719915094e-2c -7.420596729185905e-19,6.059377066393684e-3 4.912095653521411e-3,1.0971472719915097e-2 1.0971472719915092e-2 1.0971472719915097e-2c 6.059377066393684e-3,1.1130895093778858e-18 1.0971472719915097e-2,-4.91209565352141e-3 1.0971472719915097e-2 -1.097147271991509e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.13740599422288463,0.676806333426875 c 0.0,-7.255621006186924e-3 -5.881842971244769e-3,-1.3137463977431693e-2 -1.313746397743169e-2 -1.3137463977431693e-2c -7.255621006186924e-3,-4.442786520526557e-19 -1.3137463977431693e-2,5.881842971244768e-3 -1.3137463977431693e-2 1.3137463977431688e-2c -8.885573041053114e-19,7.255621006186924e-3 5.881842971244767e-3,1.3137463977431693e-2 1.3137463977431688e-2 1.3137463977431693e-2c 7.255621006186924e-3,1.3328359561579671e-18 1.3137463977431693e-2,-5.881842971244766e-3 1.3137463977431693e-2 -1.3137463977431686e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.11828264113503009,0.6540926342827365 c 0.0,-1.464004694769519e-2 -1.1868102973483226e-2,-2.650814992117842e-2 -2.6508149921178413e-2 -2.650814992117842e-2c -1.464004694769519e-2,-8.964443316930946e-19 -2.650814992117842e-2,1.1868102973483225e-2 -2.650814992117842e-2 2.650814992117841e-2c -1.792888663386189e-18,1.464004694769519e-2 1.1868102973483223e-2,2.650814992117842e-2 2.650814992117841e-2 2.650814992117842e-2c 1.464004694769519e-2,2.689332995079284e-18 2.650814992117842e-2,-1.1868102973483221e-2 2.650814992117842e-2 -2.6508149921178406e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.11880317993960295,0.5119524765664154 c 0.0,-1.1696066133519452e-2 -9.481534980947025e-3,-2.117760111446648e-2 -2.1177601114466475e-2 -2.117760111446648e-2c -1.1696066133519452e-2,-7.1617749765151775e-19 -2.117760111446648e-2,9.481534980947023e-3 -2.117760111446648e-2 2.1177601114466472e-2c -1.4323549953030355e-18,1.1696066133519452e-2 9.481534980947021e-3,2.117760111446648e-2 2.117760111446647e-2 2.117760111446648e-2c 1.1696066133519452e-2,2.1485324929545535e-18 2.117760111446648e-2,-9.481534980947021e-3 2.117760111446648e-2 -2.117760111446647e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -4.991809254453328e-2,0.6003669489752509 c 0.0,-9.039029052630486e-3 -7.327580844528222e-3,-1.636660989715871e-2 -1.6366609897158706e-2 -1.636660989715871e-2c -9.039029052630486e-3,-5.534808998351929e-19 -1.636660989715871e-2,7.327580844528221e-3 -1.636660989715871e-2 1.6366609897158702e-2c -1.1069617996703857e-18,9.039029052630486e-3 7.327580844528219e-3,1.636660989715871e-2 1.6366609897158702e-2 1.636660989715871e-2c 9.039029052630486e-3,1.6604426995055785e-18 1.636660989715871e-2,-7.327580844528218e-3 1.636660989715871e-2 -1.63666098971587e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -2.6946048890241096e-2,0.5125190080295892 c 0.0,-7.82323297810945e-3 -6.341983389907767e-3,-1.416521636801722e-2 -1.4165216368017217e-2 -1.416521636801722e-2c -7.82323297810945e-3,-4.790348612812877e-19 -1.416521636801722e-2,6.3419833899077665e-3 -1.416521636801722e-2 1.4165216368017215e-2c -9.580697225625754e-19,7.82323297810945e-3 6.341983389907766e-3,1.416521636801722e-2 1.4165216368017213e-2 1.416521636801722e-2c 7.82323297810945e-3,1.4371045838438633e-18 1.416521636801722e-2,-6.341983389907766e-3 1.416521636801722e-2 -1.4165216368017212e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.14944640345106044,0.5487981909122319 c 0.0,-6.0587727104472475e-3 -4.911605726226057e-3,-1.0970378436673306e-2 -1.0970378436673305e-2 -1.0970378436673306e-2c -6.0587727104472475e-3,-3.709928303305278e-19 -1.0970378436673306e-2,4.911605726226056e-3 -1.0970378436673306e-2 1.0970378436673303e-2c -7.419856606610556e-19,6.0587727104472475e-3 4.911605726226056e-3,1.0970378436673306e-2 1.0970378436673301e-2 1.0970378436673306e-2c 6.0587727104472475e-3,1.1129784909915833e-18 1.0970378436673306e-2,-4.911605726226055e-3 1.0970378436673306e-2 -1.09703784366733e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.3224954868434583,0.386962743804778 c 0.0,-5.823739925490971e-3 -4.721074008399512e-3,-1.0544813933890484e-2 -1.0544813933890482e-2 -1.0544813933890484e-2c -5.823739925490971e-3,-3.566012229409581e-19 -1.0544813933890484e-2,4.721074008399512e-3 -1.0544813933890484e-2 1.054481393389048e-2c -7.132024458819162e-19,5.823739925490971e-3 4.721074008399511e-3,1.0544813933890484e-2 1.0544813933890479e-2 1.0544813933890484e-2c 5.823739925490971e-3,1.0698036688228744e-18 1.0544813933890484e-2,-4.72107400839951e-3 1.0544813933890484e-2 -1.0544813933890479e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.30372297888126454,0.403455465147561 c 0.0,-7.068215673960173e-3 -5.729920932429376e-3,-1.2798136606389551e-2 -1.2798136606389548e-2 -1.2798136606389551e-2c -7.068215673960173e-3,-4.328033850399239e-19 -1.2798136606389551e-2,5.729920932429376e-3 -1.2798136606389551e-2 1.2798136606389548e-2c -8.656067700798478e-19,7.068215673960173e-3 5.729920932429375e-3,1.2798136606389551e-2 1.2798136606389546e-2 1.2798136606389551e-2c 7.068215673960173e-3,1.2984101551197717e-18 1.2798136606389551e-2,-5.7299209324293745e-3 1.2798136606389551e-2 -1.2798136606389544e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.27960230865929936,0.4228560103102396 c 0.0,-8.751269634256298e-3 -7.09430574499774e-3,-1.584557537925404e-2 -1.5845575379254035e-2 -1.584557537925404e-2c -8.751269634256298e-3,-5.358607173033701e-19 -1.584557537925404e-2,7.094305744997739e-3 -1.584557537925404e-2 1.584557537925403e-2c -1.0717214346067402e-18,8.751269634256298e-3 7.094305744997738e-3,1.584557537925404e-2 1.584557537925403e-2 1.584557537925404e-2c 8.751269634256298e-3,1.6075821519101103e-18 1.584557537925404e-2,-7.0943057449977375e-3 1.584557537925404e-2 -1.5845575379254028e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.24771581614462518,0.445845984477118 c 0.0,-1.1100861356558104e-2 -8.999026174211368e-3,-2.0099887530769474e-2 -2.009988753076947e-2 -2.0099887530769474e-2c -1.1100861356558104e-2,-6.797317164043713e-19 -2.0099887530769474e-2,8.999026174211366e-3 -2.0099887530769474e-2 2.0099887530769467e-2c -1.3594634328087426e-18,1.1100861356558104e-2 8.999026174211366e-3,2.0099887530769474e-2 2.0099887530769463e-2 2.0099887530769474e-2c 1.1100861356558104e-2,2.039195149213114e-18 2.0099887530769474e-2,-8.999026174211364e-3 2.0099887530769474e-2 -2.0099887530769463e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.20408397244121088,0.4731788453319466 c 0.0,-1.4509508976849442e-2 -1.1762281039613623e-2,-2.6271790016463067e-2 -2.627179001646306e-2 -2.6271790016463067e-2c -1.4509508976849442e-2,-8.884511862849229e-19 -2.6271790016463067e-2,1.176228103961362e-2 -2.6271790016463067e-2 2.6271790016463056e-2c -1.7769023725698458e-18,1.4509508976849442e-2 1.1762281039613619e-2,2.6271790016463067e-2 2.6271790016463056e-2 2.6271790016463067e-2c 1.4509508976849442e-2,2.6653535588547683e-18 2.6271790016463067e-2,-1.1762281039613617e-2 2.6271790016463067e-2 -2.6271790016463053e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.14181514902537445,0.5054024397633912 c 0.0,-1.9692484389838446e-2 -1.5963912778237874e-2,-3.565639716807632e-2 -3.5656397168076316e-2 -3.565639716807632e-2c -1.9692484389838446e-2,-1.2058168987637434e-18 -3.565639716807632e-2,1.5963912778237874e-2 -3.565639716807632e-2 3.565639716807631e-2c -2.4116337975274867e-18,1.9692484389838446e-2 1.596391277823787e-2,3.565639716807632e-2 3.565639716807631e-2 3.565639716807632e-2c 1.9692484389838446e-2,3.61745069629123e-18 3.565639716807632e-2,-1.596391277823787e-2 3.565639716807632e-2 -3.56563971680763e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -4.830762258127466e-2,0.541784566834368 c 0.0,-2.8039068348853335e-2 -2.2730155964227585e-2,-5.0769224313080924e-2 -5.076922431308091e-2 -5.0769224313080924e-2c -2.8039068348853335e-2,-1.7168977652248549e-18 -5.0769224313080924e-2,2.273015596422758e-2 -5.0769224313080924e-2 5.076922431308091e-2c -3.4337955304497098e-18,2.8039068348853335e-2 2.2730155964227578e-2,5.0769224313080924e-2 5.07692243130809e-2 5.0769224313080924e-2c 2.8039068348853335e-2,5.150693295674565e-18 5.0769224313080924e-2,-2.2730155964227575e-2 5.0769224313080924e-2 -5.0769224313080896e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.10055870533119411,0.5763267664253591 c 0.0,-4.2424102980432574e-2 -3.439153060972228e-2,-7.681563359015486e-2 -7.681563359015485e-2 -7.681563359015486e-2c -4.2424102980432574e-2,-2.597727096084222e-18 -7.681563359015486e-2,3.4391530609722276e-2 -7.681563359015486e-2 7.681563359015484e-2c -5.195454192168444e-18,4.2424102980432574e-2 3.4391530609722276e-2,7.681563359015486e-2 7.681563359015484e-2 7.681563359015486e-2c 4.2424102980432574e-2,7.793181288252665e-18 7.681563359015486e-2,-3.439153060972227e-2 7.681563359015486e-2 -7.681563359015482e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.3501702751244822,0.5828225079598849 c 0.0,-6.895722676674308e-2 -5.5900877296188006e-2,-0.1248581040629311 -0.12485810406293107 -0.1248581040629311c -6.895722676674308e-2,-4.222412351898505e-18 -0.1248581040629311,5.5900877296188e-2 -0.1248581040629311 0.12485810406293106c -8.44482470379701e-18,6.895722676674308e-2 5.590087729618799e-2,0.1248581040629311 0.12485810406293105 0.1248581040629311c 6.895722676674308e-2,1.2667237055695515e-17 0.1248581040629311,-5.5900877296187985e-2 0.1248581040629311 -0.12485810406293103Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.779034750787493,0.4907937599929746 c 0.0,-6.5299422683376485e-3 -5.293564120962911e-3,-1.1823506389300562e-2 -1.1823506389300558e-2 -1.1823506389300562e-2c -6.5299422683376485e-3,-3.998436448768354e-19 -1.1823506389300562e-2,5.293564120962911e-3 -1.1823506389300562e-2 1.1823506389300558e-2c -7.996872897536708e-19,6.5299422683376485e-3 5.29356412096291e-3,1.1823506389300562e-2 1.1823506389300556e-2 1.1823506389300562e-2c 6.5299422683376485e-3,1.1995309346305062e-18 1.1823506389300562e-2,-5.2935641209629096e-3 1.1823506389300562e-2 -1.1823506389300555e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8518568402451766,0.5294252833875033 c 0.0,-8.23411724538394e-3 -6.67507090059813e-3,-1.490918814598207e-2 -1.4909188145982067e-2 -1.490918814598207e-2c -8.23411724538394e-3,-5.041942664181731e-19 -1.490918814598207e-2,6.675070900598129e-3 -1.490918814598207e-2 1.4909188145982065e-2c -1.0083885328363462e-18,8.23411724538394e-3 6.675070900598128e-3,1.490918814598207e-2 1.4909188145982064e-2 1.490918814598207e-2c 8.23411724538394e-3,1.5125827992545192e-18 1.490918814598207e-2,-6.675070900598127e-3 1.490918814598207e-2 -1.4909188145982062e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.7334905432783844,0.6055030986296225 c 0.0,-7.164070349019935e-3 -5.807626499779222e-3,-1.2971696848799159e-2 -1.2971696848799156e-2 -1.2971696848799159e-2c -7.164070349019935e-3,-4.386727910896862e-19 -1.2971696848799159e-2,5.807626499779221e-3 -1.2971696848799159e-2 1.2971696848799156e-2c -8.773455821793724e-19,7.164070349019935e-3 5.807626499779221e-3,1.2971696848799159e-2 1.2971696848799154e-2 1.2971696848799159e-2c 7.164070349019935e-3,1.3160183732690588e-18 1.2971696848799159e-2,-5.80762649977922e-3 1.2971696848799159e-2 -1.2971696848799152e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.7663639553342527,0.5828225079598851 c 0.0,-1.1492871127790514e-2 -9.316812882698002e-3,-2.0809684010488518e-2 -2.0809684010488515e-2 -2.0809684010488518e-2c -1.1492871127790514e-2,-7.037353919830842e-19 -2.0809684010488518e-2,9.316812882698e-3 -2.0809684010488518e-2 2.080968401048851e-2c -1.4074707839661684e-18,1.1492871127790514e-2 9.316812882698e-3,2.0809684010488518e-2 2.0809684010488508e-2 2.0809684010488518e-2c 1.1492871127790514e-2,2.1112061759492524e-18 2.0809684010488518e-2,-9.316812882697999e-3 2.0809684010488518e-2 -2.0809684010488508e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8227383583545211,0.5380369890477329 c 0.0,-2.1219461131503317e-2 -1.720177200593971e-2,-3.8421233137443035e-2 -3.842123313744303e-2 -3.8421233137443035e-2c -2.1219461131503317e-2,-1.2993172577163606e-18 -3.8421233137443035e-2,1.720177200593971e-2 -3.8421233137443035e-2 3.842123313744302e-2c -2.598634515432721e-18,2.1219461131503317e-2 1.7201772005939708e-2,3.8421233137443035e-2 3.842123313744302e-2 3.8421233137443035e-2c 2.1219461131503317e-2,3.897951773149082e-18 3.8421233137443035e-2,-1.7201772005939708e-2 3.8421233137443035e-2 -3.8421233137443014e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.7359424937425911,0.32775749433853485 c 0.0,-6.786845892243782e-3 -5.501825656849516e-3,-1.22886715490933e-2 -1.2288671549093296e-2 -1.22886715490933e-2c -6.786845892243782e-3,-4.155744549121355e-19 -1.22886715490933e-2,5.501825656849516e-3 -1.22886715490933e-2 1.2288671549093296e-2c -8.31148909824271e-19,6.786845892243782e-3 5.501825656849515e-3,1.22886715490933e-2 1.2288671549093294e-2 1.22886715490933e-2c 6.786845892243782e-3,1.2467233647364064e-18 1.22886715490933e-2,-5.501825656849514e-3 1.22886715490933e-2 -1.2288671549093293e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.780353968629156,0.35051326309508374 c 0.0,-1.4336594576705889e-2 -1.1622106222290044e-2,-2.5958700798995937e-2 -2.595870079899593e-2 -2.5958700798995937e-2c -1.4336594576705889e-2,-8.778632329518085e-19 -2.5958700798995937e-2,1.1622106222290044e-2 -2.5958700798995937e-2 2.595870079899593e-2c -1.755726465903617e-18,1.4336594576705889e-2 1.1622106222290042e-2,2.5958700798995937e-2 2.5958700798995926e-2 2.5958700798995937e-2c 1.4336594576705889e-2,2.6335896988554254e-18 2.5958700798995937e-2,-1.162210622229004e-2 2.5958700798995937e-2 -2.5958700798995923e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9699932536184548,0.42018677803481613 c 0.0,-9.404714003508303e-3 -7.624027069624129e-3,-1.7028741073132434e-2 -1.702874107313243e-2 -1.7028741073132434e-2c -9.404714003508303e-3,-5.758726450646366e-19 -1.7028741073132434e-2,7.624027069624128e-3 -1.7028741073132434e-2 1.7028741073132427e-2c -1.1517452901292732e-18,9.404714003508303e-3 7.624027069624127e-3,1.7028741073132434e-2 1.7028741073132427e-2 1.7028741073132434e-2c 9.404714003508303e-3,1.72761793519391e-18 1.7028741073132434e-2,-7.624027069624126e-3 1.7028741073132434e-2 -1.7028741073132424e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9212317579270198,0.3394319632230853 c 0.0,-7.7546625349169855e-3 -6.2863960626503455e-3,-1.4041058597567333e-2 -1.404105859756733e-2 -1.4041058597567333e-2c -7.7546625349169855e-3,-4.748361325926993e-19 -1.4041058597567333e-2,6.286396062650345e-3 -1.4041058597567333e-2 1.4041058597567328e-2c -9.496722651853986e-19,7.7546625349169855e-3 6.286396062650344e-3,1.4041058597567333e-2 1.4041058597567326e-2 1.4041058597567333e-2c 7.7546625349169855e-3,1.424508397778098e-18 1.4041058597567333e-2,-6.286396062650343e-3 1.4041058597567333e-2 -1.4041058597567326e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1015251598924543,0.22691735010976513 c 0.0,-5.6498838851723205e-3 -4.580135840889835e-3,-1.0230019726062156e-2 -1.0230019726062155e-2 -1.0230019726062156e-2c -5.6498838851723205e-3,-3.459556107765247e-19 -1.0230019726062156e-2,4.580135840889834e-3 -1.0230019726062156e-2 1.0230019726062153e-2c -6.919112215530494e-19,5.6498838851723205e-3 4.580135840889834e-3,1.0230019726062156e-2 1.0230019726062151e-2 1.0230019726062156e-2c 5.6498838851723205e-3,1.037866832329574e-18 1.0230019726062156e-2,-4.580135840889833e-3 1.0230019726062156e-2 -1.0230019726062151e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0912653549694045,0.24650988634532092 c 0.0,-7.558954598446599e-3 -6.127743433252587e-3,-1.3686698031699187e-2 -1.3686698031699184e-2 -1.3686698031699187e-2c -7.558954598446599e-3,-4.628524776943897e-19 -1.3686698031699187e-2,6.127743433252586e-3 -1.3686698031699187e-2 1.3686698031699182e-2c -9.257049553887794e-19,7.558954598446599e-3 6.1277434332525854e-3,1.3686698031699187e-2 1.368669803169918e-2 1.3686698031699187e-2c 7.558954598446599e-3,1.388557433083169e-18 1.3686698031699187e-2,-6.127743433252585e-3 1.3686698031699187e-2 -1.368669803169918e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0764191723617247,0.27234351493298264 c 0.0,-1.0611583946848949e-2 -8.602388465208558e-3,-1.921397241205751e-2 -1.9213972412057505e-2 -1.921397241205751e-2c -1.0611583946848949e-2,-6.497721157196001e-19 -1.921397241205751e-2,8.602388465208558e-3 -1.921397241205751e-2 1.9213972412057502e-2c -1.2995442314392002e-18,1.0611583946848949e-2 8.602388465208556e-3,1.921397241205751e-2 1.9213972412057502e-2 1.921397241205751e-2c 1.0611583946848949e-2,1.9493163471588002e-18 1.921397241205751e-2,-8.602388465208555e-3 1.921397241205751e-2 -1.92139724120575e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.053362405467256,0.30756330812460136 c 0.0,-1.591737592027342e-2 -1.2903582697812836e-2,-2.882095861808626e-2 -2.8820958618086253e-2 -2.882095861808626e-2c -1.591737592027342e-2,-9.746581735794e-19 -2.882095861808626e-2,1.2903582697812834e-2 -2.882095861808626e-2 2.882095861808625e-2c -1.9493163471588e-18,1.591737592027342e-2 1.2903582697812832e-2,2.882095861808626e-2 2.8820958618086246e-2 2.882095861808626e-2c 1.591737592027342e-2,2.9239745207382e-18 2.882095861808626e-2,-1.2903582697812832e-2 2.882095861808626e-2 -2.8820958618086243e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0138407937083018,0.3569636530213992 c 0.0,-2.6276521685745003e-2 -2.1301329583542233e-2,-4.757785126928724e-2 -4.757785126928723e-2 -4.757785126928724e-2c -2.6276521685745003e-2,-1.6089729087586815e-18 -4.757785126928724e-2,2.1301329583542233e-2 -4.757785126928724e-2 4.757785126928723e-2c -3.217945817517363e-18,2.6276521685745003e-2 2.130132958354223e-2,4.757785126928724e-2 4.757785126928722e-2 4.757785126928724e-2c 2.6276521685745003e-2,4.826918726276045e-18 4.757785126928724e-2,-2.1301329583542226e-2 4.757785126928724e-2 -4.7577851269287215e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9360032732953869,0.4240021821969245 c 0.0,-5.0166241399447906e-2 -4.0667773870424404e-2,-9.083401526987232e-2 -9.083401526987231e-2 -9.083401526987232e-2c -5.0166241399447906e-2,-3.0717963477543657e-18 -9.083401526987232e-2,4.06677738704244e-2 -9.083401526987232e-2 9.08340152698723e-2c -6.1435926955087314e-18,5.0166241399447906e-2 4.06677738704244e-2,9.083401526987232e-2 9.083401526987228e-2 9.083401526987232e-2c 5.0166241399447906e-2,9.215389043263097e-18 9.083401526987232e-2,-4.066777387042439e-2 9.083401526987232e-2 -9.083401526987227e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.44556787512465446,0.26695531689263347 c 0.0,-5.781160090295894e-3 -4.686556231885914e-3,-1.046771632218181e-2 -1.0467716322181807e-2 -1.046771632218181e-2c -5.781160090295894e-3,-3.5399395999696446e-19 -1.046771632218181e-2,4.686556231885914e-3 -1.046771632218181e-2 1.0467716322181806e-2c -7.079879199939289e-19,5.781160090295894e-3 4.686556231885913e-3,1.046771632218181e-2 1.0467716322181804e-2 1.046771632218181e-2c 5.781160090295894e-3,1.0619818799908934e-18 1.046771632218181e-2,-4.686556231885912e-3 1.046771632218181e-2 -1.0467716322181804e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.47663027498722377,0.24670403842446992 c 0.0,-1.0755618943579601e-2 -8.719151900400535e-3,-1.9474770843980138e-2 -1.9474770843980135e-2 -1.9474770843980138e-2c -1.0755618943579601e-2,-6.5859171560516975e-19 -1.9474770843980138e-2,8.719151900400533e-3 -1.9474770843980138e-2 1.947477084398013e-2c -1.3171834312103395e-18,1.0755618943579601e-2 8.719151900400533e-3,1.9474770843980138e-2 1.947477084398013e-2 1.9474770843980138e-2c 1.0755618943579601e-2,1.975775146815509e-18 1.9474770843980138e-2,-8.719151900400532e-3 1.9474770843980138e-2 -1.9474770843980128e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5883189274323134,0.2330861408826765 c 0.0,-1.0161915987974838e-2 -8.23786056042379e-3,-1.839977654839863e-2 -1.8399776548398628e-2 -1.839977654839863e-2c -1.0161915987974838e-2,-6.222378943938849e-19 -1.839977654839863e-2,8.23786056042379e-3 -1.839977654839863e-2 1.8399776548398625e-2c -1.2444757887877698e-18,1.0161915987974838e-2 8.237860560423789e-3,1.839977654839863e-2 1.8399776548398625e-2 1.839977654839863e-2c 1.0161915987974838e-2,1.866713683181655e-18 1.839977654839863e-2,-8.237860560423789e-3 1.839977654839863e-2 -1.839977654839862e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5146031159576778,9.938600489455647e-2 c 0.0,-6.720898536196804e-3 -5.4483647618680485e-3,-1.2169263298064854e-2 -1.216926329806485e-2 -1.2169263298064854e-2c -6.720898536196804e-3,-4.115363439873774e-19 -1.2169263298064854e-2,5.448364761868048e-3 -1.2169263298064854e-2 1.216926329806485e-2c -8.230726879747548e-19,6.720898536196804e-3 5.448364761868047e-3,1.2169263298064854e-2 1.2169263298064848e-2 1.2169263298064854e-2c 6.720898536196804e-3,1.234609031962132e-18 1.2169263298064854e-2,-5.448364761868046e-3 1.2169263298064854e-2 -1.2169263298064847e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5258958929975791,0.1330826567005662 c 0.0,-1.1918255654844135e-2 -9.661655176471768e-3,-2.1579910831315906e-2 -2.1579910831315902e-2 -2.1579910831315906e-2c -1.1918255654844135e-2,-7.297826819562355e-19 -2.1579910831315906e-2,9.661655176471768e-3 -2.1579910831315906e-2 2.15799108313159e-2c -1.459565363912471e-18,1.1918255654844135e-2 9.661655176471766e-3,2.1579910831315906e-2 2.1579910831315895e-2 2.1579910831315906e-2c 1.1918255654844135e-2,2.1893480458687068e-18 2.1579910831315906e-2,-9.661655176471764e-3 2.1579910831315906e-2 -2.1579910831315895e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5585236078835155,0.2032217517282028 c 0.0,-2.6934746782619017e-2 -2.183492645364391e-2,-4.876967323626293e-2 -4.876967323626292e-2 -4.876967323626293e-2c -2.6934746782619017e-2,-1.6492775716589425e-18 -4.876967323626293e-2,2.1834926453643908e-2 -4.876967323626293e-2 4.876967323626292e-2c -3.298555143317885e-18,2.6934746782619017e-2 2.1834926453643905e-2,4.876967323626293e-2 4.876967323626291e-2 4.876967323626293e-2c 2.6934746782619017e-2,4.947832714976827e-18 4.876967323626293e-2,-2.18349264536439e-2 4.876967323626293e-2 -4.8769673236262905e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.7569759758330982,0.46404929909688913 c 0.0,-0.11826992710458896 -9.587671942299299e-2,-0.21414664652758197 -0.21414664652758192 -0.21414664652758197c -0.11826992710458896,-7.241944383201283e-18 -0.21414664652758197,9.587671942299297e-2 -0.21414664652758197 0.2141466465275819c -1.4483888766402565e-17,0.11826992710458896 9.587671942299296e-2,0.21414664652758197 0.2141466465275819 0.21414664652758197c 0.11826992710458896,2.172583314960385e-17 0.21414664652758197,-9.587671942299295e-2 0.21414664652758197 -0.21414664652758186Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.18244177378133422,-0.6777091934337103 c 0.0,-8.053465476643307e-3 -6.52862370671852e-3,-1.4582089183361829e-2 -1.4582089183361825e-2 -1.4582089183361829e-2c -8.053465476643307e-3,-4.9313253590074695e-19 -1.4582089183361829e-2,6.5286237067185195e-3 -1.4582089183361829e-2 1.4582089183361823e-2c -9.862650718014939e-19,8.053465476643307e-3 6.528623706718519e-3,1.4582089183361829e-2 1.4582089183361822e-2 1.4582089183361829e-2c 8.053465476643307e-3,1.4793976077022408e-18 1.4582089183361829e-2,-6.528623706718518e-3 1.4582089183361829e-2 -1.458208918336182e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.3100746953866915,-0.688691307845332 c 0.0,-5.825415370910087e-3 -4.72243222527078e-3,-1.0547847596180868e-2 -1.0547847596180866e-2 -1.0547847596180868e-2c -5.825415370910087e-3,-3.5670381438444143e-19 -1.0547847596180868e-2,4.722432225270779e-3 -1.0547847596180868e-2 1.0547847596180864e-2c -7.134076287688829e-19,5.825415370910087e-3 4.722432225270779e-3,1.0547847596180868e-2 1.0547847596180862e-2 1.0547847596180868e-2c 5.825415370910087e-3,1.0701114431533244e-18 1.0547847596180868e-2,-4.722432225270778e-3 1.0547847596180868e-2 -1.0547847596180862e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.2753648072761402,-0.7044498639713631 c 0.0,-1.0813690874093534e-2 -8.766228501566546e-3,-1.9579919375660084e-2 -1.957991937566008e-2 -1.9579919375660084e-2c -1.0813690874093534e-2,-6.621475957963796e-19 -1.9579919375660084e-2,8.766228501566546e-3 -1.9579919375660084e-2 1.9579919375660077e-2c -1.3242951915927591e-18,1.0813690874093534e-2 8.766228501566544e-3,1.9579919375660084e-2 1.9579919375660074e-2 1.9579919375660084e-2c 1.0813690874093534e-2,1.986442787389139e-18 1.9579919375660084e-2,-8.766228501566544e-3 1.9579919375660084e-2 -1.9579919375660074e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.15794385262414562,-0.8220025441976236 c 0.0,-8.110990090384693e-3 -6.575256619975681e-3,-1.4686246710360376e-2 -1.4686246710360373e-2 -1.4686246710360376e-2c -8.110990090384693e-3,-4.966549026052758e-19 -1.4686246710360376e-2,6.57525661997568e-3 -1.4686246710360376e-2 1.4686246710360371e-2c -9.933098052105517e-19,8.110990090384693e-3 6.575256619975679e-3,1.4686246710360376e-2 1.468624671036037e-2 1.4686246710360376e-2c 8.110990090384693e-3,1.4899647078158274e-18 1.4686246710360376e-2,-6.575256619975678e-3 1.4686246710360376e-2 -1.4686246710360368e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.17227627692310635,-0.791208912876302 c 0.0,-1.3452461428175891e-2 -1.0905374692226483e-2,-2.4357836120402376e-2 -2.435783612040237e-2 -2.4357836120402376e-2c -1.3452461428175891e-2,-8.237256914334418e-19 -2.4357836120402376e-2,1.0905374692226482e-2 -2.4357836120402376e-2 2.435783612040237e-2c -1.6474513828668835e-18,1.3452461428175891e-2 1.090537469222648e-2,2.4357836120402376e-2 2.4357836120402366e-2 2.4357836120402376e-2c 1.3452461428175891e-2,2.4711770743003254e-18 2.4357836120402376e-2,-1.0905374692226478e-2 2.4357836120402376e-2 -2.4357836120402362e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.1848248293042146,-0.7288080741286218 c 0.0,-2.6265160384041218e-2 -2.12921194287514e-2,-4.7557279812792626e-2 -4.755727981279261e-2 -4.7557279812792626e-2c -2.6265160384041218e-2,-1.6082772296703972e-18 -4.7557279812792626e-2,2.1292119428751397e-2 -4.7557279812792626e-2 4.755727981279261e-2c -3.2165544593407945e-18,2.6265160384041218e-2 2.1292119428751397e-2,4.7557279812792626e-2 4.7557279812792605e-2 4.7557279812792626e-2c 2.6265160384041218e-2,4.8248316890111915e-18 4.7557279812792626e-2,-2.1292119428751394e-2 4.7557279812792626e-2 -4.75572798127926e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.12556991385859947,-0.5605284280384003 c 0.0,-6.543422791232337e-3 -5.304492243968401e-3,-1.1847915035200739e-2 -1.1847915035200735e-2 -1.1847915035200739e-2c -6.543422791232337e-3,-4.00669088837526e-19 -1.1847915035200739e-2,5.3044922439684e-3 -1.1847915035200739e-2 1.1847915035200735e-2c -8.01338177675052e-19,6.543422791232337e-3 5.304492243968399e-3,1.1847915035200739e-2 1.1847915035200733e-2 1.1847915035200739e-2c 6.543422791232337e-3,1.202007266512578e-18 1.1847915035200739e-2,-5.304492243968399e-3 1.1847915035200739e-2 -1.1847915035200732e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.1440301045343687,-0.48844104178948383 c 0.0,-7.229430999314296e-3 -5.860611775774489e-3,-1.3090042775088786e-2 -1.3090042775088783e-2 -1.3090042775088786e-2c -7.229430999314296e-3,-4.426749766483451e-19 -1.3090042775088786e-2,5.860611775774489e-3 -1.3090042775088786e-2 1.3090042775088781e-2c -8.853499532966902e-19,7.229430999314296e-3 5.860611775774488e-3,1.3090042775088786e-2 1.3090042775088781e-2 1.3090042775088786e-2c 7.229430999314296e-3,1.3280249299450354e-18 1.3090042775088786e-2,-5.860611775774487e-3 1.3090042775088786e-2 -1.309004277508878e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -6.044555110680222e-2,-0.5095005024366414 c 0.0,-8.320578789967774e-3 -6.7451618311828105e-3,-1.5065740621150587e-2 -1.5065740621150583e-2 -1.5065740621150587e-2c -8.320578789967774e-3,-5.094885091093696e-19 -1.5065740621150587e-2,6.74516183118281e-3 -1.5065740621150587e-2 1.5065740621150582e-2c -1.0189770182187391e-18,8.320578789967774e-3 6.745161831182809e-3,1.5065740621150587e-2 1.506574062115058e-2 1.5065740621150587e-2c 8.320578789967774e-3,1.5284655273281088e-18 1.5065740621150587e-2,-6.745161831182808e-3 1.5065740621150587e-2 -1.5065740621150578e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -8.972446109782839e-2,-0.5184908882524185 c 0.0,-1.809421258147297e-2 -1.4668257479517473e-2,-3.2762470060990444e-2 -3.276247006099044e-2 -3.2762470060990444e-2c -1.809421258147297e-2,-1.1079509760496318e-18 -3.2762470060990444e-2,1.4668257479517471e-2 -3.2762470060990444e-2 3.276247006099043e-2c -2.2159019520992635e-18,1.809421258147297e-2 1.466825747951747e-2,3.2762470060990444e-2 3.276247006099043e-2 3.2762470060990444e-2c 1.809421258147297e-2,3.3238529281488955e-18 3.2762470060990444e-2,-1.4668257479517468e-2 3.2762470060990444e-2 -3.276247006099042e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.43476947573676716,-0.48780161574264613 c 0.0,-6.059377066393684e-3 -4.9120956535214115e-3,-1.0971472719915097e-2 -1.0971472719915096e-2 -1.0971472719915097e-2c -6.059377066393684e-3,-3.7102983645929523e-19 -1.0971472719915097e-2,4.9120956535214115e-3 -1.0971472719915097e-2 1.0971472719915094e-2c -7.420596729185905e-19,6.059377066393684e-3 4.912095653521411e-3,1.0971472719915097e-2 1.0971472719915092e-2 1.0971472719915097e-2c 6.059377066393684e-3,1.1130895093778858e-18 1.0971472719915097e-2,-4.91209565352141e-3 1.0971472719915097e-2 -1.097147271991509e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.39860253605632856,-0.5513434981463865 c 0.0,-7.255621006186924e-3 -5.881842971244769e-3,-1.3137463977431693e-2 -1.313746397743169e-2 -1.3137463977431693e-2c -7.255621006186924e-3,-4.442786520526557e-19 -1.3137463977431693e-2,5.881842971244768e-3 -1.3137463977431693e-2 1.3137463977431688e-2c -8.885573041053114e-19,7.255621006186924e-3 5.881842971244767e-3,1.3137463977431693e-2 1.3137463977431688e-2 1.3137463977431693e-2c 7.255621006186924e-3,1.3328359561579671e-18 1.3137463977431693e-2,-5.881842971244766e-3 1.3137463977431693e-2 -1.3137463977431686e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.3906738373515958,-0.5120731597688264 c 0.0,-1.464004694769519e-2 -1.1868102973483226e-2,-2.650814992117842e-2 -2.6508149921178413e-2 -2.650814992117842e-2c -1.464004694769519e-2,-8.964443316930946e-19 -2.650814992117842e-2,1.1868102973483225e-2 -2.650814992117842e-2 2.650814992117841e-2c -1.792888663386189e-18,1.464004694769519e-2 1.1868102973483223e-2,2.650814992117842e-2 2.650814992117841e-2 2.650814992117842e-2c 1.464004694769519e-2,2.689332995079284e-18 2.650814992117842e-2,-1.1868102973483221e-2 2.650814992117842e-2 -2.6508149921178406e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.28780676145815354,-0.41970794082197305 c 0.0,-1.1696066133519452e-2 -9.481534980947025e-3,-2.117760111446648e-2 -2.1177601114466475e-2 -2.117760111446648e-2c -1.1696066133519452e-2,-7.1617749765151775e-19 -2.117760111446648e-2,9.481534980947023e-3 -2.117760111446648e-2 2.1177601114466472e-2c -1.4323549953030355e-18,1.1696066133519452e-2 9.481534980947021e-3,2.117760111446648e-2 2.117760111446647e-2 2.117760111446648e-2c 1.1696066133519452e-2,2.1485324929545535e-18 2.117760111446648e-2,-9.481534980947021e-3 2.117760111446648e-2 -2.117760111446647e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.46890330591179635,-0.359648778686102 c 0.0,-9.039029052630486e-3 -7.327580844528222e-3,-1.636660989715871e-2 -1.6366609897158706e-2 -1.636660989715871e-2c -9.039029052630486e-3,-5.534808998351929e-19 -1.636660989715871e-2,7.327580844528221e-3 -1.636660989715871e-2 1.6366609897158702e-2c -1.1069617996703857e-18,9.039029052630486e-3 7.327580844528219e-3,1.636660989715871e-2 1.6366609897158702e-2 1.636660989715871e-2c 9.039029052630486e-3,1.6604426995055785e-18 1.636660989715871e-2,-7.327580844528218e-3 1.636660989715871e-2 -1.63666098971587e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.38957558791148206,-0.3183696478663002 c 0.0,-7.82323297810945e-3 -6.341983389907767e-3,-1.416521636801722e-2 -1.4165216368017217e-2 -1.416521636801722e-2c -7.82323297810945e-3,-4.790348612812877e-19 -1.416521636801722e-2,6.3419833899077665e-3 -1.416521636801722e-2 1.4165216368017215e-2c -9.580697225625754e-19,7.82323297810945e-3 6.341983389907766e-3,1.416521636801722e-2 1.4165216368017213e-2 1.416521636801722e-2c 7.82323297810945e-3,1.4371045838438633e-18 1.416521636801722e-2,-6.341983389907766e-3 1.416521636801722e-2 -1.4165216368017212e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.5004985134246064,-0.25556324250163587 c 0.0,-6.0587727104472475e-3 -4.911605726226057e-3,-1.0970378436673306e-2 -1.0970378436673305e-2 -1.0970378436673306e-2c -6.0587727104472475e-3,-3.709928303305278e-19 -1.0970378436673306e-2,4.911605726226056e-3 -1.0970378436673306e-2 1.0970378436673303e-2c -7.419856606610556e-19,6.0587727104472475e-3 4.911605726226056e-3,1.0970378436673306e-2 1.0970378436673301e-2 1.0970378436673306e-2c 6.0587727104472475e-3,1.1129784909915833e-18 1.0970378436673306e-2,-4.911605726226055e-3 1.0970378436673306e-2 -1.09703784366733e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.4996483609328185,-1.894548374195904e-2 c 0.0,-5.823739925490971e-3 -4.721074008399512e-3,-1.0544813933890484e-2 -1.0544813933890482e-2 -1.0544813933890484e-2c -5.823739925490971e-3,-3.566012229409581e-19 -1.0544813933890484e-2,4.721074008399512e-3 -1.0544813933890484e-2 1.054481393389048e-2c -7.132024458819162e-19,5.823739925490971e-3 4.721074008399511e-3,1.0544813933890484e-2 1.0544813933890479e-2 1.0544813933890484e-2c 5.823739925490971e-3,1.0698036688228744e-18 1.0544813933890484e-2,-4.72107400839951e-3 1.0544813933890484e-2 -1.0544813933890479e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.4982546552983857,-4.227260097649588e-2 c 0.0,-7.068215673960173e-3 -5.729920932429376e-3,-1.2798136606389551e-2 -1.2798136606389548e-2 -1.2798136606389551e-2c -7.068215673960173e-3,-4.328033850399239e-19 -1.2798136606389551e-2,5.729920932429376e-3 -1.2798136606389551e-2 1.2798136606389548e-2c -8.656067700798478e-19,7.068215673960173e-3 5.729920932429375e-3,1.2798136606389551e-2 1.2798136606389546e-2 1.2798136606389551e-2c 7.068215673960173e-3,1.2984101551197717e-18 1.2798136606389551e-2,-5.7299209324293745e-3 1.2798136606389551e-2 -1.2798136606389544e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.4951021338171543,-7.091612020756985e-2 c 0.0,-8.751269634256298e-3 -7.09430574499774e-3,-1.584557537925404e-2 -1.5845575379254035e-2 -1.584557537925404e-2c -8.751269634256298e-3,-5.358607173033701e-19 -1.584557537925404e-2,7.094305744997739e-3 -1.584557537925404e-2 1.584557537925403e-2c -1.0717214346067402e-18,8.751269634256298e-3 7.094305744997738e-3,1.584557537925404e-2 1.584557537925403e-2 1.584557537925404e-2c 8.751269634256298e-3,1.6075821519101103e-18 1.584557537925404e-2,-7.0943057449977375e-3 1.584557537925404e-2 -1.5845575379254028e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.4889144665138589,-0.10680955194198277 c 0.0,-1.1100861356558104e-2 -8.999026174211368e-3,-2.0099887530769474e-2 -2.009988753076947e-2 -2.0099887530769474e-2c -1.1100861356558104e-2,-6.797317164043713e-19 -2.0099887530769474e-2,8.999026174211366e-3 -2.0099887530769474e-2 2.0099887530769467e-2c -1.3594634328087426e-18,1.1100861356558104e-2 8.999026174211366e-3,2.0099887530769474e-2 2.0099887530769463e-2 2.0099887530769474e-2c 1.1100861356558104e-2,2.039195149213114e-18 2.0099887530769474e-2,-8.999026174211364e-3 2.0099887530769474e-2 -2.0099887530769463e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.4773105886124268,-0.15286197990867442 c 0.0,-1.4509508976849442e-2 -1.1762281039613623e-2,-2.6271790016463067e-2 -2.627179001646306e-2 -2.6271790016463067e-2c -1.4509508976849442e-2,-8.884511862849229e-19 -2.6271790016463067e-2,1.176228103961362e-2 -2.6271790016463067e-2 2.6271790016463056e-2c -1.7769023725698458e-18,1.4509508976849442e-2 1.1762281039613619e-2,2.6271790016463067e-2 2.6271790016463056e-2 2.6271790016463067e-2c 1.4509508976849442e-2,2.6653535588547683e-18 2.6271790016463067e-2,-1.1762281039613617e-2 2.6271790016463067e-2 -2.6271790016463053e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.45559144410444624,-0.21354937197793147 c 0.0,-1.9692484389838446e-2 -1.5963912778237874e-2,-3.565639716807632e-2 -3.5656397168076316e-2 -3.565639716807632e-2c -1.9692484389838446e-2,-1.2058168987637434e-18 -3.565639716807632e-2,1.5963912778237874e-2 -3.565639716807632e-2 3.565639716807631e-2c -2.4116337975274867e-18,1.9692484389838446e-2 1.596391277823787e-2,3.565639716807632e-2 3.565639716807631e-2 3.565639716807632e-2c 1.9692484389838446e-2,3.61745069629123e-18 3.565639716807632e-2,-1.596391277823787e-2 3.565639716807632e-2 -3.56563971680763e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.41384603763545746,-0.29576916136562065 c 0.0,-2.8039068348853335e-2 -2.2730155964227585e-2,-5.0769224313080924e-2 -5.076922431308091e-2 -5.0769224313080924e-2c -2.8039068348853335e-2,-1.7168977652248549e-18 -5.0769224313080924e-2,2.273015596422758e-2 -5.0769224313080924e-2 5.076922431308091e-2c -3.4337955304497098e-18,2.8039068348853335e-2 2.2730155964227578e-2,5.0769224313080924e-2 5.07692243130809e-2 5.0769224313080924e-2c 2.8039068348853335e-2,5.150693295674565e-18 5.0769224313080924e-2,-2.2730155964227575e-2 5.0769224313080924e-2 -5.0769224313080896e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.32960884277367325,-0.40931090892669675 c 0.0,-4.2424102980432574e-2 -3.439153060972228e-2,-7.681563359015486e-2 -7.681563359015485e-2 -7.681563359015486e-2c -4.2424102980432574e-2,-2.597727096084222e-18 -7.681563359015486e-2,3.4391530609722276e-2 -7.681563359015486e-2 7.681563359015484e-2c -5.195454192168444e-18,4.2424102980432574e-2 3.4391530609722276e-2,7.681563359015486e-2 7.681563359015484e-2 7.681563359015486e-2c 4.2424102980432574e-2,7.793181288252665e-18 7.681563359015486e-2,-3.439153060972227e-2 7.681563359015486e-2 -7.681563359015482e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M -0.14926214112724237,-0.5615209180342252 c 0.0,-6.895722676674308e-2 -5.5900877296188006e-2,-0.1248581040629311 -0.12485810406293107 -0.1248581040629311c -6.895722676674308e-2,-4.222412351898505e-18 -0.1248581040629311,5.5900877296188e-2 -0.1248581040629311 0.12485810406293106c -8.44482470379701e-18,6.895722676674308e-2 5.590087729618799e-2,0.1248581040629311 0.12485810406293105 0.1248581040629311c 6.895722676674308e-2,1.2667237055695515e-17 0.1248581040629311,-5.5900877296187985e-2 0.1248581040629311 -0.12485810406293103Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.17367122365530396,-0.8962683330313798 c 0.0,-6.5299422683376485e-3 -5.293564120962911e-3,-1.1823506389300562e-2 -1.1823506389300558e-2 -1.1823506389300562e-2c -6.5299422683376485e-3,-3.998436448768354e-19 -1.1823506389300562e-2,5.293564120962911e-3 -1.1823506389300562e-2 1.1823506389300558e-2c -7.996872897536708e-19,6.5299422683376485e-3 5.29356412096291e-3,1.1823506389300562e-2 1.1823506389300556e-2 1.1823506389300562e-2c 6.5299422683376485e-3,1.1995309346305062e-18 1.1823506389300562e-2,-5.2935641209629096e-3 1.1823506389300562e-2 -1.1823506389300555e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.19585256182196512,-0.9736693476571222 c 0.0,-8.23411724538394e-3 -6.67507090059813e-3,-1.490918814598207e-2 -1.4909188145982067e-2 -1.490918814598207e-2c -8.23411724538394e-3,-5.041942664181731e-19 -1.490918814598207e-2,6.675070900598129e-3 -1.490918814598207e-2 1.4909188145982065e-2c -1.0083885328363462e-18,8.23411724538394e-3 6.675070900598128e-3,1.490918814598207e-2 1.4909188145982064e-2 1.490918814598207e-2c 8.23411724538394e-3,1.5125827992545192e-18 1.490918814598207e-2,-6.675070900598127e-3 1.490918814598207e-2 -1.4909188145982062e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 5.89623071408279e-2,-0.9400352516130771 c 0.0,-7.164070349019935e-3 -5.807626499779222e-3,-1.2971696848799159e-2 -1.2971696848799156e-2 -1.2971696848799159e-2c -7.164070349019935e-3,-4.386727910896862e-19 -1.2971696848799159e-2,5.807626499779221e-3 -1.2971696848799159e-2 1.2971696848799156e-2c -8.773455821793724e-19,7.164070349019935e-3 5.807626499779221e-3,1.2971696848799159e-2 1.2971696848799154e-2 1.2971696848799159e-2c 7.164070349019935e-3,1.3160183732690588e-18 1.2971696848799159e-2,-5.80762649977922e-3 1.2971696848799159e-2 -1.2971696848799152e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.10045406699861979,-0.9429687266989286 c 0.0,-1.1492871127790514e-2 -9.316812882698002e-3,-2.0809684010488518e-2 -2.0809684010488515e-2 -2.0809684010488518e-2c -1.1492871127790514e-2,-7.037353919830842e-19 -2.0809684010488518e-2,9.316812882698e-3 -2.0809684010488518e-2 2.080968401048851e-2c -1.4074707839661684e-18,1.1492871127790514e-2 9.316812882698e-3,2.0809684010488518e-2 2.0809684010488508e-2 2.0809684010488518e-2c 1.1492871127790514e-2,2.1112061759492524e-18 2.0809684010488518e-2,-9.316812882697999e-3 2.0809684010488518e-2 -2.0809684010488508e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.17726164164547786,-0.9409359677776453 c 0.0,-2.1219461131503317e-2 -1.720177200593971e-2,-3.8421233137443035e-2 -3.842123313744303e-2 -3.8421233137443035e-2c -2.1219461131503317e-2,-1.2993172577163606e-18 -3.8421233137443035e-2,1.720177200593971e-2 -3.8421233137443035e-2 3.842123313744302e-2c -2.598634515432721e-18,2.1219461131503317e-2 1.7201772005939708e-2,3.8421233137443035e-2 3.842123313744302e-2 3.8421233137443035e-2c 2.1219461131503317e-2,3.897951773149082e-18 3.8421233137443035e-2,-1.7201772005939708e-2 3.8421233137443035e-2 -3.8421233137443014e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2640575062574082,-0.7534668428935347 c 0.0,-6.786845892243782e-3 -5.501825656849516e-3,-1.22886715490933e-2 -1.2288671549093296e-2 -1.22886715490933e-2c -6.786845892243782e-3,-4.155744549121355e-19 -1.22886715490933e-2,5.501825656849516e-3 -1.22886715490933e-2 1.2288671549093296e-2c -8.31148909824271e-19,6.786845892243782e-3 5.501825656849515e-3,1.22886715490933e-2 1.2288671549093294e-2 1.22886715490933e-2c 6.786845892243782e-3,1.2467233647364064e-18 1.22886715490933e-2,-5.501825656849514e-3 1.22886715490933e-2 -1.2288671549093293e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2819469132884337,-0.7914807659043678 c 0.0,-1.4336594576705889e-2 -1.1622106222290044e-2,-2.5958700798995937e-2 -2.595870079899593e-2 -2.5958700798995937e-2c -1.4336594576705889e-2,-8.778632329518085e-19 -2.5958700798995937e-2,1.1622106222290044e-2 -2.5958700798995937e-2 2.595870079899593e-2c -1.755726465903617e-18,1.4336594576705889e-2 1.1622106222290042e-2,2.5958700798995937e-2 2.5958700798995926e-2 2.5958700798995937e-2c 1.4336594576705889e-2,2.6335896988554254e-18 2.5958700798995937e-2,-1.162210622229004e-2 2.5958700798995937e-2 -2.5958700798995923e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.35695857498568706,-0.9844521311989763 c 0.0,-9.404714003508303e-3 -7.624027069624129e-3,-1.7028741073132434e-2 -1.702874107313243e-2 -1.7028741073132434e-2c -9.404714003508303e-3,-5.758726450646366e-19 -1.7028741073132434e-2,7.624027069624128e-3 -1.7028741073132434e-2 1.7028741073132427e-2c -1.1517452901292732e-18,9.404714003508303e-3 7.624027069624127e-3,1.7028741073132434e-2 1.7028741073132427e-2 1.7028741073132434e-2c 9.404714003508303e-3,1.72761793519391e-18 1.7028741073132434e-2,-7.624027069624126e-3 1.7028741073132434e-2 -1.7028741073132424e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.382055107780434,-0.8959769429016404 c 0.0,-7.7546625349169855e-3 -6.2863960626503455e-3,-1.4041058597567333e-2 -1.404105859756733e-2 -1.4041058597567333e-2c -7.7546625349169855e-3,-4.748361325926993e-19 -1.4041058597567333e-2,6.286396062650345e-3 -1.4041058597567333e-2 1.4041058597567328e-2c -9.496722651853986e-19,7.7546625349169855e-3 6.286396062650344e-3,1.4041058597567333e-2 1.4041058597567326e-2 1.4041058597567333e-2c 7.7546625349169855e-3,1.424508397778098e-18 1.4041058597567333e-2,-6.286396062650343e-3 1.4041058597567333e-2 -1.4041058597567326e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5859321656989218,-0.9544546117306303 c 0.0,-5.6498838851723205e-3 -4.580135840889835e-3,-1.0230019726062156e-2 -1.0230019726062155e-2 -1.0230019726062156e-2c -5.6498838851723205e-3,-3.459556107765247e-19 -1.0230019726062156e-2,4.580135840889834e-3 -1.0230019726062156e-2 1.0230019726062153e-2c -6.919112215530494e-19,5.6498838851723205e-3 4.580135840889834e-3,1.0230019726062156e-2 1.0230019726062151e-2 1.0230019726062156e-2c 5.6498838851723205e-3,1.037866832329574e-18 1.0230019726062156e-2,-4.580135840889833e-3 1.0230019726062156e-2 -1.0230019726062151e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5656961505521556,-0.9577204447445603 c 0.0,-7.558954598446599e-3 -6.127743433252587e-3,-1.3686698031699187e-2 -1.3686698031699184e-2 -1.3686698031699187e-2c -7.558954598446599e-3,-4.628524776943897e-19 -1.3686698031699187e-2,6.127743433252586e-3 -1.3686698031699187e-2 1.3686698031699182e-2c -9.257049553887794e-19,7.558954598446599e-3 6.1277434332525854e-3,1.3686698031699187e-2 1.368669803169918e-2 1.3686698031699187e-2c 7.558954598446599e-3,1.388557433083169e-18 1.3686698031699187e-2,-6.127743433252585e-3 1.3686698031699187e-2 -1.368669803169918e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5384279448241144,-0.9603492467736724 c 0.0,-1.0611583946848949e-2 -8.602388465208558e-3,-1.921397241205751e-2 -1.9213972412057505e-2 -1.921397241205751e-2c -1.0611583946848949e-2,-6.497721157196001e-19 -1.921397241205751e-2,8.602388465208558e-3 -1.921397241205751e-2 1.9213972412057502e-2c -1.2995442314392002e-18,1.0611583946848949e-2 8.602388465208556e-3,1.921397241205751e-2 1.9213972412057502e-2 1.921397241205751e-2c 1.0611583946848949e-2,1.9493163471588002e-18 1.921397241205751e-2,-8.602388465208555e-3 1.921397241205751e-2 -1.92139724120575e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.4999999999999995,-0.9603492467736722 c 0.0,-1.591737592027342e-2 -1.2903582697812836e-2,-2.882095861808626e-2 -2.8820958618086253e-2 -2.882095861808626e-2c -1.591737592027342e-2,-9.746581735794e-19 -2.882095861808626e-2,1.2903582697812834e-2 -2.882095861808626e-2 2.882095861808625e-2c -1.9493163471588e-18,1.591737592027342e-2 1.2903582697812832e-2,2.882095861808626e-2 2.8820958618086246e-2 2.882095861808626e-2c 1.591737592027342e-2,2.9239745207382e-18 2.882095861808626e-2,-1.2903582697812832e-2 2.882095861808626e-2 -2.8820958618086243e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.4429065784768549,-0.9512109760477583 c 0.0,-2.6276521685745003e-2 -2.1301329583542233e-2,-4.757785126928724e-2 -4.757785126928723e-2 -4.757785126928724e-2c -2.6276521685745003e-2,-1.6089729087586815e-18 -4.757785126928724e-2,2.1301329583542233e-2 -4.757785126928724e-2 4.757785126928723e-2c -3.217945817517363e-18,2.6276521685745003e-2 2.130132958354223e-2,4.757785126928724e-2 4.757785126928722e-2 4.757785126928724e-2c 2.6276521685745003e-2,4.826918726276045e-18 4.757785126928724e-2,-2.1301329583542226e-2 4.757785126928724e-2 -4.7577851269287215e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.3546655755682038,-0.908009819886162 c 0.0,-5.0166241399447906e-2 -4.0667773870424404e-2,-9.083401526987232e-2 -9.083401526987231e-2 -9.083401526987232e-2c -5.0166241399447906e-2,-3.0717963477543657e-18 -9.083401526987232e-2,4.06677738704244e-2 -9.083401526987232e-2 9.08340152698723e-2c -6.1435926955087314e-18,5.0166241399447906e-2 4.06677738704244e-2,9.083401526987232e-2 9.083401526987228e-2 9.083401526987232e-2c 5.0166241399447906e-2,9.215389043263097e-18 9.083401526987232e-2,-4.066777387042439e-2 9.083401526987232e-2 -9.083401526987227e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.11060095281483646,-0.5005503215029328 c 0.0,-5.781160090295894e-3 -4.686556231885914e-3,-1.046771632218181e-2 -1.0467716322181807e-2 -1.046771632218181e-2c -5.781160090295894e-3,-3.5399395999696446e-19 -1.046771632218181e-2,4.686556231885914e-3 -1.046771632218181e-2 1.0467716322181806e-2c -7.079879199939289e-19,5.781160090295894e-3 4.686556231885913e-3,1.046771632218181e-2 1.0467716322181804e-2 1.046771632218181e-2c 5.781160090295894e-3,1.0619818799908934e-18 1.046771632218181e-2,-4.686556231885912e-3 1.046771632218181e-2 -1.0467716322181804e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.14945412480835726,-0.5029506984649774 c 0.0,-1.0755618943579601e-2 -8.719151900400535e-3,-1.9474770843980138e-2 -1.9474770843980135e-2 -1.9474770843980138e-2c -1.0755618943579601e-2,-6.5859171560516975e-19 -1.9474770843980138e-2,8.719151900400533e-3 -1.9474770843980138e-2 1.947477084398013e-2c -1.3171834312103395e-18,1.0755618943579601e-2 8.719151900400533e-3,1.9474770843980138e-2 1.947477084398013e-2 1.9474770843980138e-2c 1.0755618943579601e-2,1.975775146815509e-18 1.9474770843980138e-2,-8.719151900400532e-3 1.9474770843980138e-2 -1.9474770843980128e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2350432177030595,-0.5763701996290996 c 0.0,-1.0161915987974838e-2 -8.23786056042379e-3,-1.839977654839863e-2 -1.8399776548398628e-2 -1.839977654839863e-2c -1.0161915987974838e-2,-6.222378943938849e-19 -1.839977654839863e-2,8.23786056042379e-3 -1.839977654839863e-2 1.8399776548398625e-2c -1.2444757887877698e-18,1.0161915987974838e-2 8.237860560423789e-3,1.839977654839863e-2 1.8399776548398625e-2 1.839977654839863e-2c 1.0161915987974838e-2,1.866713683181655e-18 1.839977654839863e-2,-8.237860560423789e-3 1.839977654839863e-2 -1.839977654839862e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2809532606348325,-0.4359730691716529 c 0.0,-6.720898536196804e-3 -5.4483647618680485e-3,-1.2169263298064854e-2 -1.216926329806485e-2 -1.2169263298064854e-2c -6.720898536196804e-3,-4.115363439873774e-19 -1.2169263298064854e-2,5.448364761868048e-3 -1.2169263298064854e-2 1.216926329806485e-2c -8.230726879747548e-19,6.720898536196804e-3 5.448364761868047e-3,1.2169263298064854e-2 1.2169263298064848e-2 1.2169263298064854e-2c 6.720898536196804e-3,1.234609031962132e-18 1.2169263298064854e-2,-5.448364761868046e-3 1.2169263298064854e-2 -1.2169263298064847e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2669369630217881,-0.4602667925488491 c 0.0,-1.1918255654844135e-2 -9.661655176471768e-3,-2.1579910831315906e-2 -2.1579910831315902e-2 -2.1579910831315906e-2c -1.1918255654844135e-2,-7.297826819562355e-19 -2.1579910831315906e-2,9.661655176471768e-3 -2.1579910831315906e-2 2.15799108313159e-2c -1.459565363912471e-18,1.1918255654844135e-2 9.661655176471766e-3,2.1579910831315906e-2 2.1579910831315895e-2 2.1579910831315906e-2c 1.1918255654844135e-2,2.1893480458687068e-18 2.1579910831315906e-2,-9.661655176471764e-3 2.1579910831315906e-2 -2.1579910831315895e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2463976991714326,-0.511948549786795 c 0.0,-2.6934746782619017e-2 -2.183492645364391e-2,-4.876967323626293e-2 -4.876967323626292e-2 -4.876967323626293e-2c -2.6934746782619017e-2,-1.6492775716589425e-18 -4.876967323626293e-2,2.1834926453643908e-2 -4.876967323626293e-2 4.876967323626292e-2c -3.298555143317885e-18,2.6934746782619017e-2 2.1834926453643905e-2,4.876967323626293e-2 4.876967323626291e-2 4.876967323626293e-2c 2.6934746782619017e-2,4.947832714976827e-18 4.876967323626293e-2,-2.18349264536439e-2 4.876967323626293e-2 -4.8769673236262905e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.2430240241669012,-0.7135625619434267 c 0.0,-0.11826992710458896 -9.587671942299299e-2,-0.21414664652758197 -0.21414664652758192 -0.21414664652758197c -0.11826992710458896,-7.241944383201283e-18 -0.21414664652758197,9.587671942299297e-2 -0.21414664652758197 0.2141466465275819c -1.4483888766402565e-17,0.11826992710458896 9.587671942299296e-2,0.21414664652758197 0.2141466465275819 0.21414664652758197c 0.11826992710458896,2.172583314960385e-17 0.21414664652758197,-9.587671942299295e-2 0.21414664652758197 -0.21414664652758186Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1464782054036886,-0.4007514181467787 c 0.0,-6.813741487451083e-3 -5.523628844680387e-3,-1.2337370332131472e-2 -1.2337370332131468e-2 -1.2337370332131472e-2c -6.813741487451083e-3,-4.172213351412247e-19 -1.2337370332131472e-2,5.5236288446803864e-3 -1.2337370332131472e-2 1.2337370332131468e-2c -8.344426702824494e-19,6.813741487451083e-3 5.5236288446803864e-3,1.2337370332131472e-2 1.2337370332131467e-2 1.2337370332131472e-2c 6.813741487451083e-3,1.251664005423674e-18 1.2337370332131472e-2,-5.523628844680386e-3 1.2337370332131472e-2 -1.2337370332131465e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1567163826845843,-0.3646405290425924 c 0.0,-1.3141103011620997e-2 -1.0652968824776999e-2,-2.3794071836398e-2 -2.3794071836397993e-2 -2.3794071836398e-2c -1.3141103011620997e-2,-8.046604870223649e-19 -2.3794071836398e-2,1.0652968824776999e-2 -2.3794071836398e-2 2.3794071836397993e-2c -1.6093209740447297e-18,1.3141103011620997e-2 1.0652968824776997e-2,2.3794071836398e-2 2.379407183639799e-2 2.3794071836398e-2c 1.3141103011620997e-2,2.4139814610670945e-18 2.3794071836398e-2,-1.0652968824776995e-2 2.3794071836398e-2 -2.3794071836397986e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.05022924323426,-0.2902598089988285 c 0.0,-1.0129440664974006e-2 -8.211534109501331e-3,-1.834097477447534e-2 -1.8340974774475337e-2 -1.834097477447534e-2c -1.0129440664974006e-2,-6.202493543756727e-19 -1.834097477447534e-2,8.211534109501331e-3 -1.834097477447534e-2 1.8340974774475334e-2c -1.2404987087513454e-18,1.0129440664974006e-2 8.21153410950133e-3,1.834097477447534e-2 1.8340974774475334e-2 1.834097477447534e-2c 1.0129440664974006e-2,1.8607480631270183e-18 1.834097477447534e-2,-8.21153410950133e-3 1.834097477447534e-2 -1.834097477447533e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1817831762795104,-0.2335176820922233 c 0.0,-6.676213669332863e-3 -5.412140520020167e-3,-1.208835418935303e-2 -1.2088354189353027e-2 -1.208835418935303e-2c -6.676213669332863e-3,-4.0880018502861477e-19 -1.208835418935303e-2,5.412140520020166e-3 -1.208835418935303e-2 1.2088354189353027e-2c -8.176003700572295e-19,6.676213669332863e-3 5.412140520020165e-3,1.208835418935303e-2 1.2088354189353025e-2 1.208835418935303e-2c 6.676213669332863e-3,1.2264005550858445e-18 1.208835418935303e-2,-5.412140520020165e-3 1.208835418935303e-2 -1.2088354189353024e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.117519265072669,-0.208134276200301 c 0.0,-5.800110082080863e-3 -4.701918235481543e-3,-1.0502028317562407e-2 -1.0502028317562405e-2 -1.0502028317562407e-2c -5.800110082080863e-3,-3.55154312336131e-19 -1.0502028317562407e-2,4.7019182354815425e-3 -1.0502028317562407e-2 1.0502028317562404e-2c -7.10308624672262e-19,5.800110082080863e-3 4.701918235481542e-3,1.0502028317562407e-2 1.0502028317562402e-2 1.0502028317562407e-2c 5.800110082080863e-3,1.065462937008393e-18 1.0502028317562407e-2,-4.701918235481542e-3 1.0502028317562407e-2 -1.0502028317562402e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1832153379831103,-6.760675601637041e-2 c 0.0,-6.417166871064001e-3 -5.202141598036518e-3,-1.161930846910052e-2 -1.1619308469100519e-2 -1.161930846910052e-2c -6.417166871064001e-3,-3.929381434121482e-19 -1.161930846910052e-2,5.202141598036518e-3 -1.161930846910052e-2 1.1619308469100517e-2c -7.858762868242964e-19,6.417166871064001e-3 5.202141598036517e-3,1.161930846910052e-2 1.1619308469100515e-2 1.161930846910052e-2c 6.417166871064001e-3,1.1788144302364446e-18 1.161930846910052e-2,-5.2021415980365165e-3 1.161930846910052e-2 -1.1619308469100514e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.185219858227034,-9.499637513321703e-2 c 0.0,-8.760103656944662e-3 -7.1014671353477965e-3,-1.586157079229246e-2 -1.5861570792292456e-2 -1.586157079229246e-2c -8.760103656944662e-3,-5.364016451838151e-19 -1.586157079229246e-2,7.101467135347796e-3 -1.586157079229246e-2 1.5861570792292452e-2c -1.0728032903676302e-18,8.760103656944662e-3 7.101467135347795e-3,1.586157079229246e-2 1.5861570792292452e-2 1.586157079229246e-2c 8.760103656944662e-3,1.6092049355514455e-18 1.586157079229246e-2,-7.101467135347794e-3 1.586157079229246e-2 -1.586157079229245e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1865464238912928,-0.13332175333930568 c 0.0,-1.2638970665534292e-2 -1.0245910130842147e-2,-2.288488079637644e-2 -2.2884880796376437e-2 -2.288488079637644e-2c -1.2638970665534292e-2,-7.739137485031931e-19 -2.288488079637644e-2,1.0245910130842145e-2 -2.288488079637644e-2 2.2884880796376433e-2c -1.5478274970063861e-18,1.2638970665534292e-2 1.0245910130842143e-2,2.288488079637644e-2 2.288488079637643e-2 2.288488079637644e-2c 1.2638970665534292e-2,2.321741245509579e-18 2.288488079637644e-2,-1.0245910130842143e-2 2.288488079637644e-2 -2.2884880796376426e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1852692688882618,-0.1901795125921752 c 0.0,-1.9711654517431496e-2 -1.5979453237165497e-2,-3.5691107754596996e-2 -3.569110775459699e-2 -3.5691107754596996e-2c -1.9711654517431496e-2,-1.2069907305335472e-18 -3.5691107754596996e-2,1.5979453237165497e-2 -3.5691107754596996e-2 3.569110775459698e-2c -2.4139814610670945e-18,1.9711654517431496e-2 1.5979453237165493e-2,3.5691107754596996e-2 3.569110775459698e-2 3.5691107754596996e-2c 1.9711654517431496e-2,3.620972191600641e-18 3.5691107754596996e-2,-1.5979453237165493e-2 3.5691107754596996e-2 -3.5691107754596975e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.174616663394286,-0.28091990458952476 c 0.0,-3.4498193997629455e-2 -2.796631187221188e-2,-6.246450586984134e-2 -6.246450586984133e-2 -6.246450586984134e-2c -3.4498193997629455e-2,-2.112405142778067e-18 -6.246450586984134e-2,2.7966311872211876e-2 -6.246450586984134e-2 6.246450586984132e-2c -4.224810285556134e-18,3.4498193997629455e-2 2.7966311872211873e-2,6.246450586984134e-2 6.2464505869841314e-2 6.246450586984134e-2c 3.4498193997629455e-2,6.3372154283342014e-18 6.246450586984134e-2,-2.796631187221187e-2 6.246450586984134e-2 -6.246450586984131e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0773889315437524,-0.5590548317331246 c 0.0,-6.813741487451083e-3 -5.523628844680387e-3,-1.2337370332131472e-2 -1.2337370332131468e-2 -1.2337370332131472e-2c -6.813741487451083e-3,-4.172213351412247e-19 -1.2337370332131472e-2,5.5236288446803864e-3 -1.2337370332131472e-2 1.2337370332131468e-2c -8.344426702824494e-19,6.813741487451083e-3 5.5236288446803864e-3,1.2337370332131472e-2 1.2337370332131467e-2 1.2337370332131472e-2c 6.813741487451083e-3,1.251664005423674e-18 1.2337370332131472e-2,-5.523628844680386e-3 1.2337370332131472e-2 -1.2337370332131465e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0615400953389924,-0.582716799605614 c 0.0,-1.3141103011620997e-2 -1.0652968824776999e-2,-2.3794071836398e-2 -2.3794071836397993e-2 -2.3794071836398e-2c -1.3141103011620997e-2,-8.046604870223649e-19 -2.3794071836398e-2,1.0652968824776999e-2 -2.3794071836398e-2 2.3794071836397993e-2c -1.6093209740447297e-18,1.3141103011620997e-2 1.0652968824776997e-2,2.3794071836398e-2 2.379407183639799e-2 2.3794071836398e-2c 1.3141103011620997e-2,2.4139814610670945e-18 2.3794071836398e-2,-1.0652968824776995e-2 2.3794071836398e-2 -2.3794071836397986e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9328470046776177,-0.5592163057134169 c 0.0,-1.0129440664974006e-2 -8.211534109501331e-3,-1.834097477447534e-2 -1.8340974774475337e-2 -1.834097477447534e-2c -1.0129440664974006e-2,-6.202493543756727e-19 -1.834097477447534e-2,8.211534109501331e-3 -1.834097477447534e-2 1.8340974774475334e-2c -1.2404987087513454e-18,1.0129440664974006e-2 8.21153410950133e-3,1.834097477447534e-2 1.8340974774475334e-2 1.834097477447534e-2c 1.0129440664974006e-2,1.8607480631270183e-18 1.834097477447534e-2,-8.21153410950133e-3 1.834097477447534e-2 -1.834097477447533e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9786988258983795,-0.6988423861334564 c 0.0,-6.676213669332863e-3 -5.412140520020167e-3,-1.208835418935303e-2 -1.2088354189353027e-2 -1.208835418935303e-2c -6.676213669332863e-3,-4.0880018502861477e-19 -1.208835418935303e-2,5.412140520020166e-3 -1.208835418935303e-2 1.2088354189353027e-2c -8.176003700572295e-19,6.676213669332863e-3 5.412140520020165e-3,1.208835418935303e-2 1.2088354189353025e-2 1.208835418935303e-2c 6.676213669332863e-3,1.2264005550858445e-18 1.208835418935303e-2,-5.412140520020165e-3 1.208835418935303e-2 -1.2088354189353024e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9158803213754712,-0.6701471374719759 c 0.0,-5.800110082080863e-3 -4.701918235481543e-3,-1.0502028317562407e-2 -1.0502028317562405e-2 -1.0502028317562407e-2c -5.800110082080863e-3,-3.55154312336131e-19 -1.0502028317562407e-2,4.7019182354815425e-3 -1.0502028317562407e-2 1.0502028317562404e-2c -7.10308624672262e-19,5.800110082080863e-3 4.701918235481542e-3,1.0502028317562407e-2 1.0502028317562402e-2 1.0502028317562407e-2c 5.800110082080863e-3,1.065462937008393e-18 1.0502028317562407e-2,-4.701918235481542e-3 1.0502028317562407e-2 -1.0502028317562402e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.857874700848296,-0.8130558041740951 c 0.0,-6.417166871064001e-3 -5.202141598036518e-3,-1.161930846910052e-2 -1.1619308469100519e-2 -1.161930846910052e-2c -6.417166871064001e-3,-3.929381434121482e-19 -1.161930846910052e-2,5.202141598036518e-3 -1.161930846910052e-2 1.1619308469100517e-2c -7.858762868242964e-19,6.417166871064001e-3 5.202141598036517e-3,1.161930846910052e-2 1.1619308469100515e-2 1.161930846910052e-2c 6.417166871064001e-3,1.1788144302364446e-18 1.161930846910052e-2,-5.2021415980365165e-3 1.161930846910052e-2 -1.1619308469100514e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8806776990150188,-0.7927901235803936 c 0.0,-8.760103656944662e-3 -7.1014671353477965e-3,-1.586157079229246e-2 -1.5861570792292456e-2 -1.586157079229246e-2c -8.760103656944662e-3,-5.364016451838151e-19 -1.586157079229246e-2,7.101467135347796e-3 -1.586157079229246e-2 1.5861570792292452e-2c -1.0728032903676302e-18,8.760103656944662e-3 7.101467135347795e-3,1.586157079229246e-2 1.5861570792292452e-2 1.586157079229246e-2c 8.760103656944662e-3,1.6092049355514455e-18 1.586157079229246e-2,-7.101467135347794e-3 1.586157079229246e-2 -1.586157079229245e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9119278543347755,-0.7625519444559237 c 0.0,-1.2638970665534292e-2 -1.0245910130842147e-2,-2.288488079637644e-2 -2.2884880796376437e-2 -2.288488079637644e-2c -1.2638970665534292e-2,-7.739137485031931e-19 -2.288488079637644e-2,1.0245910130842145e-2 -2.288488079637644e-2 2.2884880796376433e-2c -1.5478274970063861e-18,1.2638970665534292e-2 1.0245910130842143e-2,2.288488079637644e-2 2.288488079637643e-2 2.288488079637644e-2c 1.2638970665534292e-2,2.321741245509579e-18 2.288488079637644e-2,-1.0245910130842143e-2 2.288488079637644e-2 -2.2884880796376426e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.9568461792588412,-0.7135625619434268 c 0.0,-1.9711654517431496e-2 -1.5979453237165497e-2,-3.5691107754596996e-2 -3.569110775459699e-2 -3.5691107754596996e-2c -1.9711654517431496e-2,-1.2069907305335472e-18 -3.5691107754596996e-2,1.5979453237165497e-2 -3.5691107754596996e-2 3.569110775459698e-2c -2.4139814610670945e-18,1.9711654517431496e-2 1.5979453237165493e-2,3.5691107754596996e-2 3.569110775459698e-2 3.5691107754596996e-2c 1.9711654517431496e-2,3.620972191600641e-18 3.5691107754596996e-2,-1.5979453237165493e-2 3.5691107754596996e-2 -3.5691107754596975e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.0247018493066669,-0.6244178962653983 c 0.0,-3.4498193997629455e-2 -2.796631187221188e-2,-6.246450586984134e-2 -6.246450586984133e-2 -6.246450586984134e-2c -3.4498193997629455e-2,-2.112405142778067e-18 -6.246450586984134e-2,2.7966311872211876e-2 -6.246450586984134e-2 6.246450586984132e-2c -4.224810285556134e-18,3.4498193997629455e-2 2.7966311872211873e-2,6.246450586984134e-2 6.2464505869841314e-2 6.246450586984134e-2c 3.4498193997629455e-2,6.3372154283342014e-18 6.246450586984134e-2,-2.796631187221187e-2 6.246450586984134e-2 -6.246450586984131e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8981500034364769,-0.34275084060721 c 0.0,-7.329739168101476e-3 -5.941927613114424e-3,-1.3271666781215902e-2 -1.3271666781215899e-2 -1.3271666781215902e-2c -7.329739168101476e-3,-4.488170805400228e-19 -1.3271666781215902e-2,5.9419276131144234e-3 -1.3271666781215902e-2 1.3271666781215897e-2c -8.976341610800456e-19,7.329739168101476e-3 5.9419276131144234e-3,1.3271666781215902e-2 1.3271666781215897e-2 1.3271666781215902e-2c 7.329739168101476e-3,1.3464512416200685e-18 1.3271666781215902e-2,-5.941927613114423e-3 1.3271666781215902e-2 -1.3271666781215895e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8662980031615588,-0.41573294175499337 c 0.0,-7.329739168101476e-3 -5.941927613114424e-3,-1.3271666781215902e-2 -1.3271666781215899e-2 -1.3271666781215902e-2c -7.329739168101476e-3,-4.488170805400228e-19 -1.3271666781215902e-2,5.9419276131144234e-3 -1.3271666781215902e-2 1.3271666781215897e-2c -8.976341610800456e-19,7.329739168101476e-3 5.9419276131144234e-3,1.3271666781215902e-2 1.3271666781215897e-2 1.3271666781215902e-2c 7.329739168101476e-3,1.3464512416200685e-18 1.3271666781215902e-2,-5.941927613114423e-3 1.3271666781215902e-2 -1.3271666781215895e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8130125456108009,-0.34771266723960403 c 0.0,-9.003752887841722e-3 -7.29898386272083e-3,-1.6302736750562555e-2 -1.630273675056255e-2 -1.6302736750562555e-2c -9.003752887841722e-3,-5.513208577204552e-19 -1.6302736750562555e-2,7.298983862720829e-3 -1.6302736750562555e-2 1.6302736750562548e-2c -1.1026417154409103e-18,9.003752887841722e-3 7.298983862720828e-3,1.6302736750562555e-2 1.6302736750562548e-2 1.6302736750562555e-2c 9.003752887841722e-3,1.6539625731613655e-18 1.6302736750562555e-2,-7.298983862720827e-3 1.6302736750562555e-2 -1.6302736750562544e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8788869348878731,-0.36826661138012057 c 0.0,-1.937532185636159e-2 -1.5706801744367407e-2,-3.5082123600729e-2 -3.5082123600728994e-2 -3.5082123600729e-2c -1.937532185636159e-2,-1.1863962946921488e-18 -3.5082123600729e-2,1.5706801744367404e-2 -3.5082123600729e-2 3.508212360072899e-2c -2.3727925893842977e-18,1.937532185636159e-2 1.57068017443674e-2,3.5082123600729e-2 3.508212360072899e-2 3.5082123600729e-2c 1.937532185636159e-2,3.5591888840764465e-18 3.5082123600729e-2,-1.57068017443674e-2 3.5082123600729e-2 -3.508212360072898e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1258395686563292,-0.43445275820843954 c 0.0,-7.200867700199429e-2 -5.837456646807433e-2,-0.13038324347006863 -0.1303832434700686 -0.13038324347006863c -7.200867700199429e-2,-4.4092597900663965e-18 -0.13038324347006863,5.8374566468074325e-2 -0.13038324347006863 0.13038324347006858c -8.818519580132793e-18,7.200867700199429e-2 5.837456646807432e-2,0.13038324347006863 0.13038324347006858 0.13038324347006863c 7.200867700199429e-2,1.3227779370199189e-17 0.13038324347006863,-5.8374566468074304e-2 0.13038324347006863 -0.13038324347006855Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.186606055596469,-0.1433030277982337 c 0.0,-0.4740025670592543 -0.3842550024363312,-0.8582575694955856 -0.8582575694955854 -0.8582575694955856c -0.4740025670592543,-2.902428632683722e-17 -0.8582575694955856,0.38425500243633115 -0.8582575694955856 0.8582575694955853c -5.804857265367444e-17,0.4740025670592543 0.3842550024363311,0.8582575694955856 0.8582575694955853 0.8582575694955856c 0.4740025670592543,8.707285898051167e-17 0.8582575694955856,-0.38425500243633104 0.8582575694955856 -0.8582575694955852Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5158949967676473,-0.10375499245784359 c 0.0,-7.315470261151113e-3 -5.930360378554932e-3,-1.3245830639706047e-2 -1.3245830639706043e-2 -1.3245830639706047e-2c -7.315470261151113e-3,-4.479433619788181e-19 -1.3245830639706047e-2,5.930360378554932e-3 -1.3245830639706047e-2 1.3245830639706042e-2c -8.958867239576363e-19,7.315470261151113e-3 5.930360378554931e-3,1.3245830639706047e-2 1.3245830639706042e-2 1.3245830639706047e-2c 7.315470261151113e-3,1.3438300859364543e-18 1.3245830639706047e-2,-5.93036037855493e-3 1.3245830639706047e-2 -1.324583063970604e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.529034386861202,-0.14113204805336937 c 0.0,-1.336270757010781e-2 -1.083261481422711e-2,-2.4195322384334923e-2 -2.4195322384334916e-2 -2.4195322384334923e-2c -1.336270757010781e-2,-8.182298526837317e-19 -2.4195322384334923e-2,1.0832614814227108e-2 -2.4195322384334923e-2 2.4195322384334916e-2c -1.6364597053674634e-18,1.336270757010781e-2 1.0832614814227108e-2,2.4195322384334923e-2 2.4195322384334913e-2 2.4195322384334923e-2c 1.336270757010781e-2,2.4546895580511953e-18 2.4195322384334923e-2,-1.0832614814227107e-2 2.4195322384334923e-2 -2.419532238433491e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.4311216806735284,-0.29799506141470217 c 0.0,-7.315470261151113e-3 -5.930360378554932e-3,-1.3245830639706047e-2 -1.3245830639706043e-2 -1.3245830639706047e-2c -7.315470261151113e-3,-4.479433619788181e-19 -1.3245830639706047e-2,5.930360378554932e-3 -1.3245830639706047e-2 1.3245830639706042e-2c -8.958867239576363e-19,7.315470261151113e-3 5.930360378554931e-3,1.3245830639706047e-2 1.3245830639706042e-2 1.3245830639706047e-2c 7.315470261151113e-3,1.3438300859364543e-18 1.3245830639706047e-2,-5.93036037855493e-3 1.3245830639706047e-2 -1.324583063970604e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.47096561313879803,-0.2741843236014584 c 0.0,-1.336270757010781e-2 -1.083261481422711e-2,-2.4195322384334923e-2 -2.4195322384334916e-2 -2.4195322384334923e-2c -1.336270757010781e-2,-8.182298526837317e-19 -2.4195322384334923e-2,1.0832614814227108e-2 -2.4195322384334923e-2 2.4195322384334916e-2c -1.6364597053674634e-18,1.336270757010781e-2 1.0832614814227108e-2,2.4195322384334923e-2 2.4195322384334913e-2 2.4195322384334923e-2c 1.336270757010781e-2,2.4546895580511953e-18 2.4195322384334923e-2,-1.0832614814227107e-2 2.4195322384334923e-2 -2.419532238433491e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.6293483592297736,-0.2694430819683559 c 0.0,-6.6145487239110375e-3 -5.362151204771717e-3,-1.1976699928682756e-2 -1.1976699928682753e-2 -1.1976699928682756e-2c -6.6145487239110375e-3,-4.050242961270931e-19 -1.1976699928682756e-2,5.362151204771716e-3 -1.1976699928682756e-2 1.1976699928682753e-2c -8.100485922541862e-19,6.6145487239110375e-3 5.362151204771716e-3,1.1976699928682756e-2 1.197669992868275e-2 1.1976699928682756e-2c 6.6145487239110375e-3,1.2150728883812793e-18 1.1976699928682756e-2,-5.362151204771715e-3 1.1976699928682756e-2 -1.1976699928682749e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.6082780784024937,-0.255629228796675 c 0.0,-1.245840238389173e-2 -1.00995306166278e-2,-2.255793300051953e-2 -2.2557933000519528e-2 -2.255793300051953e-2c -1.245840238389173e-2,-7.62857130096138e-19 -2.255793300051953e-2,1.0099530616627798e-2 -2.255793300051953e-2 2.2557933000519524e-2c -1.525714260192276e-18,1.245840238389173e-2 1.0099530616627796e-2,2.255793300051953e-2 2.255793300051952e-2 2.255793300051953e-2c 1.245840238389173e-2,2.2885713902884142e-18 2.255793300051953e-2,-1.0099530616627796e-2 2.255793300051953e-2 -2.2557933000519517e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5699090833947008,-0.2233030277982336 c 0.0,-3.2174767194618675e-2 -2.6082802300965324e-2,-5.8257569495584006e-2 -5.825756949558399e-2 -5.8257569495584006e-2c -3.2174767194618675e-2,-1.9701362829100513e-18 -5.8257569495584006e-2,2.608280230096532e-2 -5.8257569495584006e-2 5.8257569495583986e-2c -3.940272565820103e-18,3.2174767194618675e-2 2.6082802300965317e-2,5.8257569495584006e-2 5.825756949558398e-2 5.8257569495584006e-2c 3.2174767194618675e-2,5.910408848730154e-18 5.8257569495584006e-2,-2.6082802300965314e-2 5.8257569495584006e-2 -5.825756949558397e-2Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.8999999999999999,-0.6110100926607787 c 0.0,-0.18409491661026448 -0.1492384167230688,-0.3333333333333333 -0.33333333333333326 -0.3333333333333333c -0.18409491661026448,-1.1272562518302965e-17 -0.3333333333333333,0.14923841672306878 -0.3333333333333333 0.3333333333333332c -2.254512503660593e-17,0.18409491661026448 0.14923841672306876,0.3333333333333333 0.33333333333333315 0.3333333333333333c 0.18409491661026448,3.3817687554908895e-17 0.3333333333333333,-0.14923841672306876 0.3333333333333333 -0.33333333333333315Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 1.1666666666666667,0.0 c 0.0,-0.18409491661026448 -0.1492384167230688,-0.3333333333333333 -0.33333333333333326 -0.3333333333333333c -0.18409491661026448,-1.1272562518302965e-17 -0.3333333333333333,0.14923841672306878 -0.3333333333333333 0.3333333333333332c -2.254512503660593e-17,0.18409491661026448 0.14923841672306876,0.3333333333333333 0.33333333333333315 0.3333333333333333c 0.18409491661026448,3.3817687554908895e-17 0.3333333333333333,-0.14923841672306876 0.3333333333333333 -0.33333333333333315Z" /></g></g><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.39394440353283)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3" font-size="1.0em"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g></g></svg>
− diagrams/apollonian3.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="400.0" font-size="1" viewBox="0 0 400 400"><g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.3017051402601224,0.9108332875546336 c 0.0,-7.466947295738953e-3 -6.053156777434609e-3,-1.3520104073173564e-2 -1.352010407317356e-2 -1.3520104073173564e-2c -7.466947295738953e-3,-4.5721865525643475e-19 -1.3520104073173564e-2,6.0531567774346085e-3 -1.3520104073173564e-2 1.3520104073173559e-2c -9.144373105128695e-19,7.466947295738953e-3 6.053156777434608e-3,1.3520104073173564e-2 1.3520104073173559e-2 1.3520104073173564e-2c 7.466947295738953e-3,1.3716559657693042e-18 1.3520104073173564e-2,-6.053156777434607e-3 1.3520104073173564e-2 -1.3520104073173557e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.38073868560109964,0.8887079423916017 c 0.0,-7.599946752379501e-3 -6.160974139801459e-3,-1.3760920892180962e-2 -1.3760920892180959e-2 -1.3760920892180962e-2c -7.599946752379501e-3,-4.6536252319959395e-19 -1.3760920892180962e-2,6.160974139801458e-3 -1.3760920892180962e-2 1.3760920892180957e-2c -9.307250463991879e-19,7.599946752379501e-3 6.160974139801457e-3,1.3760920892180962e-2 1.3760920892180955e-2 1.3760920892180962e-2c 7.599946752379501e-3,1.3960875695987817e-18 1.3760920892180962e-2,-6.1609741398014565e-3 1.3760920892180962e-2 -1.3760920892180955e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.32158718448435497,0.8221020568844073 c 0.0,-9.237625985968698e-3 -7.488575468623122e-3,-1.6726201454591822e-2 -1.672620145459182e-2 -1.6726201454591822e-2c -9.237625985968698e-3,-5.656414547718489e-19 -1.6726201454591822e-2,7.488575468623121e-3 -1.6726201454591822e-2 1.6726201454591815e-2c -1.1312829095436979e-18,9.237625985968698e-3 7.48857546862312e-3,1.6726201454591822e-2 1.6726201454591815e-2 1.6726201454591822e-2c 9.237625985968698e-3,1.6969243643155468e-18 1.6726201454591822e-2,-7.488575468623119e-3 1.6726201454591822e-2 -1.672620145459181e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.35586148213913704,0.8726958116881639 c 0.0,-1.9901376319442183e-2 -1.613325314577386e-2,-3.6034629465216045e-2 -3.603462946521604e-2 -3.6034629465216045e-2c -1.9901376319442183e-2,-1.21860784041159e-18 -3.6034629465216045e-2,1.613325314577386e-2 -3.6034629465216045e-2 3.603462946521603e-2c -2.43721568082318e-18,1.9901376319442183e-2 1.6133253145773855e-2,3.6034629465216045e-2 3.603462946521603e-2 3.6034629465216045e-2c 1.9901376319442183e-2,3.65582352123477e-18 3.6034629465216045e-2,-1.613325314577385e-2 3.6034629465216045e-2 -3.6034629465216024e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.23174627506999068,1.0492770193791974 c 0.0,-1.0101302820282933e-2 -8.188723879490552e-3,-1.8290026699773487e-2 -1.8290026699773483e-2 -1.8290026699773487e-2c -1.0101302820282933e-2,-6.185264083038812e-19 -1.8290026699773487e-2,8.18872387949055e-3 -1.8290026699773487e-2 1.829002669977348e-2c -1.2370528166077624e-18,1.0101302820282933e-2 8.18872387949055e-3,1.8290026699773487e-2 1.829002669977348e-2 1.8290026699773487e-2c 1.0101302820282933e-2,1.8555792249116437e-18 1.8290026699773487e-2,-8.188723879490548e-3 1.8290026699773487e-2 -1.8290026699773476e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.3167460077703901,1.1702830668669666 c 0.0,-6.900571721865372e-3 -5.5940186574263565e-3,-1.249459037929173e-2 -1.2494590379291726e-2 -1.249459037929173e-2c -6.900571721865372e-3,-4.2253815357345833e-19 -1.249459037929173e-2,5.594018657426356e-3 -1.249459037929173e-2 1.2494590379291726e-2c -8.450763071469167e-19,6.900571721865372e-3 5.594018657426356e-3,1.249459037929173e-2 1.2494590379291725e-2 1.249459037929173e-2c 6.900571721865372e-3,1.267614460720375e-18 1.249459037929173e-2,-5.594018657426355e-3 1.249459037929173e-2 -1.2494590379291723e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2926964082023204,1.1620644630418109 c 0.0,-1.3210455269423946e-2 -1.0709189938000857e-2,-2.3919645207424806e-2 -2.39196452074248e-2 -2.3919645207424806e-2c -1.3210455269423946e-2,-8.08907088048966e-19 -2.3919645207424806e-2,1.0709189938000855e-2 -2.3919645207424806e-2 2.39196452074248e-2c -1.617814176097932e-18,1.3210455269423946e-2 1.0709189938000855e-2,2.3919645207424806e-2 2.3919645207424796e-2 2.3919645207424806e-2c 1.3210455269423946e-2,2.4267212641468984e-18 2.3919645207424806e-2,-1.0709189938000853e-2 2.3919645207424806e-2 -2.3919645207424792e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.13129311029539462,1.1085629078128194 c 0.0,-5.656422009483308e-3 -4.585436037866898e-3,-1.0241858047350207e-2 -1.0241858047350205e-2 -1.0241858047350207e-2c -5.656422009483308e-3,-3.463559554270186e-19 -1.0241858047350207e-2,4.585436037866897e-3 -1.0241858047350207e-2 1.0241858047350203e-2c -6.927119108540372e-19,5.656422009483308e-3 4.585436037866897e-3,1.0241858047350207e-2 1.0241858047350201e-2 1.0241858047350207e-2c 5.656422009483308e-3,1.0390678662810557e-18 1.0241858047350207e-2,-4.585436037866896e-3 1.0241858047350207e-2 -1.0241858047350201e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.14610358570449666,1.1731861961369108 c 0.0,-6.5150530878402705e-3 -5.281494055343246e-3,-1.1796547143183518e-2 -1.1796547143183515e-2 -1.1796547143183518e-2c -6.5150530878402705e-3,-3.9893194551493336e-19 -1.1796547143183518e-2,5.281494055343246e-3 -1.1796547143183518e-2 1.1796547143183515e-2c -7.978638910298667e-19,6.5150530878402705e-3 5.281494055343245e-3,1.1796547143183518e-2 1.1796547143183513e-2 1.1796547143183518e-2c 6.5150530878402705e-3,1.1967958365448e-18 1.1796547143183518e-2,-5.281494055343244e-3 1.1796547143183518e-2 -1.1796547143183511e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -1.157122277802417e-2,1.1458401900332829 c 0.0,-6.054278245555616e-3 -4.907962242544949e-3,-1.0962240488100567e-2 -1.0962240488100565e-2 -1.0962240488100567e-2c -6.054278245555616e-3,-3.7071762372835694e-19 -1.0962240488100567e-2,4.907962242544949e-3 -1.0962240488100567e-2 1.0962240488100563e-2c -7.414352474567139e-19,6.054278245555616e-3 4.907962242544948e-3,1.0962240488100567e-2 1.0962240488100562e-2 1.0962240488100567e-2c 6.054278245555616e-3,1.1121528711850708e-18 1.0962240488100567e-2,-4.907962242544947e-3 1.0962240488100567e-2 -1.096224048810056e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.8405137438491807e-2,1.1483700801359367 c 0.0,-8.311796818424349e-3 -6.738042636622851e-3,-1.5049839455047202e-2 -1.5049839455047198e-2 -1.5049839455047202e-2c -8.311796818424349e-3,-5.089507684423266e-19 -1.5049839455047202e-2,6.73804263662285e-3 -1.5049839455047202e-2 1.5049839455047197e-2c -1.0179015368846532e-18,8.311796818424349e-3 6.7380426366228496e-3,1.5049839455047202e-2 1.5049839455047195e-2 1.5049839455047202e-2c 8.311796818424349e-3,1.5268523053269799e-18 1.5049839455047202e-2,-6.738042636622849e-3 1.5049839455047202e-2 -1.5049839455047193e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 6.216833578612091e-2,1.1495845344912479 c 0.0,-1.209038755691817e-2 -9.801195653775893e-3,-2.1891583210694066e-2 -2.1891583210694062e-2 -2.1891583210694066e-2c -1.209038755691817e-2,-7.403227211015413e-19 -2.1891583210694066e-2,9.801195653775891e-3 -2.1891583210694066e-2 2.189158321069406e-2c -1.4806454422030825e-18,1.209038755691817e-2 9.80119565377589e-3,2.1891583210694066e-2 2.1891583210694055e-2 2.1891583210694066e-2c 1.209038755691817e-2,2.2209681633046238e-18 2.1891583210694066e-2,-9.80119565377589e-3 2.1891583210694066e-2 -2.189158321069405e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.1312113566523716,1.1461450870326921 c 0.0,-1.909465721547036e-2 -1.5479278098369999e-2,-3.4573935313840364e-2 -3.457393531384036e-2 -3.4573935313840364e-2c -1.909465721547036e-2,-1.1692105419870845e-18 -3.4573935313840364e-2,1.5479278098369997e-2 -3.4573935313840364e-2 3.457393531384035e-2c -2.338421083974169e-18,1.909465721547036e-2 1.5479278098369995e-2,3.4573935313840364e-2 3.457393531384035e-2 3.4573935313840364e-2c 1.909465721547036e-2,3.507631625961253e-18 3.4573935313840364e-2,-1.5479278098369994e-2 3.4573935313840364e-2 -3.457393531384034e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.25274285535404695,1.126148370413529 c 0.0,-3.41390875686669e-2 -2.7675198592821856e-2,-6.181428616148876e-2 -6.181428616148875e-2 -6.181428616148876e-2c -3.41390875686669e-2,-2.0904162158389557e-18 -6.181428616148876e-2,2.7675198592821852e-2 -6.181428616148876e-2 6.181428616148874e-2c -4.1808324316779115e-18,3.41390875686669e-2 2.767519859282185e-2,6.181428616148876e-2 6.1814286161488735e-2 6.181428616148876e-2c 3.41390875686669e-2,6.271248647516867e-18 6.181428616148876e-2,-2.7675198592821845e-2 6.181428616148876e-2 -6.181428616148873e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5260300010746738,0.974901953892551 c 0.0,-1.0781979473715515e-2 -8.740521332288724e-3,-1.952250080600424e-2 -1.9522500806004237e-2 -1.952250080600424e-2c -1.0781979473715515e-2,-6.6020583254790845e-19 -1.952250080600424e-2,8.740521332288722e-3 -1.952250080600424e-2 1.9522500806004234e-2c -1.3204116650958169e-18,1.0781979473715515e-2 8.74052133228872e-3,1.952250080600424e-2 1.9522500806004234e-2 1.952250080600424e-2c 1.0781979473715515e-2,1.9806174976437256e-18 1.952250080600424e-2,-8.74052133228872e-3 1.952250080600424e-2 -1.952250080600423e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5536881527809275,1.1104170400656455 c 0.0,-5.559590255154559e-3 -4.506938391269013e-3,-1.0066528646423573e-2 -1.006652864642357e-2 -1.0066528646423573e-2c -5.559590255154559e-3,-3.4042672052729234e-19 -1.0066528646423573e-2,4.506938391269012e-3 -1.0066528646423573e-2 1.0066528646423569e-2c -6.808534410545847e-19,5.559590255154559e-3 4.506938391269011e-3,1.0066528646423573e-2 1.0066528646423567e-2 1.0066528646423573e-2c 5.559590255154559e-3,1.021280161581877e-18 1.0066528646423573e-2,-4.506938391269011e-3 1.0066528646423573e-2 -1.0066528646423567e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.49134361402388804,1.131744402412572 c 0.0,-7.171184944885295e-3 -5.813394019285579e-3,-1.2984578964170875e-2 -1.2984578964170872e-2 -1.2984578964170875e-2c -7.171184944885295e-3,-4.391084344423733e-19 -1.2984578964170875e-2,5.813394019285578e-3 -1.2984578964170875e-2 1.2984578964170872e-2c -8.782168688847465e-19,7.171184944885295e-3 5.813394019285577e-3,1.2984578964170875e-2 1.298457896417087e-2 1.2984578964170875e-2c 7.171184944885295e-3,1.3173253033271198e-18 1.2984578964170875e-2,-5.813394019285577e-3 1.2984578964170875e-2 -1.2984578964170868e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5336281236553467,1.1081479769283407 c 0.0,-1.3929224895203311e-2 -1.1291867846305275e-2,-2.5221092741508588e-2 -2.522109274150858e-2 -2.5221092741508588e-2c -1.3929224895203311e-2,-8.52919034125718e-19 -2.5221092741508588e-2,1.1291867846305273e-2 -2.5221092741508588e-2 2.522109274150858e-2c -1.705838068251436e-18,1.3929224895203311e-2 1.1291867846305271e-2,2.5221092741508588e-2 2.5221092741508577e-2 2.5221092741508588e-2c 1.3929224895203311e-2,2.558757102377154e-18 2.5221092741508588e-2,-1.129186784630527e-2 2.5221092741508588e-2 -2.5221092741508574e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6374829453699326,0.9846538181487168 c 0.0,-6.327477840802748e-3 -5.129434273358166e-3,-1.1456912114160916e-2 -1.1456912114160915e-2 -1.1456912114160916e-2c -6.327477840802748e-3,-3.874462742207446e-19 -1.1456912114160916e-2,5.1294342733581655e-3 -1.1456912114160916e-2 1.1456912114160913e-2c -7.748925484414892e-19,6.327477840802748e-3 5.1294342733581655e-3,1.1456912114160916e-2 1.1456912114160911e-2 1.1456912114160916e-2c 6.327477840802748e-3,1.1623388226622337e-18 1.1456912114160916e-2,-5.129434273358165e-3 1.1456912114160916e-2 -1.145691211416091e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6584996209399732,1.0559255853853369 c 0.0,-7.294743624925639e-3 -5.913558120071972e-3,-1.3208301744997613e-2 -1.320830174499761e-2 -1.3208301744997613e-2c -7.294743624925639e-3,-4.466742215432872e-19 -1.3208301744997613e-2,5.913558120071972e-3 -1.3208301744997613e-2 1.3208301744997607e-2c -8.933484430865745e-19,7.294743624925639e-3 5.913558120071971e-3,1.3208301744997613e-2 1.3208301744997607e-2 1.3208301744997613e-2c 7.294743624925639e-3,1.3400226646298615e-18 1.3208301744997613e-2,-5.91355812007197e-3 1.3208301744997613e-2 -1.3208301744997606e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8222599923298499,0.932426508229543 c 0.0,-5.56185247638636e-3 -4.5087722839213884e-3,-1.007062476030775e-2 -1.0070624760307748e-2 -1.007062476030775e-2c -5.56185247638636e-3,-3.4056524162681673e-19 -1.007062476030775e-2,4.5087722839213884e-3 -1.007062476030775e-2 1.0070624760307746e-2c -6.811304832536335e-19,5.56185247638636e-3 4.508772283921388e-3,1.007062476030775e-2 1.0070624760307744e-2 1.007062476030775e-2c 5.56185247638636e-3,1.0216957248804502e-18 1.007062476030775e-2,-4.508772283921387e-3 1.007062476030775e-2 -1.0070624760307744e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.806528649969414,0.9460367672182712 c 0.0,-7.255332804185467e-3 -5.88160933736076e-3,-1.3136942141546228e-2 -1.3136942141546225e-2 -1.3136942141546228e-2c -7.255332804185467e-3,-4.442610047697261e-19 -1.3136942141546228e-2,5.8816093373607594e-3 -1.3136942141546228e-2 1.3136942141546223e-2c -8.885220095394522e-19,7.255332804185467e-3 5.881609337360759e-3,1.3136942141546228e-2 1.3136942141546223e-2 1.3136942141546228e-2c 7.255332804185467e-3,1.3327830143091784e-18 1.3136942141546228e-2,-5.881609337360758e-3 1.3136942141546228e-2 -1.3136942141546221e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.7852512037658934,0.9629029001342589 c 0.0,-9.846243106923629e-3 -7.981957128444586e-3,-1.7828200235368217e-2 -1.7828200235368213e-2 -1.7828200235368217e-2c -9.846243106923629e-3,-6.029085052260356e-19 -1.7828200235368217e-2,7.981957128444584e-3 -1.7828200235368217e-2 1.782820023536821e-2c -1.2058170104520713e-18,9.846243106923629e-3 7.981957128444584e-3,1.7828200235368217e-2 1.782820023536821e-2 1.7828200235368217e-2c 9.846243106923629e-3,1.8087255156781068e-18 1.7828200235368217e-2,-7.981957128444583e-3 1.7828200235368217e-2 -1.7828200235368206e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.7550513307285885,0.9839534429378295 c 0.0,-1.4086096038544845e-2 -1.1419037034313819e-2,-2.5505133072858666e-2 -2.550513307285866e-2 -2.5505133072858666e-2c -1.4086096038544845e-2,-8.625246213043078e-19 -2.5505133072858666e-2,1.1419037034313817e-2 -2.5505133072858666e-2 2.550513307285866e-2c -1.7250492426086155e-18,1.4086096038544845e-2 1.1419037034313816e-2,2.5505133072858666e-2 2.5505133072858656e-2 2.5505133072858666e-2c 1.4086096038544845e-2,2.5875738639129234e-18 2.5505133072858666e-2,-1.1419037034313814e-2 2.5505133072858666e-2 -2.5505133072858652e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.7093813641381923,1.0097061322041785 c 0.0,-2.1682150183554533e-2 -1.7576855592356194e-2,-3.925900577591073e-2 -3.9259005775910724e-2 -3.925900577591073e-2c -2.1682150183554533e-2,-1.3276487910461127e-18 -3.925900577591073e-2,1.757685559235619e-2 -3.925900577591073e-2 3.925900577591072e-2c -2.6552975820922255e-18,2.1682150183554533e-2 1.757685559235619e-2,3.925900577591073e-2 3.925900577591071e-2 3.925900577591073e-2c 2.1682150183554533e-2,3.9829463731383384e-18 3.925900577591073e-2,-1.7576855592356187e-2 3.925900577591073e-2 -3.925900577591071e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6343804477698137,1.036843084636483 c 0.0,-3.7108135989350345e-2 -3.0082087895555706e-2,-6.719022388490606e-2 -6.719022388490604e-2 -6.719022388490606e-2c -3.7108135989350345e-2,-2.27221799808413e-18 -6.719022388490606e-2,3.0082087895555703e-2 -6.719022388490606e-2 6.719022388490603e-2c -4.54443599616826e-18,3.7108135989350345e-2 3.00820878955557e-2,6.719022388490606e-2 6.719022388490603e-2 6.719022388490606e-2c 3.7108135989350345e-2,6.81665399425239e-18 6.719022388490606e-2,-3.0082087895555696e-2 6.719022388490606e-2 -6.719022388490602e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5000000000000017,1.036843084636483 c 0.0,-7.421627197870069e-2 -6.016417579111141e-2,-0.13438044776981212 -0.1343804477698121 -0.13438044776981212c -7.421627197870069e-2,-4.54443599616826e-18 -0.13438044776981212,6.0164175791111406e-2 -0.13438044776981212 0.13438044776981206c -9.08887199233652e-18,7.421627197870069e-2 6.01641757911114e-2,0.13438044776981212 0.13438044776981206 0.13438044776981212c 7.421627197870069e-2,1.363330798850478e-17 0.13438044776981212,-6.016417579111139e-2 0.13438044776981212 -0.13438044776981203Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.25544557587771727,0.6315582735098788 c 0.0,-6.7531839473194575e-3 -5.474537258794721e-3,-1.222772120611418e-2 -1.2227721206114176e-2 -1.222772120611418e-2c -6.7531839473194575e-3,-4.135132552569031e-19 -1.222772120611418e-2,5.47453725879472e-3 -1.222772120611418e-2 1.2227721206114176e-2c -8.270265105138062e-19,6.7531839473194575e-3 5.474537258794719e-3,1.222772120611418e-2 1.2227721206114175e-2 1.222772120611418e-2c 6.7531839473194575e-3,1.2405397657707093e-18 1.222772120611418e-2,-5.474537258794719e-3 1.222772120611418e-2 -1.2227721206114173e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2545735297982303,0.5983044935697073 c 0.0,-1.2707371565366204e-2 -1.0301360016049779e-2,-2.3008731581415986e-2 -2.3008731581415982e-2 -2.3008731581415986e-2c -1.2707371565366204e-2,-7.781020956550906e-19 -2.3008731581415986e-2,1.0301360016049777e-2 -2.3008731581415986e-2 2.300873158141598e-2c -1.5562041913101812e-18,1.2707371565366204e-2 1.0301360016049777e-2,2.3008731581415986e-2 2.3008731581415975e-2 2.3008731581415986e-2c 1.2707371565366204e-2,2.334306286965272e-18 2.3008731581415986e-2,-1.0301360016049775e-2 2.3008731581415986e-2 -2.3008731581415972e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 9.678598267753673e-2,0.5062863772072611 c 0.0,-7.2615962832132475e-3 -5.88668689034536e-3,-1.3148283173558609e-2 -1.3148283173558605e-2 -1.3148283173558609e-2c -7.2615962832132475e-3,-4.44644532246871e-19 -1.3148283173558609e-2,5.886686890345359e-3 -1.3148283173558609e-2 1.3148283173558603e-2c -8.89289064493742e-19,7.2615962832132475e-3 5.8866868903453586e-3,1.3148283173558609e-2 1.3148283173558603e-2 1.3148283173558609e-2c 7.2615962832132475e-3,1.333933596740613e-18 1.3148283173558609e-2,-5.886686890345358e-3 1.3148283173558609e-2 -1.3148283173558602e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.1450001809616545,0.5100968574704572 c 0.0,-1.3367794516879769e-2 -1.0836738599371102e-2,-2.4204533116250874e-2 -2.4204533116250867e-2 -2.4204533116250874e-2c -1.3367794516879769e-2,-8.1854133833781735e-19 -2.4204533116250874e-2,1.08367385993711e-2 -2.4204533116250874e-2 2.4204533116250867e-2c -1.6370826766756347e-18,1.3367794516879769e-2 1.08367385993711e-2,2.4204533116250874e-2 2.4204533116250863e-2 2.4204533116250874e-2c 1.3367794516879769e-2,2.455624015013452e-18 2.4204533116250874e-2,-1.0836738599371098e-2 2.4204533116250874e-2 -2.420453311625086e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2979906411858083,0.4279995456742372 c 0.0,-7.606819649739211e-3 -6.166545723955706e-3,-1.3773365373694918e-2 -1.3773365373694915e-2 -1.3773365373694918e-2c -7.606819649739211e-3,-4.657833667872157e-19 -1.3773365373694918e-2,6.166545723955705e-3 -1.3773365373694918e-2 1.3773365373694913e-2c -9.315667335744314e-19,7.606819649739211e-3 6.166545723955704e-3,1.3773365373694918e-2 1.3773365373694911e-2 1.3773365373694918e-2c 7.606819649739211e-3,1.3973501003616472e-18 1.3773365373694918e-2,-6.166545723955703e-3 1.3773365373694918e-2 -1.3773365373694911e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.283442708492751,0.45696016456888544 c 0.0,-1.380014879585948e-2 -1.1187230993438536e-2,-2.498737978929802e-2 -2.4987379789298013e-2 -2.498737978929802e-2c -1.380014879585948e-2,-8.450154025303257e-19 -2.498737978929802e-2,1.1187230993438534e-2 -2.498737978929802e-2 2.4987379789298013e-2c -1.6900308050606514e-18,1.380014879585948e-2 1.1187230993438532e-2,2.498737978929802e-2 2.498737978929801e-2 2.498737978929802e-2c 1.380014879585948e-2,2.535046207590977e-18 2.498737978929802e-2,-1.1187230993438532e-2 2.498737978929802e-2 -2.4987379789298006e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2628641126967003,0.5209161999633579 c 0.0,-3.2741633548801614e-2 -2.6542338277023465e-2,-5.928397182582509e-2 -5.928397182582507e-2 -5.928397182582509e-2c -3.2741633548801614e-2,-2.0048468362197747e-18 -5.928397182582509e-2,2.6542338277023462e-2 -5.928397182582509e-2 5.9283971825825066e-2c -4.009693672439549e-18,3.2741633548801614e-2 2.654233827702346e-2,5.928397182582509e-2 5.928397182582506e-2 5.928397182582509e-2c 3.2741633548801614e-2,6.014540508659324e-18 5.928397182582509e-2,-2.6542338277023455e-2 5.928397182582509e-2 -5.928397182582505e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.32295307733969514,0.6930041944286635 c 0.0,-6.087112961263875e-3 -4.934580038821347e-3,-1.1021693000085224e-2 -1.1021693000085223e-2 -1.1021693000085224e-2c -6.087112961263875e-3,-3.727281702030086e-19 -1.1021693000085224e-2,4.934580038821347e-3 -1.1021693000085224e-2 1.102169300008522e-2c -7.454563404060172e-19,6.087112961263875e-3 4.934580038821346e-3,1.1021693000085224e-2 1.1021693000085219e-2 1.1021693000085224e-2c 6.087112961263875e-3,1.1181845106090257e-18 1.1021693000085224e-2,-4.9345800388213455e-3 1.1021693000085224e-2 -1.1021693000085217e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.3328909416542157,0.7190895606235768 c 0.0,-1.2777582370773151e-2 -1.0358277119621773e-2,-2.3135859490394928e-2 -2.3135859490394924e-2 -2.3135859490394928e-2c -1.2777582370773151e-2,-7.824012675604494e-19 -2.3135859490394928e-2,1.0358277119621773e-2 -2.3135859490394928e-2 2.313585949039492e-2c -1.5648025351208988e-18,1.2777582370773151e-2 1.0358277119621772e-2,2.3135859490394928e-2 2.3135859490394917e-2 2.3135859490394928e-2c 1.2777582370773151e-2,2.3472038026813483e-18 2.3135859490394928e-2,-1.035827711962177e-2 2.3135859490394928e-2 -2.3135859490394914e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.46956256181581757,0.7223182530271479 c 0.0,-5.656422009483308e-3 -4.585436037866898e-3,-1.0241858047350207e-2 -1.0241858047350205e-2 -1.0241858047350207e-2c -5.656422009483308e-3,-3.463559554270186e-19 -1.0241858047350207e-2,4.585436037866897e-3 -1.0241858047350207e-2 1.0241858047350203e-2c -6.927119108540372e-19,5.656422009483308e-3 4.585436037866897e-3,1.0241858047350207e-2 1.0241858047350201e-2 1.0241858047350207e-2c 5.656422009483308e-3,1.0390678662810557e-18 1.0241858047350207e-2,-4.585436037866896e-3 1.0241858047350207e-2 -1.0241858047350201e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.5043107603840378,0.7799745988905966 c 0.0,-7.050832843869578e-3 -5.715829364402116e-3,-1.2766662208271695e-2 -1.2766662208271691e-2 -1.2766662208271695e-2c -7.050832843869578e-3,-4.317389936783954e-19 -1.2766662208271695e-2,5.715829364402115e-3 -1.2766662208271695e-2 1.2766662208271691e-2c -8.634779873567908e-19,7.050832843869578e-3 5.715829364402114e-3,1.2766662208271695e-2 1.276666220827169e-2 1.2766662208271695e-2c 7.050832843869578e-3,1.2952169810351863e-18 1.2766662208271695e-2,-5.715829364402113e-3 1.2766662208271695e-2 -1.2766662208271688e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.5648375651537648,0.6769616012630096 c 0.0,-6.0837263615315116e-3 -4.93183465730056e-3,-1.1015561018832073e-2 -1.1015561018832071e-2 -1.1015561018832073e-2c -6.0837263615315116e-3,-3.7252080077689697e-19 -1.1015561018832073e-2,4.93183465730056e-3 -1.1015561018832073e-2 1.101556101883207e-2c -7.450416015537939e-19,6.0837263615315116e-3 4.931834657300559e-3,1.1015561018832073e-2 1.1015561018832068e-2 1.1015561018832073e-2c 6.0837263615315116e-3,1.1175624023306908e-18 1.1015561018832073e-2,-4.931834657300558e-3 1.1015561018832073e-2 -1.1015561018832066e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.5399017191680052,0.6991848786895014 c 0.0,-9.789577173056506e-3 -7.936020312761801e-3,-1.772559748581831e-2 -1.7725597485818305e-2 -1.772559748581831e-2c -9.789577173056506e-3,-5.994387174994822e-19 -1.772559748581831e-2,7.9360203127618e-3 -1.772559748581831e-2 1.77255974858183e-2c -1.1988774349989644e-18,9.789577173056506e-3 7.9360203127618e-3,1.772559748581831e-2 1.77255974858183e-2 1.772559748581831e-2c 9.789577173056506e-3,1.7983161524984465e-18 1.772559748581831e-2,-7.936020312761798e-3 1.772559748581831e-2 -1.7725597485818298e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4883057040260258,0.7344551841493836 c 0.0,-1.8194205616812033e-2 -1.4749317850722227e-2,-3.2943523467534264e-2 -3.294352346753426e-2 -3.2943523467534264e-2c -1.8194205616812033e-2,-1.1140737835828826e-18 -3.2943523467534264e-2,1.4749317850722225e-2 -3.2943523467534264e-2 3.294352346753425e-2c -2.2281475671657653e-18,1.8194205616812033e-2 1.4749317850722221e-2,3.2943523467534264e-2 3.294352346753425e-2 3.2943523467534264e-2c 1.8194205616812033e-2,3.3422213507486478e-18 3.2943523467534264e-2,-1.474931785072222e-2 3.2943523467534264e-2 -3.294352346753424e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.34512948252160425,0.8551591697528576 c 0.0,-6.864001835721665e-3 -5.564372907243131e-3,-1.2428374742964798e-2 -1.2428374742964795e-2 -1.2428374742964798e-2c -6.864001835721665e-3,-4.202988938729047e-19 -1.2428374742964798e-2,5.56437290724313e-3 -1.2428374742964798e-2 1.2428374742964795e-2c -8.405977877458094e-19,6.864001835721665e-3 5.56437290724313e-3,1.2428374742964798e-2 1.2428374742964793e-2 1.2428374742964798e-2c 6.864001835721665e-3,1.2608966816187141e-18 1.2428374742964798e-2,-5.564372907243129e-3 1.2428374742964798e-2 -1.2428374742964791e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4172536896932789,0.8879637456750967 c 0.0,-8.170729428123002e-3 -6.6236849217686305e-3,-1.4794414349891634e-2 -1.479441434989163e-2 -1.4794414349891634e-2c -8.170729428123002e-3,-5.003128820424959e-19 -1.4794414349891634e-2,6.62368492176863e-3 -1.4794414349891634e-2 1.4794414349891628e-2c -1.0006257640849917e-18,8.170729428123002e-3 6.623684921768629e-3,1.4794414349891634e-2 1.4794414349891627e-2 1.4794414349891634e-2c 8.170729428123002e-3,1.5009386461274876e-18 1.4794414349891634e-2,-6.623684921768628e-3 1.4794414349891634e-2 -1.4794414349891625e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.28127141908361697,1.0152547478734617 c 0.0,-6.741942034977276e-3 -5.465423888204274e-3,-1.2207365923181552e-2 -1.2207365923181548e-2 -1.2207365923181552e-2c -6.741942034977276e-3,-4.128248866585957e-19 -1.2207365923181552e-2,5.465423888204274e-3 -1.2207365923181552e-2 1.2207365923181548e-2c -8.256497733171914e-19,6.741942034977276e-3 5.465423888204273e-3,1.2207365923181552e-2 1.2207365923181546e-2 1.2207365923181552e-2c 6.741942034977276e-3,1.238474659975787e-18 1.2207365923181552e-2,-5.465423888204272e-3 1.2207365923181552e-2 -1.2207365923181545e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.2967282887249274,0.9941755833936868 c 0.0,-9.4290189347478e-3 -7.643730109357836e-3,-1.7072749044105637e-2 -1.7072749044105634e-2 -1.7072749044105637e-2c -9.4290189347478e-3,-5.77360892876934e-19 -1.7072749044105637e-2,7.643730109357835e-3 -1.7072749044105637e-2 1.707274904410563e-2c -1.154721785753868e-18,9.4290189347478e-3 7.643730109357834e-3,1.7072749044105637e-2 1.707274904410563e-2 1.7072749044105637e-2c 9.4290189347478e-3,1.7320826786308019e-18 1.7072749044105637e-2,-7.643730109357832e-3 1.7072749044105637e-2 -1.7072749044105627e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.3155339300888933,0.9614592006976497 c 0.0,-1.4075217267427173e-2 -1.1410218047850813e-2,-2.548543531527799e-2 -2.548543531527798e-2 -2.548543531527799e-2c -1.4075217267427173e-2,-8.6185848869291205e-19 -2.548543531527799e-2,1.1410218047850812e-2 -2.548543531527799e-2 2.548543531527798e-2c -1.7237169773858241e-18,1.4075217267427173e-2 1.141021804785081e-2,2.548543531527799e-2 2.5485435315277978e-2 2.548543531527799e-2c 1.4075217267427173e-2,2.5855754660787364e-18 2.548543531527799e-2,-1.1410218047850808e-2 2.548543531527799e-2 -2.5485435315277975e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.33635042046579233,0.9053372689171527 c 0.0,-2.3095179136891512e-2 -1.872234188639821e-2,-4.181752102328973e-2 -4.181752102328972e-2 -4.181752102328973e-2c -2.3095179136891512e-2,-1.414171860286446e-18 -4.181752102328973e-2,1.872234188639821e-2 -4.181752102328973e-2 4.1817521023289714e-2c -2.828343720572892e-18,2.3095179136891512e-2 1.8722341886398205e-2,4.181752102328973e-2 4.181752102328971e-2 4.181752102328973e-2c 2.3095179136891512e-2,4.242515580859338e-18 4.181752102328973e-2,-1.87223418863982e-2 4.181752102328973e-2 -4.181752102328971e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.3466383678456644,0.7939907236320357 c 0.0,-4.383613679838704e-2 -3.553621018714417e-2,-7.937234698553122e-2 -7.937234698553121e-2 -7.937234698553122e-2c -4.383613679838704e-2,-2.6841892308565096e-18 -7.937234698553122e-2,3.553621018714417e-2 -7.937234698553122e-2 7.93723469855312e-2c -5.368378461713019e-18,4.383613679838704e-2 3.553621018714416e-2,7.937234698553122e-2 7.937234698553118e-2 7.937234698553122e-2c 4.383613679838704e-2,8.05256769256953e-18 7.937234698553122e-2,-3.553621018714415e-2 7.937234698553122e-2 -7.937234698553118e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.22397833111827972,0.5576830327591873 c 0.0,-9.37130136291973e-3 -7.596940772664977e-3,-1.6968242135584708e-2 -1.6968242135584705e-2 -1.6968242135584708e-2c -9.37130136291973e-3,-5.738267108972438e-19 -1.6968242135584708e-2,7.596940772664976e-3 -1.6968242135584708e-2 1.69682421355847e-2c -1.1476534217944875e-18,9.37130136291973e-3 7.596940772664975e-3,1.6968242135584708e-2 1.69682421355847e-2 1.6968242135584708e-2c 9.37130136291973e-3,1.7214801326917312e-18 1.6968242135584708e-2,-7.5969407726649745e-3 1.6968242135584708e-2 -1.6968242135584698e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.23283750721523913,0.45322792179845933 c 0.0,-9.952499491942407e-3 -8.068094947776612e-3,-1.8020594439719023e-2 -1.802059443971902e-2 -1.8020594439719023e-2c -9.952499491942407e-3,-6.094148323161465e-19 -1.8020594439719023e-2,8.068094947776612e-3 -1.8020594439719023e-2 1.8020594439719016e-2c -1.218829664632293e-18,9.952499491942407e-3 8.06809494777661e-3,1.8020594439719023e-2 1.8020594439719016e-2 1.8020594439719023e-2c 9.952499491942407e-3,1.8282444969484394e-18 1.8020594439719023e-2,-8.06809494777661e-3 1.8020594439719023e-2 -1.8020594439719012e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.10205998047871821,0.4987970733669948 c 0.0,-6.39439510965042e-3 -5.183681438017256e-3,-1.1578076547667676e-2 -1.1578076547667675e-2 -1.1578076547667676e-2c -6.39439510965042e-3,-3.9154377517584373e-19 -1.1578076547667676e-2,5.183681438017255e-3 -1.1578076547667676e-2 1.1578076547667673e-2c -7.830875503516875e-19,6.39439510965042e-3 5.183681438017254e-3,1.1578076547667676e-2 1.1578076547667671e-2 1.1578076547667676e-2c 6.39439510965042e-3,1.1746313255275313e-18 1.1578076547667676e-2,-5.183681438017253e-3 1.1578076547667676e-2 -1.157807654766767e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.1252059143859995,0.49960528922809183 c 0.0,-1.1259511696284938e-2 -9.12763768586725e-3,-2.038714938215219e-2 -2.0387149382152185e-2 -2.038714938215219e-2c -1.1259511696284938e-2,-6.894462479408766e-19 -2.038714938215219e-2,9.127637685867248e-3 -2.038714938215219e-2 2.038714938215218e-2c -1.3788924958817532e-18,1.1259511696284938e-2 9.127637685867248e-3,2.038714938215219e-2 2.0387149382152178e-2 2.038714938215219e-2c 1.1259511696284938e-2,2.0683387438226297e-18 2.038714938215219e-2,-9.127637685867246e-3 2.038714938215219e-2 -2.0387149382152178e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.16590229650718036,0.5028062477165303 c 0.0,-2.507506931169679e-2 -2.0327359995611034e-2,-4.5402429307307826e-2 -4.540242930730782e-2 -4.5402429307307826e-2c -2.507506931169679e-2,-1.5354051685483748e-18 -4.5402429307307826e-2,2.032735999561103e-2 -4.5402429307307826e-2 4.540242930730781e-2c -3.0708103370967496e-18,2.507506931169679e-2 2.0327359995611027e-2,4.5402429307307826e-2 4.5402429307307805e-2 4.5402429307307826e-2c 2.507506931169679e-2,4.6062155056451244e-18 4.5402429307307826e-2,-2.0327359995611027e-2 4.5402429307307826e-2 -4.54024293073078e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.5594883355615764,0.3705124246495106 c 0.0,-6.9659434565984505e-3 -5.647012919134619e-3,-1.2612956375733071e-2 -1.2612956375733068e-2 -1.2612956375733071e-2c -6.9659434565984505e-3,-4.265410178582371e-19 -1.2612956375733071e-2,5.647012919134619e-3 -1.2612956375733071e-2 1.2612956375733068e-2c -8.530820357164742e-19,6.9659434565984505e-3 5.647012919134618e-3,1.2612956375733071e-2 1.2612956375733066e-2 1.2612956375733071e-2c 6.9659434565984505e-3,1.2796230535747113e-18 1.2612956375733071e-2,-5.647012919134617e-3 1.2612956375733071e-2 -1.2612956375733064e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.6338241099386142,0.3325453439947185 c 0.0,-9.208731836905449e-3 -7.465152132780077e-3,-1.6673883969685527e-2 -1.6673883969685523e-2 -1.6673883969685527e-2c -9.208731836905449e-3,-5.638721984136291e-19 -1.6673883969685527e-2,7.465152132780075e-3 -1.6673883969685527e-2 1.667388396968552e-2c -1.1277443968272582e-18,9.208731836905449e-3 7.465152132780074e-3,1.6673883969685527e-2 1.667388396968552e-2 1.6673883969685527e-2c 9.208731836905449e-3,1.6916165952408875e-18 1.6673883969685527e-2,-7.4651521327800735e-3 1.6673883969685527e-2 -1.6673883969685516e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.6269100474916388,0.4761340894483499 c 0.0,-6.864432724199211e-3 -5.564722211370356e-3,-1.242915493556957e-2 -1.2429154935569566e-2 -1.242915493556957e-2c -6.864432724199211e-3,-4.203252781826455e-19 -1.242915493556957e-2,5.5647222113703555e-3 -1.242915493556957e-2 1.2429154935569566e-2c -8.40650556365291e-19,6.864432724199211e-3 5.5647222113703555e-3,1.242915493556957e-2 1.2429154935569564e-2 1.242915493556957e-2c 6.864432724199211e-3,1.2609758345479365e-18 1.242915493556957e-2,-5.564722211370355e-3 1.242915493556957e-2 -1.2429154935569562e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.6160418131173796,0.4431421505353047 c 0.0,-1.1414312473300709e-2 -9.253128510354505e-3,-2.0667440983655215e-2 -2.066744098365521e-2 -2.0667440983655215e-2c -1.1414312473300709e-2,-6.98925061744771e-19 -2.0667440983655215e-2,9.253128510354503e-3 -2.0667440983655215e-2 2.0667440983655208e-2c -1.397850123489542e-18,1.1414312473300709e-2 9.253128510354503e-3,2.0667440983655215e-2 2.0667440983655205e-2 2.0667440983655215e-2c 1.1414312473300709e-2,2.096775185234313e-18 2.0667440983655215e-2,-9.253128510354501e-3 2.0667440983655215e-2 -2.0667440983655205e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.583172093557966,0.3832327015572947 c 0.0,-2.2433228576788464e-2 -1.818572493163532e-2,-4.061895350842379e-2 -4.061895350842378e-2 -4.061895350842379e-2c -2.2433228576788464e-2,-1.3736390785552462e-18 -4.061895350842379e-2,1.818572493163532e-2 -4.061895350842379e-2 4.0618953508423775e-2c -2.7472781571104923e-18,2.2433228576788464e-2 1.8185724931635318e-2,4.061895350842379e-2 4.061895350842377e-2 4.061895350842379e-2c 2.2433228576788464e-2,4.1209172356657385e-18 4.061895350842379e-2,-1.8185724931635314e-2 4.061895350842379e-2 -4.061895350842377e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4544439198409923,0.32802680884417307 c 0.0,-5.813876707686453e-3 -4.713078290559799e-3,-1.0526954998246253e-2 -1.0526954998246251e-2 -1.0526954998246253e-2c -5.813876707686453e-3,-3.559972750352783e-19 -1.0526954998246253e-2,4.713078290559798e-3 -1.0526954998246253e-2 1.052695499824625e-2c -7.119945500705566e-19,5.813876707686453e-3 4.713078290559798e-3,1.0526954998246253e-2 1.0526954998246248e-2 1.0526954998246253e-2c 5.813876707686453e-3,1.067991825105835e-18 1.0526954998246253e-2,-4.7130782905597975e-3 1.0526954998246253e-2 -1.0526954998246248e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4242819535542838,0.26788822122623746 c 0.0,-6.488985095235322e-3 -5.260361771980164e-3,-1.1749346867215488e-2 -1.1749346867215484e-2 -1.1749346867215488e-2c -6.488985095235322e-3,-3.9733574132974103e-19 -1.1749346867215488e-2,5.260361771980164e-3 -1.1749346867215488e-2 1.1749346867215484e-2c -7.946714826594821e-19,6.488985095235322e-3 5.260361771980163e-3,1.1749346867215488e-2 1.1749346867215483e-2 1.1749346867215488e-2c 6.488985095235322e-3,1.192007223989223e-18 1.1749346867215488e-2,-5.260361771980162e-3 1.1749346867215488e-2 -1.174934686721548e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.3795509124773876,0.3304809129937424 c 0.0,-7.511792097850837e-3 -6.08951067241806e-3,-1.3601302770268898e-2 -1.3601302770268895e-2 -1.3601302770268898e-2c -7.511792097850837e-3,-4.599646074246704e-19 -1.3601302770268898e-2,6.08951067241806e-3 -1.3601302770268898e-2 1.3601302770268893e-2c -9.199292148493409e-19,7.511792097850837e-3 6.089510672418059e-3,1.3601302770268898e-2 1.3601302770268893e-2 1.3601302770268898e-2c 7.511792097850837e-3,1.3798938222740112e-18 1.3601302770268898e-2,-6.089510672418058e-3 1.3601302770268898e-2 -1.3601302770268891e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4007565336306485,0.3085842791250906 c 0.0,-1.6221981418521395e-2 -1.3150514243347617e-2,-2.9372495661869013e-2 -2.9372495661869006e-2 -2.9372495661869013e-2c -1.6221981418521395e-2,-9.933098810010033e-19 -2.9372495661869013e-2,1.3150514243347615e-2 -2.9372495661869013e-2 2.9372495661869003e-2c -1.9866197620020066e-18,1.6221981418521395e-2 1.3150514243347613e-2,2.9372495661869013e-2 2.9372495661869e-2 2.9372495661869013e-2c 1.6221981418521395e-2,2.9799296430030098e-18 2.9372495661869013e-2,-1.3150514243347611e-2 2.9372495661869013e-2 -2.9372495661868996e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.6325194371713578,0.16769214286857395 c 0.0,-6.254732140366953e-3 -5.070462231346641e-3,-1.1325194371713596e-2 -1.1325194371713594e-2 -1.1325194371713596e-2c -6.254732140366953e-3,-3.829918847612231e-19 -1.1325194371713596e-2,5.070462231346641e-3 -1.1325194371713596e-2 1.1325194371713592e-2c -7.659837695224462e-19,6.254732140366953e-3 5.07046223134664e-3,1.1325194371713596e-2 1.132519437171359e-2 1.1325194371713596e-2c 6.254732140366953e-3,1.1489756542836694e-18 1.1325194371713596e-2,-5.070462231346639e-3 1.1325194371713596e-2 -1.1325194371713589e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.6033933248593889,0.1381563670954732 c 0.0,-1.2695568883019497e-2 -1.0291792051551134e-2,-2.2987360934570635e-2 -2.298736093457063e-2 -2.2987360934570635e-2c -1.2695568883019497e-2,-7.773793897972283e-19 -2.2987360934570635e-2,1.0291792051551134e-2 -2.2987360934570635e-2 2.2987360934570628e-2c -1.5547587795944565e-18,1.2695568883019497e-2 1.0291792051551132e-2,2.2987360934570635e-2 2.2987360934570624e-2 2.2987360934570635e-2c 1.2695568883019497e-2,2.3321381693916847e-18 2.2987360934570635e-2,-1.029179205155113e-2 2.2987360934570635e-2 -2.298736093457062e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.48245610652985516,0.13378726545490408 c 0.0,-1.0434529327203406e-2 -8.458857336832291e-3,-1.88933866640357e-2 -1.8893386664035696e-2 -1.88933866640357e-2c -1.0434529327203406e-2,-6.389306470584418e-19 -1.88933866640357e-2,8.458857336832291e-3 -1.88933866640357e-2 1.8893386664035693e-2c -1.2778612941168836e-18,1.0434529327203406e-2 8.45885733683229e-3,1.88933866640357e-2 1.8893386664035693e-2 1.88933866640357e-2c 1.0434529327203406e-2,1.9167919411753254e-18 1.88933866640357e-2,-8.458857336832288e-3 1.88933866640357e-2 -1.889338666403569e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.5782470564534029,-3.910612761102341e-3 c 0.0,-7.975438470926221e-3 -6.465370320860442e-3,-1.4440808791786665e-2 -1.4440808791786662e-2 -1.4440808791786665e-2c -7.975438470926221e-3,-4.883547597608229e-19 -1.4440808791786665e-2,6.465370320860441e-3 -1.4440808791786665e-2 1.444080879178666e-2c -9.767095195216457e-19,7.975438470926221e-3 6.465370320860441e-3,1.4440808791786665e-2 1.4440808791786658e-2 1.4440808791786665e-2c 7.975438470926221e-3,1.4650642792824686e-18 1.4440808791786665e-2,-6.4653703208604404e-3 1.4440808791786665e-2 -1.4440808791786656e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4998990889153362,1.0171832616414063e-2 c 0.0,-7.019860400563288e-3 -5.6907212381909975e-3,-1.2710581638754288e-2 -1.2710581638754284e-2 -1.2710581638754288e-2c -7.019860400563288e-3,-4.298424785005544e-19 -1.2710581638754288e-2,5.6907212381909975e-3 -1.2710581638754288e-2 1.2710581638754284e-2c -8.596849570011088e-19,7.019860400563288e-3 5.690721238190997e-3,1.2710581638754288e-2 1.2710581638754282e-2 1.2710581638754288e-2c 7.019860400563288e-3,1.2895274355016631e-18 1.2710581638754288e-2,-5.690721238190996e-3 1.2710581638754288e-2 -1.271058163875428e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4338609114507997,-0.25166445664821363 c 0.0,-6.556234828695285e-3 -5.314878452458965e-3,-1.1871113281154252e-2 -1.1871113281154248e-2 -1.1871113281154252e-2c -6.556234828695285e-3,-4.0145359987100386e-19 -1.1871113281154252e-2,5.314878452458964e-3 -1.1871113281154252e-2 1.1871113281154248e-2c -8.029071997420077e-19,6.556234828695285e-3 5.314878452458964e-3,1.1871113281154252e-2 1.1871113281154247e-2 1.1871113281154252e-2c 6.556234828695285e-3,1.2043607996130116e-18 1.1871113281154252e-2,-5.314878452458963e-3 1.1871113281154252e-2 -1.1871113281154245e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.44590199195620817,-0.22968246473711668 c 0.0,-8.078462551422439e-3 -6.548887839652965e-3,-1.4627350391075405e-2 -1.4627350391075402e-2 -1.4627350391075405e-2c -8.078462551422439e-3,-4.946631652815625e-19 -1.4627350391075405e-2,6.548887839652964e-3 -1.4627350391075405e-2 1.46273503910754e-2c -9.89326330563125e-19,8.078462551422439e-3 6.548887839652963e-3,1.4627350391075405e-2 1.4627350391075399e-2 1.4627350391075405e-2c 8.078462551422439e-3,1.4839894958446876e-18 1.4627350391075405e-2,-6.548887839652962e-3 1.4627350391075405e-2 -1.4627350391075397e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4592716525275904,-0.2014254803971274 c 0.0,-1.0188290473768707e-2 -8.259241305608053e-3,-1.8447531779376764e-2 -1.844753177937676e-2 -1.8447531779376764e-2c -1.0188290473768707e-2,-6.238528658742159e-19 -1.8447531779376764e-2,8.259241305608053e-3 -1.8447531779376764e-2 1.8447531779376757e-2c -1.2477057317484318e-18,1.0188290473768707e-2 8.259241305608052e-3,1.8447531779376764e-2 1.8447531779376757e-2 1.8447531779376764e-2c 1.0188290473768707e-2,1.871558597622648e-18 1.8447531779376764e-2,-8.259241305608052e-3 1.8447531779376764e-2 -1.8447531779376754e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4736732692736274,-0.16399483070824292 c 0.0,-1.3223235195189757e-2 -1.0719550114817502e-2,-2.394278531000726e-2 -2.3942785310007254e-2 -2.394278531000726e-2c -1.3223235195189757e-2,-8.09689632808088e-19 -2.394278531000726e-2,1.07195501148175e-2 -2.394278531000726e-2 2.3942785310007254e-2c -1.619379265616176e-18,1.3223235195189757e-2 1.0719550114817499e-2,2.394278531000726e-2 2.394278531000725e-2 2.394278531000726e-2c 1.3223235195189757e-2,2.4290688984242643e-18 2.394278531000726e-2,-1.0719550114817497e-2 2.394278531000726e-2 -2.3942785310007247e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4879596157477828,-0.11256643029635213 c 0.0,-1.7792446605201906e-2 -1.4423627821356267e-2,-3.2216074426558175e-2 -3.221607442655817e-2 -3.2216074426558175e-2c -1.7792446605201906e-2,-1.089473139203035e-18 -3.2216074426558175e-2,1.4423627821356266e-2 -3.2216074426558175e-2 3.221607442655816e-2c -2.17894627840607e-18,1.7792446605201906e-2 1.4423627821356264e-2,3.2216074426558175e-2 3.221607442655816e-2 3.2216074426558175e-2c 1.7792446605201906e-2,3.2684194176091052e-18 3.2216074426558175e-2,-1.4423627821356262e-2 3.2216074426558175e-2 -3.2216074426558154e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4986244491419339,-3.87109388050273e-2 c 0.0,-2.5069320639512165e-2 -2.032269977603034e-2,-4.539202041554251e-2 -4.53920204155425e-2 -4.539202041554251e-2c -2.5069320639512165e-2,-1.5350531638988624e-18 -4.539202041554251e-2,2.0322699776030337e-2 -4.539202041554251e-2 4.5392020415542494e-2c -3.0701063277977248e-18,2.5069320639512165e-2 2.0322699776030333e-2,4.539202041554251e-2 4.539202041554249e-2 4.539202041554251e-2c 2.5069320639512165e-2,4.605159491696587e-18 4.539202041554251e-2,-2.0322699776030333e-2 4.539202041554251e-2 -4.539202041554248e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.4952996101806683,7.29125889716095e-2 c 0.0,-3.7478781560135274e-2 -3.038255549763765e-2,-6.786133705777293e-2 -6.786133705777292e-2 -6.786133705777293e-2c -3.7478781560135274e-2,-2.2949134936781257e-18 -6.786133705777293e-2,3.0382555497637645e-2 -6.786133705777293e-2 6.78613370577729e-2c -4.589826987356251e-18,3.7478781560135274e-2 3.038255549763764e-2,6.786133705777293e-2 6.78613370577729e-2 6.786133705777293e-2c 3.7478781560135274e-2,6.884740481034377e-18 6.786133705777293e-2,-3.0382555497637638e-2 6.786133705777293e-2 -6.786133705777289e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.44642290554331865,0.24981615247712638 c 0.0,-6.0310954341014446e-2 -4.889168860629171e-2,-0.10920264294730617 -0.10920264294730614 -0.10920264294730617c -6.0310954341014446e-2,-3.692980859362276e-18 -0.10920264294730617,4.88916886062917e-2 -0.10920264294730617 0.10920264294730612c -7.385961718724551e-18,6.0310954341014446e-2 4.889168860629169e-2,0.10920264294730617 0.10920264294730612 0.10920264294730617c 6.0310954341014446e-2,1.1078942578086825e-17 0.10920264294730617,-4.8891688606291686e-2 0.10920264294730617 -0.10920264294730611Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -0.2555191835282655,0.5263695662493916 c 0.0,-0.10431543081681856 -8.456436506524816e-2,-0.18887979588206674 -0.1888797958820667 -0.18887979588206674c -0.10431543081681856,-6.387477922574701e-18 -0.18887979588206674,8.456436506524814e-2 -0.18887979588206674 0.1888797958820667c -1.2774955845149402e-17,0.10431543081681856 8.456436506524814e-2,0.18887979588206674 0.18887979588206666 0.18887979588206674c 0.10431543081681856,1.91624337677241e-17 0.18887979588206674,-8.456436506524813e-2 0.18887979588206674 -0.18887979588206663Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.28817057139413627,0.8172092064639943 c 0.0,-0.17548524447658514 -0.14225889843221237,-0.31774414290879754 -0.3177441429087975 -0.31774414290879754c -0.17548524447658514,-1.0745372147292036e-17 -0.31774414290879754,0.14225889843221234 -0.31774414290879754 0.31774414290879743c -2.149074429458407e-17,0.17548524447658514 0.14225889843221234,0.31774414290879754 0.3177441429087974 0.31774414290879754c 0.17548524447658514,3.223611644187611e-17 0.31774414290879754,-0.14225889843221232 0.31774414290879754 -0.3177441429087974Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.9686107515590052,0.4053190800337798 c 0.0,-9.243091846170892e-3 -7.4930064237935575e-3,-1.673609826996445e-2 -1.6736098269964448e-2 -1.673609826996445e-2c -9.243091846170892e-3,-5.659761421819091e-19 -1.673609826996445e-2,7.493006423793557e-3 -1.673609826996445e-2 1.6736098269964444e-2c -1.1319522843638182e-18,9.243091846170892e-3 7.493006423793556e-3,1.673609826996445e-2 1.6736098269964444e-2 1.673609826996445e-2c 9.243091846170892e-3,1.6979284265457274e-18 1.673609826996445e-2,-7.493006423793555e-3 1.673609826996445e-2 -1.673609826996444e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0829254099296135,0.34923433552622174 c 0.0,-5.818207485415463e-3 -4.716589079577539e-3,-1.0534796564993003e-2 -1.0534796564993001e-2 -1.0534796564993003e-2c -5.818207485415463e-3,-3.5626245868946083e-19 -1.0534796564993003e-2,4.716589079577538e-3 -1.0534796564993003e-2 1.0534796564993e-2c -7.1252491737892165e-19,5.818207485415463e-3 4.7165890795775375e-3,1.0534796564993003e-2 1.0534796564992998e-2 1.0534796564993003e-2c 5.818207485415463e-3,1.0687873760683825e-18 1.0534796564993003e-2,-4.7165890795775375e-3 1.0534796564993003e-2 -1.0534796564992998e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0811842826306968,0.378148675791227 c 0.0,-1.1463543433510115e-2 -9.293038089014747e-3,-2.0756581522524863e-2 -2.075658152252486e-2 -2.0756581522524863e-2c -1.1463543433510115e-2,-7.01939588636741e-19 -2.0756581522524863e-2,9.293038089014745e-3 -2.0756581522524863e-2 2.0756581522524856e-2c -1.403879177273482e-18,1.1463543433510115e-2 9.293038089014745e-3,2.0756581522524863e-2 2.0756581522524853e-2 2.0756581522524863e-2c 1.1463543433510115e-2,2.105818765910223e-18 2.0756581522524863e-2,-9.293038089014743e-3 2.0756581522524863e-2 -2.0756581522524853e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.9971968222929488,0.5032842910057332 c 0.0,-5.566099107095804e-3 -4.512214858301792e-3,-1.0078313965397597e-2 -1.0078313965397595e-2 -1.0078313965397597e-2c -5.566099107095804e-3,-3.4082527276209084e-19 -1.0078313965397597e-2,4.512214858301791e-3 -1.0078313965397597e-2 1.0078313965397594e-2c -6.816505455241817e-19,5.566099107095804e-3 4.512214858301791e-3,1.0078313965397597e-2 1.0078313965397592e-2 1.0078313965397597e-2c 5.566099107095804e-3,1.0224758182862725e-18 1.0078313965397597e-2,-4.51221485830179e-3 1.0078313965397597e-2 -1.0078313965397592e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0628488043444573,0.5012855039923835 c 0.0,-6.301070495269041e-3 -5.108026890091562e-3,-1.1409097385360605e-2 -1.1409097385360603e-2 -1.1409097385360605e-2c -6.301070495269041e-3,-3.8582929066165295e-19 -1.1409097385360605e-2,5.108026890091561e-3 -1.1409097385360605e-2 1.1409097385360601e-2c -7.716585813233059e-19,6.301070495269041e-3 5.108026890091561e-3,1.1409097385360605e-2 1.14090973853606e-2 1.1409097385360605e-2c 6.301070495269041e-3,1.1574878719849587e-18 1.1409097385360605e-2,-5.10802689009156e-3 1.1409097385360605e-2 -1.1409097385360598e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0116278925237379,0.6579303401576444 c 0.0,-6.727721014974476e-3 -5.45389547368592e-3,-1.2181616488660398e-2 -1.2181616488660394e-2 -1.2181616488660398e-2c -6.727721014974476e-3,-4.119541003272437e-19 -1.2181616488660398e-2,5.45389547368592e-3 -1.2181616488660398e-2 1.2181616488660394e-2c -8.239082006544874e-19,6.727721014974476e-3 5.453895473685919e-3,1.2181616488660398e-2 1.2181616488660393e-2 1.2181616488660398e-2c 6.727721014974476e-3,1.2358623009817311e-18 1.2181616488660398e-2,-5.453895473685918e-3 1.2181616488660398e-2 -1.2181616488660391e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0228092368594435,0.6302897282701405 c 0.0,-9.023111518379538e-3 -7.314677133478037e-3,-1.6337788651857577e-2 -1.6337788651857574e-2 -1.6337788651857577e-2c -9.023111518379538e-3,-5.525062319666558e-19 -1.6337788651857577e-2,7.314677133478036e-3 -1.6337788651857577e-2 1.633778865185757e-2c -1.1050124639333115e-18,9.023111518379538e-3 7.314677133478035e-3,1.6337788651857577e-2 1.633778865185757e-2 1.6337788651857577e-2c 9.023111518379538e-3,1.6575186958999672e-18 1.6337788651857577e-2,-7.3146771334780345e-3 1.6337788651857577e-2 -1.6337788651857567e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0367456545590608,0.5916262685258882 c 0.0,-1.270441883789639e-2 -1.029896635749188e-2,-2.3003385195388273e-2 -2.300338519538827e-2 -2.3003385195388273e-2c -1.270441883789639e-2,-7.779212932428575e-19 -2.3003385195388273e-2,1.029896635749188e-2 -2.3003385195388273e-2 2.3003385195388266e-2c -1.555842586485715e-18,1.270441883789639e-2 1.0298966357491878e-2,2.3003385195388273e-2 2.3003385195388262e-2 2.3003385195388273e-2c 1.270441883789639e-2,2.3337638797285724e-18 2.3003385195388273e-2,-1.0298966357491876e-2 2.3003385195388273e-2 -2.300338519538826e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0539568218247939,0.5342725722272722 c 0.0,-1.9121369047410453e-2 -1.5500932316639108e-2,-3.462230136404956e-2 -3.4622301364049556e-2 -3.462230136404956e-2c -1.9121369047410453e-2,-1.1708461699613241e-18 -3.462230136404956e-2,1.5500932316639106e-2 -3.462230136404956e-2 3.462230136404955e-2c -2.3416923399226482e-18,1.9121369047410453e-2 1.5500932316639104e-2,3.462230136404956e-2 3.462230136404955e-2 3.462230136404956e-2c 1.9121369047410453e-2,3.512538509883973e-18 3.462230136404956e-2,-1.55009323166391e-2 3.462230136404956e-2 -3.462230136404954e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.073343250465111,0.44237610026873025 c 0.0,-3.1664873365029746e-2 -2.566945168148129e-2,-5.7334325046511043e-2 -5.733432504651103e-2 -5.7334325046511043e-2c -3.1664873365029746e-2,-1.938914290594498e-18 -5.7334325046511043e-2,2.5669451681481287e-2 -5.7334325046511043e-2 5.733432504651102e-2c -3.877828581188996e-18,3.1664873365029746e-2 2.5669451681481284e-2,5.7334325046511043e-2 5.7334325046511016e-2 5.7334325046511043e-2c 3.1664873365029746e-2,5.816742871783493e-18 5.7334325046511043e-2,-2.566945168148128e-2 5.7334325046511043e-2 -5.733432504651101e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8666357076385497,0.3042690285240695 c 0.0,-6.462360959750816e-3 -5.2387786457348045e-3,-1.1701139605485621e-2 -1.170113960548562e-2 -1.1701139605485621e-2c -6.462360959750816e-3,-3.9570548321468266e-19 -1.1701139605485621e-2,5.238778645734804e-3 -1.1701139605485621e-2 1.1701139605485618e-2c -7.914109664293653e-19,6.462360959750816e-3 5.238778645734803e-3,1.1701139605485621e-2 1.1701139605485616e-2 1.1701139605485621e-2c 6.462360959750816e-3,1.187116449644048e-18 1.1701139605485621e-2,-5.238778645734802e-3 1.1701139605485621e-2 -1.1701139605485614e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8732126958493431,0.2359573998884658 c 0.0,-6.183590410824911e-3 -5.012790464655375e-3,-1.1196380875480288e-2 -1.1196380875480286e-2 -1.1196380875480288e-2c -6.183590410824911e-3,-3.7863571019274967e-19 -1.1196380875480288e-2,5.012790464655375e-3 -1.1196380875480288e-2 1.1196380875480284e-2c -7.572714203854993e-19,6.183590410824911e-3 5.0127904646553745e-3,1.1196380875480288e-2 1.1196380875480283e-2 1.1196380875480288e-2c 6.183590410824911e-3,1.135907130578249e-18 1.1196380875480288e-2,-5.012790464655374e-3 1.1196380875480288e-2 -1.119638087548028e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8046739735222452,0.2611765986743179 c 0.0,-7.88750574593845e-3 -6.394086762916787e-3,-1.4281592508855238e-2 -1.4281592508855235e-2 -1.4281592508855238e-2c -7.88750574593845e-3,-4.829704332509939e-19 -1.4281592508855238e-2,6.394086762916787e-3 -1.4281592508855238e-2 1.4281592508855233e-2c -9.659408665019879e-19,7.88750574593845e-3 6.394086762916786e-3,1.4281592508855238e-2 1.4281592508855231e-2 1.4281592508855238e-2c 7.88750574593845e-3,1.4489112997529817e-18 1.4281592508855238e-2,-6.3940867629167855e-3 1.4281592508855238e-2 -1.428159250885523e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8650971322643312,0.2673361856211516 c 0.0,-1.6803131529712176e-2 -1.3621629492315398e-2,-3.042476102202758e-2 -3.0424761022027572e-2 -3.042476102202758e-2c -1.6803131529712176e-2,-1.0288950621756994e-18 -3.042476102202758e-2,1.3621629492315396e-2 -3.042476102202758e-2 3.042476102202757e-2c -2.0577901243513987e-18,1.6803131529712176e-2 1.3621629492315395e-2,3.042476102202758e-2 3.0424761022027565e-2 3.042476102202758e-2c 1.6803131529712176e-2,3.0866851865270977e-18 3.042476102202758e-2,-1.3621629492315393e-2 3.042476102202758e-2 -3.0424761022027562e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0738827000517162,0.18321572281246123 c 0.0,-1.0115319045647301e-2 -8.200086275152136e-3,-1.831540532079944e-2 -1.8315405320799436e-2 -1.831540532079944e-2c -1.0115319045647301e-2,-6.193846545803114e-19 -1.831540532079944e-2,8.200086275152134e-3 -1.831540532079944e-2 1.8315405320799432e-2c -1.2387693091606227e-18,1.0115319045647301e-2 8.200086275152134e-3,1.831540532079944e-2 1.8315405320799432e-2 1.831540532079944e-2c 1.0115319045647301e-2,1.858153963740934e-18 1.831540532079944e-2,-8.200086275152133e-3 1.831540532079944e-2 -1.831540532079943e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.9760187478749677,0.15814915905163418 c 0.0,-7.886936852546817e-3 -6.393625583702202e-3,-1.428056243624902e-2 -1.4280562436249016e-2 -1.428056243624902e-2c -7.886936852546817e-3,-4.829355985774379e-19 -1.428056243624902e-2,6.393625583702201e-3 -1.428056243624902e-2 1.4280562436249014e-2c -9.658711971548758e-19,7.886936852546817e-3 6.3936255837022e-3,1.428056243624902e-2 1.4280562436249013e-2 1.428056243624902e-2c 7.886936852546817e-3,1.4488067957323139e-18 1.428056243624902e-2,-6.393625583702199e-3 1.428056243624902e-2 -1.4280562436249011e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0215673318061875,-9.266662252995064e-3 c 0.0,-6.001118403468635e-3 -4.864867675826928e-3,-1.0865986079295564e-2 -1.0865986079295563e-2 -1.0865986079295564e-2c -6.001118403468635e-3,-3.674625222056069e-19 -1.0865986079295564e-2,4.8648676758269276e-3 -1.0865986079295564e-2 1.086598607929556e-2c -7.349250444112138e-19,6.001118403468635e-3 4.864867675826927e-3,1.0865986079295564e-2 1.0865986079295559e-2 1.0865986079295564e-2c 6.001118403468635e-3,1.1023875666168207e-18 1.0865986079295564e-2,-4.864867675826927e-3 1.0865986079295564e-2 -1.0865986079295559e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0313276243604805,1.712630830627881e-2 c 0.0,-8.803324322943527e-3 -7.136504407870876e-3,-1.5939828730814405e-2 -1.59398287308144e-2 -1.5939828730814405e-2c -8.803324322943527e-3,-5.390481476974415e-19 -1.5939828730814405e-2,7.136504407870875e-3 -1.5939828730814405e-2 1.5939828730814398e-2c -1.078096295394883e-18,8.803324322943527e-3 7.136504407870874e-3,1.5939828730814405e-2 1.5939828730814398e-2 1.5939828730814405e-2c 8.803324322943527e-3,1.6171444430923247e-18 1.5939828730814405e-2,-7.1365044078708735e-3 1.5939828730814405e-2 -1.5939828730814395e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.044811315633278,5.842177743375764e-2 c 0.0,-1.4104264741852035e-2 -1.1433765678457842e-2,-2.553803042030988e-2 -2.5538030420309873e-2 -2.553803042030988e-2c -1.4104264741852035e-2,-8.636371335217982e-19 -2.553803042030988e-2,1.143376567845784e-2 -2.553803042030988e-2 2.5538030420309873e-2c -1.7272742670435965e-18,1.4104264741852035e-2 1.1433765678457839e-2,2.553803042030988e-2 2.553803042030987e-2 2.553803042030988e-2c 1.4104264741852035e-2,2.590911400565395e-18 2.553803042030988e-2,-1.1433765678457839e-2 2.553803042030988e-2 -2.5538030420309867e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0635291667513684,0.13087009548699335 c 0.0,-2.5935713740136233e-2 -2.10250501558111e-2,-4.696076389594734e-2 -4.6960763895947326e-2 -4.696076389594734e-2c -2.5935713740136233e-2,-1.5881044407729932e-18 -4.696076389594734e-2,2.1025050155811097e-2 -4.696076389594734e-2 4.6960763895947326e-2c -3.1762088815459865e-18,2.5935713740136233e-2 2.1025050155811097e-2,4.696076389594734e-2 4.696076389594732e-2 4.696076389594734e-2c 2.5935713740136233e-2,4.76431332231898e-18 4.696076389594734e-2,-2.1025050155811093e-2 4.696076389594734e-2 -4.696076389594731e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0830572575138904,0.2811694778859956 c 0.0,-6.037755592557886e-2 -4.8945679858275505e-2,-0.10932323578385438 -0.10932323578385435 -0.10932323578385438c -6.037755592557886e-2,-3.697059030230023e-18 -0.10932323578385438,4.89456798582755e-2 -0.10932323578385438 0.10932323578385433c -7.394118060460046e-18,6.037755592557886e-2 4.894567985827549e-2,0.10932323578385438 0.10932323578385433 0.10932323578385438c 6.037755592557886e-2,1.109117709069007e-17 0.10932323578385438,-4.8945679858275484e-2 0.10932323578385438 -0.10932323578385432Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.4473789119677711,0.2734559629808798 c 0.0,-7.265456109925964e-3 -5.889815898131331e-3,-1.3155272008057297e-2 -1.3155272008057294e-2 -1.3155272008057297e-2c -7.265456109925964e-3,-4.448808784683206e-19 -1.3155272008057297e-2,5.889815898131331e-3 -1.3155272008057297e-2 1.3155272008057292e-2c -8.897617569366412e-19,7.265456109925964e-3 5.88981589813133e-3,1.3155272008057297e-2 1.3155272008057292e-2 1.3155272008057297e-2c 7.265456109925964e-3,1.3346426354049617e-18 1.3155272008057297e-2,-5.889815898131329e-3 1.3155272008057297e-2 -1.315527200805729e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.4843426984104453,0.2482913651055037 c 0.0,-1.2970933337118939e-2 -1.0515019047213445e-2,-2.3485952384332386e-2 -2.348595238433238e-2 -2.3485952384332386e-2c -1.2970933337118939e-2,-7.942405996628202e-19 -2.3485952384332386e-2,1.0515019047213444e-2 -2.3485952384332386e-2 2.348595238433238e-2c -1.5884811993256404e-18,1.2970933337118939e-2 1.0515019047213442e-2,2.3485952384332386e-2 2.3485952384332376e-2 2.3485952384332386e-2c 1.2970933337118939e-2,2.3827217989884608e-18 2.3485952384332386e-2,-1.051501904721344e-2 2.3485952384332386e-2 -2.3485952384332372e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.630413304243916,0.22590623538416194 c 0.0,-6.002106592413176e-3 -4.865668761246461e-3,-1.0867775353659638e-2 -1.0867775353659636e-2 -1.0867775353659638e-2c -6.002106592413176e-3,-3.6752303132700113e-19 -1.0867775353659638e-2,4.86566876124646e-3 -1.0867775353659638e-2 1.0867775353659634e-2c -7.350460626540023e-19,6.002106592413176e-3 4.865668761246459e-3,1.0867775353659638e-2 1.0867775353659632e-2 1.0867775353659638e-2c 6.002106592413176e-3,1.1025690939810034e-18 1.0867775353659638e-2,-4.865668761246459e-3 1.0867775353659638e-2 -1.0867775353659632e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6097876128322353,0.21762463431098977 c 0.0,-1.1368879553919551e-2 -9.216297852124517e-3,-2.058517740604407e-2 -2.0585177406044066e-2 -2.058517740604407e-2c -1.1368879553919551e-2,-6.961430977799683e-19 -2.058517740604407e-2,9.216297852124515e-3 -2.058517740604407e-2 2.0585177406044063e-2c -1.3922861955599365e-18,1.1368879553919551e-2 9.216297852124515e-3,2.058517740604407e-2 2.058517740604406e-2 2.058517740604407e-2c 1.1368879553919551e-2,2.088429293339905e-18 2.058517740604407e-2,-9.216297852124513e-3 2.058517740604407e-2 -2.058517740604406e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5154518925895232,8.857384934087843e-2 c 0.0,-6.400383474912798e-3 -5.188535967229536e-3,-1.1588919442142336e-2 -1.1588919442142335e-2 -1.1588919442142336e-2c -6.400383474912798e-3,-3.919104567933786e-19 -1.1588919442142336e-2,5.188535967229535e-3 -1.1588919442142336e-2 1.1588919442142333e-2c -7.838209135867572e-19,6.400383474912798e-3 5.188535967229535e-3,1.1588919442142336e-2 1.1588919442142331e-2 1.1588919442142336e-2c 6.400383474912798e-3,1.1757313703801358e-18 1.1588919442142336e-2,-5.1885359672295345e-3 1.1588919442142336e-2 -1.158891944214233e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5287161636738964,0.12153349688469099 c 0.0,-1.1894624453053494e-2 -9.642498302368803e-3,-2.15371227554223e-2 -2.1537122755422296e-2 -2.15371227554223e-2c -1.1894624453053494e-2,-7.283356881745899e-19 -2.15371227554223e-2,9.642498302368803e-3 -2.15371227554223e-2 2.1537122755422293e-2c -1.4566713763491798e-18,1.1894624453053494e-2 9.642498302368801e-3,2.15371227554223e-2 2.153712275542229e-2 2.15371227554223e-2c 1.1894624453053494e-2,2.1850070645237695e-18 2.15371227554223e-2,-9.6424983023688e-3 2.15371227554223e-2 -2.153712275542229e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5717865048559383,0.19613746089843434 c 0.0,-2.973494390669162e-2 -2.4104934735261967e-2,-5.3839878641953595e-2 -5.383987864195358e-2 -5.3839878641953595e-2c -2.973494390669162e-2,-1.8207401939077995e-18 -5.3839878641953595e-2,2.4104934735261964e-2 -5.3839878641953595e-2 5.3839878641953574e-2c -3.641480387815599e-18,2.973494390669162e-2 2.4104934735261964e-2,5.3839878641953595e-2 5.3839878641953574e-2 5.3839878641953595e-2c 2.973494390669162e-2,5.4622205817233976e-18 5.3839878641953595e-2,-2.410493473526196e-2 5.3839878641953595e-2 -5.383987864195357e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.9909670496684223,0.6049858236060313 c 0.0,-0.2033652106509653 -0.16486007660035099,-0.3682252872513163 -0.36822528725131626 -0.3682252872513163c -0.2033652106509653,-1.2452527714081593e-17 -0.3682252872513163,0.16486007660035096 -0.3682252872513163 0.3682252872513162c -2.4905055428163187e-17,0.2033652106509653 0.16486007660035093,0.3682252872513163 0.36822528725131615 0.3682252872513163c 0.2033652106509653,3.735758314224478e-17 0.3682252872513163,-0.16486007660035093 0.3682252872513163 -0.3682252872513161Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.3076052170471883,-0.5410495948291731 c 0.0,-9.961566053610328e-3 -8.07544484821578e-3,-1.803701090182611e-2 -1.8037010901826106e-2 -1.803701090182611e-2c -9.961566053610328e-3,-6.099699991024409e-19 -1.803701090182611e-2,8.07544484821578e-3 -1.803701090182611e-2 1.8037010901826103e-2c -1.2199399982048818e-18,9.961566053610328e-3 8.075444848215778e-3,1.803701090182611e-2 1.8037010901826103e-2 1.803701090182611e-2c 9.961566053610328e-3,1.8299099973073226e-18 1.803701090182611e-2,-8.075444848215778e-3 1.803701090182611e-2 -1.80370109018261e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2738996973151541,-0.4459144789218237 c 0.0,-8.513982893520464e-3 -6.901946834991756e-3,-1.5415929728512223e-2 -1.541592972851222e-2 -1.5415929728512223e-2c -8.513982893520464e-3,-5.213310949272579e-19 -1.5415929728512223e-2,6.901946834991755e-3 -1.5415929728512223e-2 1.5415929728512218e-2c -1.0426621898545157e-18,8.513982893520464e-3 6.9019468349917545e-3,1.5415929728512223e-2 1.5415929728512216e-2 1.5415929728512223e-2c 8.513982893520464e-3,1.5639932847817736e-18 1.5415929728512223e-2,-6.901946834991754e-3 1.5415929728512223e-2 -1.5415929728512214e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.18478687554836654,-0.5504232911347144 c 0.0,-6.528277559293247e-3 -5.292214607643014e-3,-1.1820492166936262e-2 -1.1820492166936258e-2 -1.1820492166936262e-2c -6.528277559293247e-3,-3.997417108466985e-19 -1.1820492166936262e-2,5.292214607643013e-3 -1.1820492166936262e-2 1.1820492166936258e-2c -7.99483421693397e-19,6.528277559293247e-3 5.292214607643012e-3,1.1820492166936262e-2 1.1820492166936257e-2 1.1820492166936262e-2c 6.528277559293247e-3,1.1992251325400955e-18 1.1820492166936262e-2,-5.292214607643011e-3 1.1820492166936262e-2 -1.1820492166936255e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.1738464866304503,-0.4838498813912311 c 0.0,-5.873791680578355e-3 -4.7616489727765315e-3,-1.0635440653354887e-2 -1.0635440653354885e-2 -1.0635440653354887e-2c -5.873791680578355e-3,-3.596660090239317e-19 -1.0635440653354887e-2,4.761648972776531e-3 -1.0635440653354887e-2 1.0635440653354884e-2c -7.193320180478634e-19,5.873791680578355e-3 4.761648972776531e-3,1.0635440653354887e-2 1.0635440653354882e-2 1.0635440653354887e-2c 5.873791680578355e-3,1.078998027071795e-18 1.0635440653354887e-2,-4.76164897277653e-3 1.0635440653354887e-2 -1.0635440653354882e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -6.0548781016948265e-2,-0.5057748745990867 c 0.0,-5.953510447921187e-3 -4.8262738024047475e-3,-1.0779784250325936e-2 -1.0779784250325934e-2 -1.0779784250325936e-2c -5.953510447921187e-3,-3.645473756868503e-19 -1.0779784250325936e-2,4.8262738024047475e-3 -1.0779784250325936e-2 1.0779784250325932e-2c -7.290947513737006e-19,5.953510447921187e-3 4.826273802404747e-3,1.0779784250325936e-2 1.077978425032593e-2 1.0779784250325936e-2c 5.953510447921187e-3,1.0936421270605509e-18 1.0779784250325936e-2,-4.826273802404746e-3 1.0779784250325936e-2 -1.077978425032593e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -3.480339338881612e-2,-0.5109053090501261 c 0.0,-7.263043237534475e-3 -5.887859878583964e-3,-1.315090311611844e-2 -1.3150903116118436e-2 -1.315090311611844e-2c -7.263043237534475e-3,-4.447331326457712e-19 -1.315090311611844e-2,5.887859878583963e-3 -1.315090311611844e-2 1.3150903116118435e-2c -8.894662652915424e-19,7.263043237534475e-3 5.887859878583962e-3,1.315090311611844e-2 1.3150903116118435e-2 1.315090311611844e-2c 7.263043237534475e-3,1.3341993979373134e-18 1.315090311611844e-2,-5.887859878583961e-3 1.315090311611844e-2 -1.3150903116118433e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M -2.482615284120908e-3,-0.5160404853187014 c 0.0,-9.049352787277623e-3 -7.3359498850306785e-3,-1.6385302672308304e-2 -1.63853026723083e-2 -1.6385302672308304e-2c -9.049352787277623e-3,-5.541130462647359e-19 -1.6385302672308304e-2,7.335949885030678e-3 -1.6385302672308304e-2 1.6385302672308297e-2c -1.1082260925294719e-18,9.049352787277623e-3 7.335949885030677e-3,1.6385302672308304e-2 1.6385302672308297e-2 1.6385302672308304e-2c 9.049352787277623e-3,1.662339138794208e-18 1.6385302672308304e-2,-7.335949885030676e-3 1.6385302672308304e-2 -1.6385302672308293e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 3.9131228691510395e-2,-0.5206311696823659 c 0.0,-1.1569581548497024e-2 -9.378998965525244e-3,-2.094858051402227e-2 -2.0948580514022267e-2 -2.094858051402227e-2c -1.1569581548497024e-2,-7.0843255054205795e-19 -2.094858051402227e-2,9.378998965525243e-3 -2.094858051402227e-2 2.0948580514022264e-2c -1.4168651010841159e-18,1.1569581548497024e-2 9.37899896552524e-3,2.094858051402227e-2 2.094858051402226e-2 2.094858051402227e-2c 1.1569581548497024e-2,2.1252976516261737e-18 2.094858051402227e-2,-9.37899896552524e-3 2.094858051402227e-2 -2.094858051402226e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 9.436485227573449e-2,-0.5234232541806119 c 0.0,-1.5274507232964073e-2 -1.2382434657326772e-2,-2.765694189029085e-2 -2.7656941890290842e-2 -2.765694189029085e-2c -1.5274507232964073e-2,-9.352938195701273e-19 -2.765694189029085e-2,1.238243465732677e-2 -2.765694189029085e-2 2.765694189029084e-2c -1.8705876391402547e-18,1.5274507232964073e-2 1.2382434657326769e-2,2.765694189029085e-2 2.7656941890290835e-2 2.765694189029085e-2c 1.5274507232964073e-2,2.805881458710382e-18 2.765694189029085e-2,-1.2382434657326767e-2 2.765694189029085e-2 -2.7656941890290835e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.17039842226136812,-0.5214941583162296 c 0.0,-2.1003914412140223e-2 -1.7027036865394248e-2,-3.8030951277534475e-2 -3.803095127753447e-2 -3.8030951277534475e-2c -2.1003914412140223e-2,-1.2861188277196242e-18 -3.8030951277534475e-2,1.7027036865394245e-2 -3.8030951277534475e-2 3.803095127753446e-2c -2.5722376554392484e-18,2.1003914412140223e-2 1.7027036865394245e-2,3.8030951277534475e-2 3.803095127753446e-2 3.8030951277534475e-2c 2.1003914412140223e-2,3.858356483158873e-18 3.8030951277534475e-2,-1.702703686539424e-2 3.8030951277534475e-2 -3.8030951277534454e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.2795801540130412,-0.5076932205801712 c 0.0,-3.0433629874662405e-2 -2.4671331622077314e-2,-5.510496149673973e-2 -5.510496149673971e-2 -5.510496149673973e-2c -3.0433629874662405e-2,-1.863522370622029e-18 -5.510496149673973e-2,2.467133162207731e-2 -5.510496149673973e-2 5.5104961496739706e-2c -3.727044741244058e-18,3.0433629874662405e-2 2.4671331622077308e-2,5.510496149673973e-2 5.51049614967397e-2 5.510496149673973e-2c 3.0433629874662405e-2,5.590567111866087e-18 5.510496149673973e-2,-2.4671331622077308e-2 5.510496149673973e-2 -5.51049614967397e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.450274459358806,-0.5194049763320321 c 0.0,-6.865664443305705e-3 -5.565720716992811e-3,-1.2431385160298517e-2 -1.2431385160298514e-2 -1.2431385160298517e-2c -6.865664443305705e-3,-4.204006992257063e-19 -1.2431385160298517e-2,5.56572071699281e-3 -1.2431385160298517e-2 1.2431385160298514e-2c -8.408013984514126e-19,6.865664443305705e-3 5.5657207169928094e-3,1.2431385160298517e-2 1.2431385160298512e-2 1.2431385160298517e-2c 6.865664443305705e-3,1.2612020976771188e-18 1.2431385160298517e-2,-5.565720716992809e-3 1.2431385160298517e-2 -1.243138516029851e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5301684731919074,-0.49127160057880365 c 0.0,-8.330793834784803e-3 -6.753442761168921e-3,-1.5084236595953726e-2 -1.5084236595953723e-2 -1.5084236595953726e-2c -8.330793834784803e-3,-5.101140002062857e-19 -1.5084236595953726e-2,6.7534427611689206e-3 -1.5084236595953726e-2 1.5084236595953721e-2c -1.0202280004125713e-18,8.330793834784803e-3 6.75344276116892e-3,1.5084236595953726e-2 1.508423659595372e-2 1.5084236595953726e-2c 8.330793834784803e-3,1.530342000618857e-18 1.5084236595953726e-2,-6.753442761168919e-3 1.5084236595953726e-2 -1.5084236595953718e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5,-0.49127160057880365 c 0.0,-1.6661587669569607e-2 -1.3506885522337843e-2,-3.0168473191907453e-2 -3.0168473191907446e-2 -3.0168473191907453e-2c -1.6661587669569607e-2,-1.0202280004125713e-18 -3.0168473191907453e-2,1.3506885522337841e-2 -3.0168473191907453e-2 3.0168473191907443e-2c -2.0404560008251427e-18,1.6661587669569607e-2 1.350688552233784e-2,3.0168473191907453e-2 3.016847319190744e-2 3.0168473191907453e-2c 1.6661587669569607e-2,3.060684001237714e-18 3.0168473191907453e-2,-1.3506885522337838e-2 3.0168473191907453e-2 -3.0168473191907436e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.4052113254764039,-0.32496869758018376 c 0.0,-6.040423776468084e-3 -4.896730976254531e-3,-1.0937154752722616e-2 -1.0937154752722614e-2 -1.0937154752722616e-2c -6.040423776468084e-3,-3.6986928216726027e-19 -1.0937154752722616e-2,4.8967309762545305e-3 -1.0937154752722616e-2 1.0937154752722613e-2c -7.397385643345205e-19,6.040423776468084e-3 4.89673097625453e-3,1.0937154752722616e-2 1.0937154752722611e-2 1.0937154752722616e-2c 6.040423776468084e-3,1.1096078465017809e-18 1.0937154752722616e-2,-4.89673097625453e-3 1.0937154752722616e-2 -1.0937154752722611e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.40604504562492694,-0.35733895867254173 c 0.0,-1.2972472118100212e-2 -1.0516266475668055e-2,-2.348873859376827e-2 -2.3488738593768262e-2 -2.348873859376827e-2c -1.2972472118100212e-2,-7.943348228229855e-19 -2.348873859376827e-2,1.0516266475668053e-2 -2.348873859376827e-2 2.3488738593768262e-2c -1.588669645645971e-18,1.2972472118100212e-2 1.0516266475668052e-2,2.348873859376827e-2 2.348873859376826e-2 2.348873859376827e-2c 1.2972472118100212e-2,2.3830044684689562e-18 2.348873859376827e-2,-1.0516266475668052e-2 2.348873859376827e-2 -2.3488738593768255e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.4430964406271152,-0.46331649788705553 c 0.0,-4.7140452079103175e-2 -3.82148869802242e-2,-8.535533905932738e-2 -8.535533905932736e-2 -8.535533905932738e-2c -4.7140452079103175e-2,-2.8865201874516446e-18 -8.535533905932738e-2,3.821488698022419e-2 -8.535533905932738e-2 8.535533905932735e-2c -5.773040374903289e-18,4.7140452079103175e-2 3.821488698022418e-2,8.535533905932738e-2 8.535533905932734e-2 8.535533905932738e-2c 4.7140452079103175e-2,8.659560562354934e-18 8.535533905932738e-2,-3.821488698022418e-2 8.535533905932738e-2 -8.535533905932734e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8215602636897266,-0.3078422932526459 c 0.0,-5.667856269810783e-3 -4.594705337308144e-3,-1.0262561607118928e-2 -1.0262561607118926e-2 -1.0262561607118928e-2c -5.667856269810783e-3,-3.470561019425516e-19 -1.0262561607118928e-2,4.594705337308143e-3 -1.0262561607118928e-2 1.0262561607118924e-2c -6.941122038851032e-19,5.667856269810783e-3 4.594705337308143e-3,1.0262561607118928e-2 1.0262561607118923e-2 1.0262561607118928e-2c 5.667856269810783e-3,1.0411683058276549e-18 1.0262561607118928e-2,-4.5947053373081425e-3 1.0262561607118928e-2 -1.0262561607118923e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.896083741687615,-0.22488325913749535 c 0.0,-6.56253030569967e-3 -5.319981944928775e-3,-1.1882512250628446e-2 -1.1882512250628443e-2 -1.1882512250628446e-2c -6.56253030569967e-3,-4.018390866591301e-19 -1.1882512250628446e-2,5.319981944928775e-3 -1.1882512250628446e-2 1.1882512250628443e-2c -8.036781733182602e-19,6.56253030569967e-3 5.319981944928774e-3,1.1882512250628446e-2 1.1882512250628441e-2 1.1882512250628446e-2c 6.56253030569967e-3,1.2055172599773903e-18 1.1882512250628446e-2,-5.319981944928773e-3 1.1882512250628446e-2 -1.188251225062844e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8789603184148168,-0.24358316916265663 c 0.0,-9.810656468040229e-3 -7.953108457654302e-3,-1.7763764925694533e-2 -1.776376492569453e-2 -1.7763764925694533e-2c -9.810656468040229e-3,-6.007294520559872e-19 -1.7763764925694533e-2,7.953108457654302e-3 -1.7763764925694533e-2 1.7763764925694526e-2c -1.2014589041119743e-18,9.810656468040229e-3 7.9531084576543e-3,1.7763764925694533e-2 1.7763764925694526e-2 1.7763764925694533e-2c 9.810656468040229e-3,1.8021883561679616e-18 1.7763764925694533e-2,-7.9531084576543e-3 1.7763764925694533e-2 -1.7763764925694522e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.8514198771596939,-0.2698085682987137 c 0.0,-1.6173653245225805e-2 -1.3111336518082009e-2,-2.9284989763307817e-2 -2.928498976330781e-2 -2.9284989763307817e-2c -1.6173653245225805e-2,-9.903506338642491e-19 -2.9284989763307817e-2,1.3111336518082007e-2 -2.9284989763307817e-2 2.9284989763307807e-2c -1.9807012677284982e-18,1.6173653245225805e-2 1.3111336518082006e-2,2.9284989763307817e-2 2.9284989763307803e-2 2.9284989763307817e-2c 1.6173653245225805e-2,2.9710519015927474e-18 2.9284989763307817e-2,-1.3111336518082004e-2 2.9284989763307817e-2 -2.92849897633078e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6992667667583485,-0.4056142600622088 c 0.0,-6.878249776795346e-3 -5.57592314560143e-3,-1.2454172922396778e-2 -1.2454172922396775e-2 -1.2454172922396778e-2c -6.878249776795346e-3,-4.211713286444209e-19 -1.2454172922396778e-2,5.575923145601429e-3 -1.2454172922396778e-2 1.2454172922396775e-2c -8.423426572888418e-19,6.878249776795346e-3 5.575923145601429e-3,1.2454172922396778e-2 1.2454172922396773e-2 1.2454172922396778e-2c 6.878249776795346e-3,1.2635139859332626e-18 1.2454172922396778e-2,-5.5759231456014285e-3 1.2454172922396778e-2 -1.2454172922396771e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.7317648233257684,-0.37741212486568976 c 0.0,-1.2800017747005005e-2 -1.0376464585571834e-2,-2.3176482332576843e-2 -2.317648233257684e-2 -2.3176482332576843e-2c -1.2800017747005005e-2,-7.837750381449498e-19 -2.3176482332576843e-2,1.0376464585571833e-2 -2.3176482332576843e-2 2.3176482332576836e-2c -1.5675500762898996e-18,1.2800017747005005e-2 1.0376464585571833e-2,2.3176482332576843e-2 2.3176482332576832e-2 2.3176482332576843e-2c 1.2800017747005005e-2,2.3513251144348493e-18 2.3176482332576843e-2,-1.037646458557183e-2 2.3176482332576843e-2 -2.317648233257683e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.7048704776162736,-0.25972802116034777 c 0.0,-9.428903373168235e-3 -7.6436364281878945e-3,-1.7072539801356132e-2 -1.707253980135613e-2 -1.7072539801356132e-2c -9.428903373168235e-3,-5.77353816771008e-19 -1.7072539801356132e-2,7.643636428187894e-3 -1.7072539801356132e-2 1.7072539801356125e-2c -1.154707633542016e-18,9.428903373168235e-3 7.643636428187893e-3,1.7072539801356132e-2 1.7072539801356125e-2 1.7072539801356132e-2c 9.428903373168235e-3,1.7320614503130242e-18 1.7072539801356132e-2,-7.643636428187892e-3 1.7072539801356132e-2 -1.707253980135612e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.801050744670565,-0.3063994990916172 c 0.0,-3.1174825351266946e-2 -2.5272189274463976e-2,-5.644701462573093e-2 -5.6447014625730915e-2 -5.644701462573093e-2c -3.1174825351266946e-2,-1.908907504020341e-18 -5.644701462573093e-2,2.5272189274463973e-2 -5.644701462573093e-2 5.644701462573091e-2c -3.817815008040682e-18,3.1174825351266946e-2 2.5272189274463973e-2,5.644701462573093e-2 5.64470146257309e-2 5.644701462573093e-2c 3.1174825351266946e-2,5.726722512061023e-18 5.644701462573093e-2,-2.527218927446397e-2 5.644701462573093e-2 -5.6447014625730894e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0837018413705573,0.3125921270093061 c 0.0,-0.483554438155668 -0.39199832390016864,-0.8755527620558368 -0.8755527620558365 -0.8755527620558368c -0.483554438155668,-2.960916974504178e-17 -0.8755527620558368,0.3919983239001686 -0.8755527620558368 0.8755527620558364c -5.921833949008356e-17,0.483554438155668 0.39199832390016853,0.8755527620558368 0.8755527620558363 0.8755527620558368c 0.483554438155668,8.882750923512535e-17 0.8755527620558368,-0.3919983239001685 0.8755527620558368 -0.8755527620558363Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5224905072673962,-0.10722949730494183 c 0.0,-9.315873134806191e-3 -7.552007315741006e-3,-1.68678804505472e-2 -1.6867880450547195e-2 -1.68678804505472e-2c -9.315873134806191e-3,-5.70432710790161e-19 -1.68678804505472e-2,7.552007315741005e-3 -1.68678804505472e-2 1.686788045054719e-2c -1.140865421580322e-18,9.315873134806191e-3 7.552007315741004e-3,1.68678804505472e-2 1.686788045054719e-2 1.68678804505472e-2c 9.315873134806191e-3,1.7112981323704831e-18 1.68678804505472e-2,-7.552007315741003e-3 1.68678804505472e-2 -1.6867880450547188e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.4902368927062182,-0.1966498312203888 c 0.0,-8.088022903976172e-3 -6.55663803669645e-3,-1.4644660940672623e-2 -1.464466094067262e-2 -1.4644660940672623e-2c -8.088022903976172e-3,-4.95248568039245e-19 -1.4644660940672623e-2,6.556638036696449e-3 -1.4644660940672623e-2 1.4644660940672618e-2c -9.9049713607849e-19,8.088022903976172e-3 6.556638036696448e-3,1.4644660940672623e-2 1.4644660940672617e-2 1.4644660940672623e-2c 8.088022903976172e-3,1.4857457041177348e-18 1.4644660940672623e-2,-6.556638036696447e-3 1.4644660940672623e-2 -1.4644660940672615e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5717962664743185,-0.18076626707540638 c 0.0,-7.4347468253538745e-3 -6.02705313858085e-3,-1.3461799963934725e-2 -1.3461799963934722e-2 -1.3461799963934725e-2c -7.4347468253538745e-3,-4.552469451070284e-19 -1.3461799963934725e-2,6.027053138580849e-3 -1.3461799963934725e-2 1.346179996393472e-2c -9.104938902140567e-19,7.4347468253538745e-3 6.027053138580848e-3,1.3461799963934725e-2 1.346179996393472e-2 1.3461799963934725e-2c 7.4347468253538745e-3,1.3657408353210852e-18 1.3461799963934725e-2,-6.027053138580847e-3 1.3461799963934725e-2 -1.3461799963934718e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5491241128486429,-0.16052615256058625 c 0.0,-2.0347873781454362e-2 -1.649521085502791e-2,-3.6843084636482275e-2 -3.684308463648227e-2 -3.6843084636482275e-2c -2.0347873781454362e-2,-1.2459479247956217e-18 -3.6843084636482275e-2,1.6495210855027906e-2 -3.6843084636482275e-2 3.684308463648226e-2c -2.4918958495912433e-18,2.0347873781454362e-2 1.6495210855027902e-2,3.6843084636482275e-2 3.684308463648226e-2 3.6843084636482275e-2c 2.0347873781454362e-2,3.737843774386865e-18 3.6843084636482275e-2,-1.6495210855027902e-2 3.6843084636482275e-2 -3.6843084636482254e-2Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.6904761904761905,-0.33671751485073687 c 0.0,-7.889782140439906e-2 -6.395932145274377e-2,-0.14285714285714285 -0.14285714285714282 -0.14285714285714285c -7.889782140439906e-2,-4.831098222129842e-18 -0.14285714285714285,6.395932145274376e-2 -0.14285714285714285 0.1428571428571428c -9.662196444259683e-18,7.889782140439906e-2 6.395932145274376e-2,0.14285714285714285 0.1428571428571428 0.14285714285714285c 7.889782140439906e-2,1.4493294666389525e-17 0.14285714285714285,-6.395932145274374e-2 0.14285714285714285 -0.14285714285714277Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 1.0,0.0 c 0.0,-0.13807118745769836 -0.11192881254230161,-0.25 -0.24999999999999994 -0.25c -0.13807118745769836,-8.454421888727224e-18 -0.25,0.1119288125423016 -0.25 0.24999999999999992c -1.6908843777454448e-17,0.13807118745769836 0.11192881254230158,0.25 0.2499999999999999 0.25c 0.13807118745769836,2.536326566618167e-17 0.25,-0.11192881254230157 0.25 -0.24999999999999986Z" /></g></g><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3" font-size="1.0em"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g></g></svg>
− diagrams/circlePackingExample.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="413.59691124314463" font-size="1" viewBox="0 0 400 414"><g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(75,0,130)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4283021878736286,0.3779027204020299 c 0.0,-0.8836555997292698 -0.7163444002707305,-1.6000000000000005 -1.6 -1.6000000000000005c -0.8836555997292698,-5.410830008785425e-17 -1.6000000000000005,0.7163444002707304 -1.6000000000000005 1.6c -1.082166001757085e-16,0.8836555997292698 0.7163444002707303,1.6000000000000005 1.5999999999999999 1.6000000000000005c 0.8836555997292698,1.6232490026356274e-16 1.6000000000000005,-0.7163444002707303 1.6000000000000005 -1.5999999999999996Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(178,34,34)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.4291391856479385,0.3779027204020299 c 0.0,-0.8284271247461904 -0.6715728752538098,-1.5000000000000004 -1.5 -1.5000000000000004c -0.8284271247461904,-5.0726531332363355e-17 -1.5000000000000004,0.6715728752538098 -1.5000000000000004 1.5c -1.0145306266472671e-16,0.8284271247461904 0.6715728752538097,1.5000000000000004 1.4999999999999998 1.5000000000000004c 0.8284271247461904,1.5217959399709008e-16 1.5000000000000004,-0.6715728752538096 1.5000000000000004 -1.4999999999999996Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,228,196)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.873907670563429,-2.131448438466417 c 0.0,-0.773198649763111 -0.6268013502368892,-1.4000000000000004 -1.4000000000000001 -1.4000000000000004c -0.773198649763111,-4.734476257687246e-17 -1.4000000000000004,0.6268013502368891 -1.4000000000000004 1.4c -9.468952515374493e-17,0.773198649763111 0.626801350236889,1.4000000000000004 1.3999999999999997 1.4000000000000004c 0.773198649763111,1.420342877306174e-16 1.4000000000000004,-0.626801350236889 1.4000000000000004 -1.3999999999999995Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7706809931463905,2.7689555974836706 c 0.0,-0.7179701747800317 -0.5820298252199685,-1.3000000000000003 -1.3 -1.3000000000000003c -0.7179701747800317,-4.396299382138157e-17 -1.3000000000000003,0.5820298252199684 -1.3000000000000003 1.2999999999999998c -8.792598764276314e-17,0.7179701747800317 0.5820298252199684,1.3000000000000003 1.2999999999999996 1.3000000000000003c 0.7179701747800317,1.3188898146414472e-16 1.3000000000000003,-0.5820298252199683 1.3000000000000003 -1.2999999999999996Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.923807607108523,-2.256052688972685 c 0.0,-0.6627416997969522 -0.5372583002030478,-1.2000000000000002 -1.2 -1.2000000000000002c -0.6627416997969522,-4.058122506589068e-17 -1.2000000000000002,0.5372583002030478 -1.2000000000000002 1.1999999999999997c -8.116245013178136e-17,0.6627416997969522 0.5372583002030477,1.2000000000000002 1.1999999999999997 1.2000000000000002c 0.6627416997969522,1.2174367519767204e-16 1.2000000000000002,-0.5372583002030477 1.2000000000000002 -1.1999999999999995Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,228,196)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.9210018913093143,-1.3596952039512598 l 0.21631189606246304,-0.6657395614066076 l -0.21631189606246348,-0.6657395614066075 l -0.5663118960624632,-0.4114496766047311 l -0.7,2.220446049250313e-16 l -0.5663118960624631,0.4114496766047313 l -0.21631189606246304,0.6657395614066076 l 0.21631189606246315,0.6657395614066076 l 0.5663118960624633,0.4114496766047311 h 0.7000000000000001 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8213213609409009,2.9725128367842513 c 0.0,-0.6075132248138728 -0.4924867751861271,-1.1 -1.0999999999999999 -1.1c -0.6075132248138728,-3.719945631039979e-17 -1.1,0.49248677518612705 -1.1 1.0999999999999996c -7.439891262079957e-17,0.6075132248138728 0.492486775186127,1.1 1.0999999999999996 1.1c 0.6075132248138728,1.1159836893119935e-16 1.1,-0.49248677518612693 1.1 -1.0999999999999994Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.5792879958643313,-0.6055404097601161 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.6628205291317135,2.143834399374732 l 0.18541019662496838,-0.5706339097770923 l -0.18541019662496838,-0.5706339097770925 l -0.48541019662496854,-0.35267115137548377 l -0.6,2.220446049250313e-16 l -0.48541019662496865,0.3526711513754839 l -0.18541019662496838,0.570633909777092 l 0.18541019662496838,0.5706339097770923 l 0.4854101966249684,0.3526711513754839 l 0.6000000000000001,1.1102230246251565e-16 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.5686648052537926,2.661805667021564 c 0.0,-0.49705627484771414 -0.4029437251522858,-0.9 -0.8999999999999998 -0.9c -0.49705627484771414,-3.043591879941801e-17 -0.9,0.40294372515228577 -0.9 0.8999999999999997c -6.087183759883602e-17,0.49705627484771414 0.4029437251522857,0.9 0.8999999999999996 0.9c 0.49705627484771414,9.130775639825402e-17 0.9,-0.40294372515228566 0.9 -0.8999999999999995Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2531743004653909,-3.3800530101383446 l 0.15450849718747361,-0.4755282581475769 l -0.15450849718747395,-0.4755282581475769 l -0.40450849718747384,-0.29389262614623646 l -0.5000000000000001,1.1102230246251565e-16 l -0.40450849718747384,0.29389262614623685 l -0.15450849718747361,0.47552825814757693 l 0.15450849718747395,0.47552825814757693 l 0.40450849718747384,0.2938926261462365 l 0.5000000000000001,1.1102230246251565e-16 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(75,0,130)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 4.885774571458284,-0.4232095006466472 c 0.0,-0.4418277998646348 -0.35817220013536516,-0.8 -0.7999999999999998 -0.8c -0.4418277998646348,-2.7054150043927117e-17 -0.8,0.3581722001353651 -0.8 0.7999999999999998c -5.4108300087854235e-17,0.4418277998646348 0.3581722001353651,0.8 0.7999999999999997 0.8c 0.4418277998646348,8.116245013178136e-17 0.8,-0.35817220013536505 0.8 -0.7999999999999996Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(178,34,34)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.7096276659670315,-3.564607819300385 c 0.0,-0.38659932488155546 -0.31340067511844455,-0.7000000000000001 -0.7 -0.7000000000000001c -0.38659932488155546,-2.3672381288436228e-17 -0.7000000000000001,0.3134006751184445 -0.7000000000000001 0.6999999999999998c -4.7344762576872457e-17,0.38659932488155546 0.31340067511844444,0.7000000000000001 0.6999999999999997 0.7000000000000001c 0.38659932488155546,7.101714386530869e-17 0.7000000000000001,-0.31340067511844444 0.7000000000000001 -0.6999999999999996Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(178,34,34)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 4.152346261753314,2.138623603659494 l 0.35,-0.6062177826491071 l -0.35,-0.6062177826491071 h -0.7 l -0.34999999999999987,0.6062177826491071 l 0.34999999999999976,0.6062177826491073 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0358585438917443,-3.7982583711861024 l 0.12360679774997885,-0.38042260651806153 l -0.12360679774997907,-0.38042260651806153 l -0.3236067977499791,-0.23511410091698925 l -0.4000000000000001,2.220446049250313e-16 l -0.323606797749979,0.23511410091698937 l -0.12360679774997885,0.3804226065180616 l 0.12360679774997896,0.3804226065180615 l 0.3236067977499791,0.23511410091698925 h 0.4000000000000001 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,228,196)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.16142417423801558,4.215975471047452 c 0.0,-0.3313708498984761 -0.2686291501015239,-0.6000000000000001 -0.6 -0.6000000000000001c -0.3313708498984761,-2.029061253294534e-17 -0.6000000000000001,0.2686291501015239 -0.6000000000000001 0.5999999999999999c -4.058122506589068e-17,0.3313708498984761 0.26862915010152383,0.6000000000000001 0.5999999999999999 0.6000000000000001c 0.3313708498984761,6.087183759883602e-17 0.6000000000000001,-0.26862915010152383 0.6000000000000001 -0.5999999999999998Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,228,196)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.24051700265543,4.493110596177566 l 0.3000000000000002,-0.519615242270663 l -0.29999999999999993,-0.5196152422706632 l -0.6,-3.3306690738754696e-16 l -0.30000000000000016,0.5196152422706632 l 0.2999999999999996,0.5196152422706635 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.315860209467459,-2.087177594952295 c 0.0,-0.2761423749153968 -0.22385762508460327,-0.5000000000000001 -0.5 -0.5000000000000001c -0.2761423749153968,-1.690884377745445e-17 -0.5000000000000001,0.22385762508460325 -0.5000000000000001 0.49999999999999994c -3.38176875549089e-17,0.2761423749153968 0.22385762508460322,0.5000000000000001 0.4999999999999999 0.5000000000000001c 0.2761423749153968,5.0726531332363355e-17 0.5000000000000001,-0.2238576250846032 0.5000000000000001 -0.49999999999999983Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5337066247620426,4.992583921280141 l 0.2500000000000001,-0.4330127018922194 l -0.24999999999999983,-0.4330127018922195 l -0.5000000000000001,-1.6653345369377348e-16 l -0.25000000000000033,0.4330127018922193 l 0.24999999999999972,0.4330127018922195 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.806643073214627,-3.6547765298766386 l 9.270509831248419e-2,-0.28531695488854614 l -9.270509831248419e-2,-0.28531695488854625 l -0.24270509831248427,-0.17633557568774189 l -0.3,1.1102230246251565e-16 l -0.24270509831248432,0.17633557568774194 l -9.270509831248419e-2,0.285316954888546 l 9.270509831248419e-2,0.28531695488854614 l 0.2427050983124842,0.17633557568774194 l 0.30000000000000004,5.551115123125783e-17 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.021452887215652,2.9438673367908232 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.4000000000000001 -0.39999999999999986Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.3650444491349516,-2.605252524083558 l 0.2,-0.34641016151377557 l -0.2,-0.34641016151377557 h -0.40000000000000013 l -0.19999999999999996,0.3464101615137755 l 0.19999999999999987,0.34641016151377557 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3306155545687095,4.468960939090743 l 6.1803398874989424e-2,-0.19021130325903074 l -6.180339887498948e-2,-0.19021130325903074 l -0.1618033988749895,-0.11755705045849457 l -0.2,1.1102230246251565e-16 l -0.16180339887498943,0.11755705045849468 l -6.1803398874989424e-2,0.19021130325903074 l 6.1803398874989535e-2,0.19021130325903068 l 0.16180339887498946,0.11755705045849463 h 0.2 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.5816870061259714,-3.5509789329488575 c 0.0,-0.16568542494923805 -0.13431457505076194,-0.30000000000000004 -0.3 -0.30000000000000004c -0.16568542494923805,-1.014530626647267e-17 -0.30000000000000004,0.13431457505076194 -0.30000000000000004 0.29999999999999993c -2.029061253294534e-17,0.16568542494923805 0.13431457505076191,0.30000000000000004 0.29999999999999993 0.30000000000000004c 0.16568542494923805,3.043591879941801e-17 0.30000000000000004,-0.13431457505076191 0.30000000000000004 -0.2999999999999999Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.1541251600783733,-3.1982508249997443 l 0.1500000000000001,-0.2598076211353315 l -0.14999999999999997,-0.2598076211353316 l -0.3,-1.6653345369377348e-16 l -0.15000000000000008,0.2598076211353316 l 0.1499999999999998,0.25980762113533173 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6351875415589625,-0.4342975576414406 c 0.0,-0.1104569499661587 -8.954305003384129e-2,-0.2 -0.19999999999999996 -0.2c -0.1104569499661587,-6.763537510981779e-18 -0.2,8.954305003384128e-2 -0.2 0.19999999999999996c -1.3527075021963559e-17,0.1104569499661587 8.954305003384128e-2,0.2 0.19999999999999993 0.2c 0.1104569499661587,2.029061253294534e-17 0.2,-8.954305003384126e-2 0.2 -0.1999999999999999Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5351857996281107,1.3631918120607458 l 0.10000000000000003,-0.1732050807568877 l -9.999999999999992e-2,-0.17320508075688779 l -0.19999999999999998,-8.326672684688674e-17 l -0.10000000000000003,0.17320508075688773 l 9.999999999999985e-2,0.17320508075688779 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(75,0,130)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.754084587892758,-1.265746958240218 l 3.0901699437494712e-2,-9.510565162951537e-2 l -3.090169943749474e-2,-9.510565162951537e-2 l -8.090169943749476e-2,-5.8778525229247286e-2 l -0.1,5.551115123125783e-17 l -8.090169943749471e-2,5.877852522924734e-2 l -3.0901699437494712e-2,9.510565162951537e-2 l 3.0901699437494767e-2,9.510565162951534e-2 l 8.090169943749473e-2,5.8778525229247314e-2 h 0.1 Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.302454862797947,-0.6237285653156156 c 0.0,-5.522847498307935e-2 -4.4771525016920645e-2,-0.1 -9.999999999999998e-2 -0.1c -5.522847498307935e-2,-3.3817687554908897e-18 -0.1,4.477152501692064e-2 -0.1 9.999999999999998e-2c -6.763537510981779e-18,5.522847498307935e-2 4.477152501692064e-2,0.1 9.999999999999996e-2 0.1c 5.522847498307935e-2,1.014530626647267e-17 0.1,-4.477152501692063e-2 0.1 -9.999999999999995e-2Z" /></g></g><g transform="matrix(42.26068207736614,0.0,0.0,42.26068207736614,193.52383413392167,202.6069094013546)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7243588453404469,-0.5288841181418675 l 5.000000000000002e-2,-8.660254037844385e-2 l -4.999999999999996e-2,-8.660254037844389e-2 l -9.999999999999999e-2,-4.163336342344337e-17 l -5.000000000000002e-2,8.660254037844387e-2 l 4.9999999999999926e-2,8.660254037844389e-2 Z" /></g></g></g></svg>
− diagrams/colorBarsEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="200.0" font-size="1" viewBox="0 0 200 200"><g><g transform="matrix(200.0,0.0,0.0,200.0,100.0,100.0)"><g stroke="rgb(148,148,148)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M 0.5000000000000002,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></clipPath><path d="M 0.5,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 Z" /></g></g><g transform="matrix(200.0,0.0,0.0,200.0,100.0,100.0)"><g stroke="rgb(255,177,89)" stroke-opacity="1.0" fill="rgb(255,177,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip2)"><clipPath id="myClip2"><path d="M 0.5000000000000002,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></clipPath><path d="M 0.25,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 Z" /></g></g><g transform="matrix(200.0,0.0,0.0,200.0,100.0,100.0)"><g stroke="rgb(89,89,255)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip3)"><clipPath id="myClip3"><path d="M 0.5000000000000002,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></clipPath><path d="M 2.7755575615628914e-17,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 Z" /></g></g><g transform="matrix(200.0,0.0,0.0,200.0,100.0,100.0)"><g stroke="rgb(255,255,89)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip4)"><clipPath id="myClip4"><path d="M 0.5000000000000002,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></clipPath><path d="M -0.24999999999999997,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 Z" /></g></g></g></svg>
− diagrams/diaLogo.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="590.1523919995886" height="100.0" font-size="1" viewBox="0 0 590 100"><g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.2" font-size="1.0em"><path d="M 20.335333719985595,-0.8200000000000007 c -0.5044772701248142,-0.4101683270353824 -1.008954540249628,-0.8203366540707663 -1.6000000000000005 -0.8c -0.5910454597503723,2.033665407076626e-2 -1.2686591091263026,0.4711782892476819 -1.6 0.8c -0.33134089087369745,0.3288217107523188 -0.31640902324516207,0.5356234970800415 0.0 0.8c 0.31640902324516207,0.26437650291995923 0.9342952021069508,0.5863277224321543 1.6 0.8c 0.6657047978930493,0.2136722775678461 1.3792282148173591,0.3190656131913432 1.6 0.8c 0.2207717851826402,0.480934386808657 -5.120806137638852e-2,1.3374098248024735 -0.8 1.6c -0.7487919386236115,0.2625901751975266 -1.9743959693118058,-6.870491240123666e-2 -3.2 -0.4" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 16.655333719985595,2.7799999999999994 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 19.855333719985595,3.1799999999999993 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 20.655333719985595,1.5799999999999992 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 19.055333719985597,0.7799999999999989 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 17.455333719985596,-2.0000000000000906e-2 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 17.455333719985596,-0.8200000000000007 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 19.055333719985597,-1.6200000000000014 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 20.655333719985595,-0.8200000000000007 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000006 -0.3199999999999999Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="6.0em" font-style="italic" font-family="freeserif"><text transform="matrix(1.0,0.0,0.0,1.0,13.015333719985595,0.9999999999999987)" dominant-baseline="middle" text-anchor="middle" stroke="none">m</text></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em"><path d="M 15.515333719985595,3.4999999999999987 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 6.470123175719088,-1.0000000000000013 l 1.472168388222995,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 6.470123175719088,-1.0000000000000013 l -1.4721683882229954,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 7.942291563942083,0.9999999999999987 l 1.5730421560435097,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 7.942291563942083,0.9999999999999987 l -0.28868441920393195,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 10.015333719985593,2.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 8.153607144738151,2.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 8.442291563942083,0.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 4.997954787496092,0.9999999999999987 l 0.2886844192039326,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 4.997954787496092,0.9999999999999987 l -1.5730421560435097,2.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 5.786639206700025,2.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 3.9249126314525826,2.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 5.497954787496092,0.9999999999999987 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(128,0,128)" fill-opacity="1.0" stroke-width="0.1" font-size="1.0em"><path d="M 6.970123175719088,-1.0000000000000013 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5 -0.4999999999999997Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round" font-size="1.0em"><path d="M 1.8941898538495607,2.969277222396977 l -2.121320343559643,-2.1213203435596424 l 0.9,-1.1021821192326179e-16 l 0.7281152949374526,-0.5290067270632259 l 0.27811529493745263,-0.8559508646656383 l -0.27811529493745274,-0.8559508646656382 l -0.7281152949374528,-0.5290067270632258 h -0.9 l -3.061616997868383e-16,5.0 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="0.1" font-size="1.0em"><path d="M 1.275275074454776,3.05746922418874 l 1.1496375569978068,0.44253077581125877 l -0.44253077581125927,-1.1496375569978066 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip27)"><clipPath id="myClip27"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -6.514582347904851,-5.062603424276718 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip28)"><clipPath id="myClip28"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -6.669090845092324,-4.587075166129141 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip29)"><clipPath id="myClip29"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -6.823599342279798,-4.111546907981564 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip30)"><clipPath id="myClip30"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -6.978107839467272,-3.6360186498339875 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip31)"><clipPath id="myClip31"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.1326163366547455,-3.1604903916864107 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip32)"><clipPath id="myClip32"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.287124833842219,-2.684962133538834 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip33)"><clipPath id="myClip33"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.441633331029693,-2.209433875391257 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip34)"><clipPath id="myClip34"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.596141828217167,-1.7339056172436804 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip35)"><clipPath id="myClip35"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.75065032540464,-1.2583773590961038 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip36)"><clipPath id="myClip36"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -7.905158822592114,-0.782849100948527 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip37)"><clipPath id="myClip37"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.059667319779589,-0.3073208428009502 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip38)"><clipPath id="myClip38"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.214175816967062,0.16820741534662664 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip39)"><clipPath id="myClip39"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.368684314154535,0.643735673494203 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip40)"><clipPath id="myClip40"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.523192811342009,1.1192639316417798 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip41)"><clipPath id="myClip41"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.677701308529482,1.5947921897893567 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip42)"><clipPath id="myClip42"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.832209805716957,2.0703204479369335 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip43)"><clipPath id="myClip43"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -8.986718302904432,2.5458487060845103 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip44)"><clipPath id="myClip44"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -9.141226800091903,3.021376964232087 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip45)"><clipPath id="myClip45"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -9.295735297279379,3.496905222379664 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip46)"><clipPath id="myClip46"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -9.45024379446685,3.9724334805272408 l 9.510565162951535,3.0901699437494745 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip47)"><clipPath id="myClip47"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 2.8354729345666336,-2.2874518581947685 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip48)"><clipPath id="myClip48"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 2.359944676419057,-2.441960355382242 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip49)"><clipPath id="myClip49"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 1.8844164182714802,-2.596468852569716 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip50)"><clipPath id="myClip50"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 1.4088881601239034,-2.7509773497571897 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip51)"><clipPath id="myClip51"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 0.9333599019763266,-2.9054858469446634 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip52)"><clipPath id="myClip52"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M 0.45783164382874975,-3.059994344132137 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip53)"><clipPath id="myClip53"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -1.7696614318827075e-2,-3.214502841319611 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip54)"><clipPath id="myClip54"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -0.4932248724664039,-3.3690113385070846 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip55)"><clipPath id="myClip55"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -0.9687531306139803,-3.5235198356945583 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip56)"><clipPath id="myClip56"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -1.444281388761557,-3.6780283328820316 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip57)"><clipPath id="myClip57"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -1.919809646909134,-3.8325368300695057 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip58)"><clipPath id="myClip58"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -2.395337905056711,-3.987045327256979 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip59)"><clipPath id="myClip59"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -2.870866163204287,-4.141553824444453 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip60)"><clipPath id="myClip60"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -3.3463944213518637,-4.2960623216319265 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip61)"><clipPath id="myClip61"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -3.8219226794994405,-4.450570818819401 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip62)"><clipPath id="myClip62"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -4.297450937647017,-4.605079316006874 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip63)"><clipPath id="myClip63"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -4.772979195794594,-4.759587813194348 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip64)"><clipPath id="myClip64"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -5.248507453942171,-4.914096310381821 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip65)"><clipPath id="myClip65"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -5.724035712089748,-5.0686048075692955 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="5.0e-2" font-size="1.0em" clip-path="url(#myClip66)"><clipPath id="myClip66"><path d="M -0.7271304897100812,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 Z" /></clipPath><path d="M -6.199563970237325,-5.223113304756769 l -3.090169943749474,9.510565162951535 " /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="4.0em"><text transform="matrix(0.9510565162951535,0.3090169943749474,-0.3090169943749474,0.9510565162951535,-3.227130489710083,0.9999999999999987)" dominant-baseline="middle" text-anchor="middle" stroke="none">G</text></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -6.227130489710084,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.093155893494523,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -6.6601431916023035,2.749999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.959181297278961,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.8252067010634,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.392193999171182,2.749999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.093155893494521,1.9999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.959181297278961,1.9999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.526168595386742,1.2499999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -9.69123210484784,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.55725750863228,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.12424480674006,2.749999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -11.423282912416717,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -12.289308316201156,3.499999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -11.856295614308937,2.749999999999999 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.557257508632278,1.9999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -11.423282912416717,1.9999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.990270210524498,1.2499999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.959181297278961,0.4999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.8252067010634,0.4999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.392193999171182,-0.2500000000000008 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -9.69123210484784,0.4999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.55725750863228,0.4999999999999991 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -10.12424480674006,-0.2500000000000008 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.8252067010634,-1.0000000000000004 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -9.69123210484784,-1.0000000000000004 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -9.258219402955621,-1.7500000000000004 l -0.43301270189221935,-0.7499999999999999 l -0.4330127018922194,0.7499999999999998 Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="5.0e-2" font-size="1.0em"><path d="M -13.655333719985595,3.0999999999999983 v -3.2 c 0.0,-0.2209138999323174 -0.17908610006768258,-0.4 -0.3999999999999999 -0.4h -1.2 c -0.2209138999323174,-1.3527075021963559e-17 -0.4,0.17908610006768255 -0.4 0.3999999999999999v 3.2 c -2.7054150043927117e-17,0.2209138999323174 0.17908610006768255,0.4 0.3999999999999999 0.40000000000000013h 1.2000000000000002 c 0.2209138999323174,4.058122506589068e-17 0.4,-0.17908610006768252 0.40000000000000013 -0.39999999999999986Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="5.0e-2" font-size="1.0em"></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="5.0e-2" font-size="1.0em"><path d="M -13.655333719985595,-2.0000000000000013 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.0761959997943,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -16.655333719985595,1.4999999999999996 c 0.0,-1.104569499661587 -0.8954305003384129,-2.0 -1.9999999999999996 -2.0c -1.104569499661587,-6.763537510981779e-17 -2.0,0.8954305003384128 -2.0 1.9999999999999993c -1.3527075021963558e-16,1.104569499661587 0.8954305003384126,2.0 1.9999999999999991 2.0c 1.104569499661587,2.0290612532945337e-16 2.0,-0.8954305003384125 2.0 -1.999999999999999ZM -16.955333719985596,-3.1999999999999997 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,-2.4 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,-1.6 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,-0.8000000000000003 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,-4.440892098500626e-16 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,0.7999999999999994 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,1.5999999999999992 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,2.399999999999999 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.955333719985596,3.199999999999999 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,-3.1999999999999997 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,-2.4 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,-1.6 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,-0.8000000000000003 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,-4.440892098500626e-16 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,0.7999999999999994 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,1.5999999999999992 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,2.399999999999999 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3ZM -16.155333719985595,3.199999999999999 l -5.551115123125783e-17,5.551115123125783e-17 c 0.0,0.16568542494923794 -0.13431457505076197,0.2999999999999999 -0.3 0.2999999999999998c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.29999999999999993 0.3Z" /></g></g></g></svg>
− diagrams/ensquareEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="100.0" font-size="1" viewBox="0 0 200 100"><g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1104899379850617,0.13228727693161307 l -0.11048993798506161,0.19137418631526104 l -0.11048993798506161,-0.19137418631526104 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0990867003435452,7.863926177779748e-2 l 5.890173781772907e-2,2.6224743290975572e-2 l -6.73957501115412e-3,6.412277292269175e-2 l -6.306702424435176e-2,1.3405309828139374e-2 l -3.223798954116894e-2,-5.583783581917861e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0780643589287613,8.31076983871773e-2 c -2.4678493949460796e-3,-1.1610318569121467e-2 4.9435862362826564e-3,-2.3022928629217638e-2 1.6553904805404123e-2 -2.549077802416372e-2c 1.1610318569121467e-2,-2.4678493949460804e-3 2.3022928629217638e-2,4.9435862362826564e-3 2.549077802416372e-2 1.655390480540412e-2c 2.467849394946081e-3,1.1610318569121467e-2 -4.943586236282655e-3,2.3022928629217638e-2 -1.6553904805404116e-2 2.549077802416372e-2c -1.1610318569121467e-2,2.4678493949460817e-3 -2.3022928629217638e-2,-4.943586236282653e-3 -2.5490778024163715e-2 -1.6553904805404116e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0536973243608814,0.14792850964132284 c -1.1804676534021865e-2,-1.2407214996670356e-3 -2.0368454136846258e-2,-1.1816106110593418e-2 -1.912773263717922e-2 -2.362078264461528e-2c 1.240721499667035e-3,-1.1804676534021865e-2 1.1816106110593416e-2,-2.0368454136846258e-2 2.3620782644615278e-2 -1.912773263717922e-2c 1.1804676534021865e-2,1.240721499667034e-3 2.0368454136846258e-2,1.1816106110593414e-2 1.912773263717922e-2 2.3620782644615274e-2c -1.2407214996670334e-3,1.1804676534021865e-2 -1.1816106110593414e-2,2.0368454136846258e-2 -2.3620782644615274e-2 1.912773263717922e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1078157515116782,0.19113366891659603 c -4.827841929277739e-3,1.0843510511754499e-2 -1.753198319114705e-2,1.5720173438195584e-2 -2.8375493702901548e-2 1.0892331508917845e-2c -1.0843510511754499e-2,-4.827841929277738e-3 -1.5720173438195584e-2,-1.753198319114705e-2 -1.0892331508917847e-2 -2.8375493702901544e-2c 4.8278419292777375e-3,-1.0843510511754499e-2 1.7531983191147047e-2,-1.5720173438195584e-2 2.837549370290154e-2 -1.0892331508917847e-2c 1.08435105117545e-2,4.8278419292777375e-3 1.5720173438195584e-2,1.7531983191147047e-2 1.0892331508917849e-2 2.837549370290154e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1656298134764354,0.1530151145839221 c 8.820906129416358e-3,7.942379553298082e-3 9.533092634525536e-3,2.1531707604441584e-2 1.5907130812274559e-3 3.035261373385794e-2c -7.942379553298082e-3,8.820906129416358e-3 -2.1531707604441584e-2,9.533092634525538e-3 -3.0352613733857937e-2 1.5907130812274576e-3c -8.82090612941636e-3,-7.94237955329808e-3 -9.53309263452554e-3,-2.1531707604441584e-2 -1.5907130812274593e-3 -3.0352613733857937e-2c 7.94237955329808e-3,-8.82090612941636e-3 2.1531707604441584e-2,-9.53309263452554e-3 3.0352613733857933e-2 -1.590713081227461e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1472424416475513,8.625139312904684e-2 c 1.0279461728829329e-2,-5.934849996264075e-3 2.3423758457185112e-2,-2.412846302826104e-3 2.935860845344919e-2 7.866615426003223e-3c 5.934849996264076e-3,1.0279461728829329e-2 2.412846302826104e-3,2.3423758457185112e-2 -7.86661542600322e-3 2.9358608453449186e-2c -1.0279461728829329e-2,5.934849996264076e-3 -2.3423758457185112e-2,2.412846302826106e-3 -2.9358608453449182e-2 -7.86661542600322e-3c -5.934849996264077e-3,-1.0279461728829327e-2 -2.4128463028261077e-3,-2.3423758457185112e-2 7.866615426003216e-3 -2.9358608453449182e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8487511368498798,0.16898677799146491 l -6.739575011154152e-3,-6.412277292269175e-2 l 5.890173781772906e-2,-2.6224743290975603e-2 l 4.3142850978945775e-2,4.7914990222628046e-2 l -3.2237989541168896e-2,5.583783581917864e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.863132087176195,0.18495844139900763 c -8.820906129416349e-3,7.942379553298094e-3 -2.2410234180559853e-2,7.230193048188931e-3 -3.0352613733857947e-2 -1.590713081227416e-3c -7.942379553298094e-3,-8.820906129416349e-3 -7.230193048188932e-3,-2.2410234180559853e-2 1.5907130812274125e-3 -3.0352613733857944e-2c 8.820906129416347e-3,-7.942379553298096e-3 2.2410234180559853e-2,-7.230193048188934e-3 3.035261373385794e-2 1.5907130812274125e-3c 7.942379553298096e-3,8.820906129416347e-3 7.230193048188935e-3,2.2410234180559853e-2 -1.590713081227409e-3 3.035261373385794e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9314520737001413,0.17365050672261237 c 4.8278419292777505e-3,1.0843510511754495e-2 -4.88209971633187e-5,2.3547651773623814e-2 -1.0892331508917812e-2 2.8375493702901565e-2c -1.0843510511754495e-2,4.827841929277751e-3 -2.3547651773623814e-2,-4.882099716331696e-5 -2.837549370290156e-2 -1.0892331508917809e-2c -4.827841929277752e-3,-1.0843510511754495e-2 4.882099716331523e-5,-2.3547651773623814e-2 1.0892331508917805e-2 -2.837549370290156e-2c 1.0843510511754494e-2,-4.827841929277752e-3 2.3547651773623814e-2,4.882099716331523e-5 2.8375493702901558e-2 1.0892331508917805e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9418096256316825,0.10517999435952835 c 1.1804676534021867e-2,-1.2407214996670482e-3 2.238006114494826e-2,7.323056103157333e-3 2.362078264461531e-2 1.91277326371792e-2c 1.2407214996670488e-3,1.1804676534021867e-2 -7.323056103157331e-3,2.238006114494826e-2 -1.9127732637179193e-2 2.362078264461531e-2c -1.1804676534021867e-2,1.2407214996670497e-3 -2.238006114494826e-2,-7.3230561031573296e-3 -2.362078264461531e-2 -1.9127732637179193e-2c -1.2407214996670503e-3,-1.1804676534021867e-2 7.3230561031573296e-3,-2.238006114494826e-2 1.9127732637179193e-2 -2.362078264461531e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8798909582416707,7.417082516841779e-2 c 2.467849394946068e-3,-1.1610318569121474e-2 1.3880459455042233e-2,-1.9021754200350224e-2 2.5490778024163704e-2 -1.6553904805404158e-2c 1.1610318569121474e-2,2.467849394946067e-3 1.9021754200350228e-2,1.388045945504223e-2 1.655390480540416e-2 2.54907780241637e-2c -2.4678493949460666e-3,1.1610318569121474e-2 -1.388045945504223e-2,1.9021754200350228e-2 -2.5490778024163697e-2 1.655390480540416e-2c -1.1610318569121474e-2,-2.4678493949460657e-3 -1.9021754200350228e-2,-1.3880459455042229e-2 -1.655390480540416e-2 -2.5490778024163697e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8312655653250026,0.12347661700849938 c -1.0279461728829334e-2,-5.934849996264068e-3 -1.380146542226732e-2,-1.907914672461985e-2 -7.866615426003252e-3 -2.9358608453449182e-2c 5.934849996264067e-3,-1.0279461728829334e-2 1.907914672461985e-2,-1.380146542226732e-2 2.935860845344918e-2 -7.866615426003254e-3c 1.0279461728829334e-2,5.934849996264067e-3 1.380146542226732e-2,1.907914672461985e-2 7.866615426003256e-3 2.935860845344918e-2c -5.934849996264066e-3,1.0279461728829336e-2 -1.907914672461985e-2,1.380146542226732e-2 -2.9358608453449175e-2 7.866615426003256e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.052162162806575,0.3406099773408379 l -5.216216280657493e-2,3.7898029631716144e-2 l -5.216216280657491e-2,-3.789802963171616e-2 l 1.9924173265406013e-2,-6.13203000507674e-2 h 6.447597908233782e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0588035538950435,0.3201698773239154 c 1.128875552436242e-2,3.667939015823378e-3 1.746664794427718e-2,1.5792735581028707e-2 1.3798708928453803e-2 2.708149110539113e-2c -3.667939015823377e-3,1.128875552436242e-2 -1.5792735581028707e-2,1.746664794427718e-2 -2.7081491105391126e-2 1.3798708928453803e-2c -1.128875552436242e-2,-3.6679390158233767e-3 -1.746664794427718e-2,-1.5792735581028707e-2 -1.3798708928453803e-2 -2.7081491105391122e-2c 3.667939015823376e-3,-1.128875552436242e-2 1.5792735581028703e-2,-1.746664794427718e-2 2.7081491105391122e-2 -1.3798708928453803e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0148506019389771,0.2666570007461651 c 6.976834604744116e-3,-9.602789012087451e-3 2.0417275134009573e-2,-1.173154566303038e-2 3.0020064146097022e-2 -4.7547110582862664e-3c 9.602789012087451e-3,6.976834604744115e-3 1.173154566303038e-2,2.0417275134009573e-2 4.7547110582862664e-3 3.002006414609702e-2c -6.976834604744115e-3,9.602789012087451e-3 -2.041727513400957e-2,1.1731545663030382e-2 -3.002006414609702e-2 4.754711058286268e-3c -9.602789012087453e-3,-6.9768346047441145e-3 -1.1731545663030384e-2,-2.041727513400957e-2 -4.75471105828627e-3 -3.0020064146097016e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9503746228566395,0.29192235383397586 c -6.97683460474412e-3,-9.60278901208745e-3 -4.8480779538012e-3,-2.304322954135291e-2 4.754711058286249e-3 -3.0020064146097026e-2c 9.60278901208745e-3,-6.9768346047441206e-3 2.3043229541352905e-2,-4.8480779538012005e-3 3.0020064146097026e-2 4.754711058286246e-3c 6.9768346047441206e-3,9.60278901208745e-3 4.848077953801201e-3,2.3043229541352905e-2 -4.754711058286246e-3 3.0020064146097022e-2c -9.602789012087448e-3,6.976834604744121e-3 -2.3043229541352905e-2,4.848077953801202e-3 -3.0020064146097022e-2 -4.754711058286242e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9544792282818937,0.3610500773577604 c -1.1288755524362423e-2,3.6679390158233824e-3 -2.341355208956776e-2,-2.5099534040913703e-3 -2.708149110539114e-2 -1.3798708928453793e-2c -3.6679390158233832e-3,-1.1288755524362423e-2 2.5099534040913703e-3,-2.341355208956776e-2 1.379870892845379e-2 -2.708149110539114e-2c 1.1288755524362423e-2,-3.6679390158233837e-3 2.341355208956776e-2,2.5099534040913685e-3 2.708149110539114e-2 1.3798708928453786e-2c 3.6679390158233845e-3,1.1288755524362423e-2 -2.509953404091367e-3,2.341355208956776e-2 -1.3798708928453786e-2 2.708149110539114e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.021491993027446,0.37850800697255405 c 0.0,1.1869699992528142e-2 -9.622293034917802e-3,2.1491993027445946e-2 -2.1491993027445942e-2 2.1491993027445946e-2c -1.1869699992528142e-2,7.268095051344475e-19 -2.1491993027445946e-2,-9.6222930349178e-3 -2.1491993027445946e-2 -2.149199302744594e-2c -1.453619010268895e-18,-1.1869699992528142e-2 9.6222930349178e-3,-2.1491993027445946e-2 2.1491993027445935e-2 -2.1491993027445946e-2c 1.1869699992528142e-2,-2.1804285154033426e-18 2.1491993027445946e-2,9.622293034917798e-3 2.1491993027445946e-2 2.1491993027445935e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1104899379850617,-0.13228727693161307 l -0.11048993798506161,-0.19137418631526104 l -0.11048993798506161,0.19137418631526104 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0990867003435452,-7.863926177779748e-2 l 5.890173781772907e-2,-2.6224743290975572e-2 l -6.73957501115412e-3,-6.412277292269175e-2 l -6.306702424435176e-2,-1.3405309828139374e-2 l -3.223798954116894e-2,5.583783581917861e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0780643589287613,-8.31076983871773e-2 c -2.4678493949460796e-3,1.1610318569121467e-2 4.9435862362826564e-3,2.3022928629217638e-2 1.6553904805404123e-2 2.549077802416372e-2c 1.1610318569121467e-2,2.4678493949460804e-3 2.3022928629217638e-2,-4.9435862362826564e-3 2.549077802416372e-2 -1.655390480540412e-2c 2.467849394946081e-3,-1.1610318569121467e-2 -4.943586236282655e-3,-2.3022928629217638e-2 -1.6553904805404116e-2 -2.549077802416372e-2c -1.1610318569121467e-2,-2.4678493949460817e-3 -2.3022928629217638e-2,4.943586236282653e-3 -2.5490778024163715e-2 1.6553904805404116e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0536973243608814,-0.14792850964132284 c -1.1804676534021865e-2,1.2407214996670356e-3 -2.0368454136846258e-2,1.1816106110593418e-2 -1.912773263717922e-2 2.362078264461528e-2c 1.240721499667035e-3,1.1804676534021865e-2 1.1816106110593416e-2,2.0368454136846258e-2 2.3620782644615278e-2 1.912773263717922e-2c 1.1804676534021865e-2,-1.240721499667034e-3 2.0368454136846258e-2,-1.1816106110593414e-2 1.912773263717922e-2 -2.3620782644615274e-2c -1.2407214996670334e-3,-1.1804676534021865e-2 -1.1816106110593414e-2,-2.0368454136846258e-2 -2.3620782644615274e-2 -1.912773263717922e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1078157515116782,-0.19113366891659603 c -4.827841929277739e-3,-1.0843510511754499e-2 -1.753198319114705e-2,-1.5720173438195584e-2 -2.8375493702901548e-2 -1.0892331508917845e-2c -1.0843510511754499e-2,4.827841929277738e-3 -1.5720173438195584e-2,1.753198319114705e-2 -1.0892331508917847e-2 2.8375493702901544e-2c 4.8278419292777375e-3,1.0843510511754499e-2 1.7531983191147047e-2,1.5720173438195584e-2 2.837549370290154e-2 1.0892331508917847e-2c 1.08435105117545e-2,-4.8278419292777375e-3 1.5720173438195584e-2,-1.7531983191147047e-2 1.0892331508917849e-2 -2.837549370290154e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1656298134764354,-0.1530151145839221 c 8.820906129416358e-3,-7.942379553298082e-3 9.533092634525536e-3,-2.1531707604441584e-2 1.5907130812274559e-3 -3.035261373385794e-2c -7.942379553298082e-3,-8.820906129416358e-3 -2.1531707604441584e-2,-9.533092634525538e-3 -3.0352613733857937e-2 -1.5907130812274576e-3c -8.82090612941636e-3,7.94237955329808e-3 -9.53309263452554e-3,2.1531707604441584e-2 -1.5907130812274593e-3 3.0352613733857937e-2c 7.94237955329808e-3,8.82090612941636e-3 2.1531707604441584e-2,9.53309263452554e-3 3.0352613733857933e-2 1.590713081227461e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1472424416475513,-8.625139312904684e-2 c 1.0279461728829329e-2,5.934849996264075e-3 2.3423758457185112e-2,2.412846302826104e-3 2.935860845344919e-2 -7.866615426003223e-3c 5.934849996264076e-3,-1.0279461728829329e-2 2.412846302826104e-3,-2.3423758457185112e-2 -7.86661542600322e-3 -2.9358608453449186e-2c -1.0279461728829329e-2,-5.934849996264076e-3 -2.3423758457185112e-2,-2.412846302826106e-3 -2.9358608453449182e-2 7.86661542600322e-3c -5.934849996264077e-3,1.0279461728829327e-2 -2.4128463028261077e-3,2.3423758457185112e-2 7.866615426003216e-3 2.9358608453449182e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8487511368498798,-0.16898677799146491 l -6.739575011154152e-3,6.412277292269175e-2 l 5.890173781772906e-2,2.6224743290975603e-2 l 4.3142850978945775e-2,-4.7914990222628046e-2 l -3.2237989541168896e-2,-5.583783581917864e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.863132087176195,-0.18495844139900763 c -8.820906129416349e-3,-7.942379553298094e-3 -2.2410234180559853e-2,-7.230193048188931e-3 -3.0352613733857947e-2 1.590713081227416e-3c -7.942379553298094e-3,8.820906129416349e-3 -7.230193048188932e-3,2.2410234180559853e-2 1.5907130812274125e-3 3.0352613733857944e-2c 8.820906129416347e-3,7.942379553298096e-3 2.2410234180559853e-2,7.230193048188934e-3 3.035261373385794e-2 -1.5907130812274125e-3c 7.942379553298096e-3,-8.820906129416347e-3 7.230193048188935e-3,-2.2410234180559853e-2 -1.590713081227409e-3 -3.035261373385794e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9314520737001413,-0.17365050672261237 c 4.8278419292777505e-3,-1.0843510511754495e-2 -4.88209971633187e-5,-2.3547651773623814e-2 -1.0892331508917812e-2 -2.8375493702901565e-2c -1.0843510511754495e-2,-4.827841929277751e-3 -2.3547651773623814e-2,4.882099716331696e-5 -2.837549370290156e-2 1.0892331508917809e-2c -4.827841929277752e-3,1.0843510511754495e-2 4.882099716331523e-5,2.3547651773623814e-2 1.0892331508917805e-2 2.837549370290156e-2c 1.0843510511754494e-2,4.827841929277752e-3 2.3547651773623814e-2,-4.882099716331523e-5 2.8375493702901558e-2 -1.0892331508917805e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9418096256316825,-0.10517999435952835 c 1.1804676534021867e-2,1.2407214996670482e-3 2.238006114494826e-2,-7.323056103157333e-3 2.362078264461531e-2 -1.91277326371792e-2c 1.2407214996670488e-3,-1.1804676534021867e-2 -7.323056103157331e-3,-2.238006114494826e-2 -1.9127732637179193e-2 -2.362078264461531e-2c -1.1804676534021867e-2,-1.2407214996670497e-3 -2.238006114494826e-2,7.3230561031573296e-3 -2.362078264461531e-2 1.9127732637179193e-2c -1.2407214996670503e-3,1.1804676534021867e-2 7.3230561031573296e-3,2.238006114494826e-2 1.9127732637179193e-2 2.362078264461531e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8798909582416707,-7.417082516841779e-2 c 2.467849394946068e-3,1.1610318569121474e-2 1.3880459455042233e-2,1.9021754200350224e-2 2.5490778024163704e-2 1.6553904805404158e-2c 1.1610318569121474e-2,-2.467849394946067e-3 1.9021754200350228e-2,-1.388045945504223e-2 1.655390480540416e-2 -2.54907780241637e-2c -2.4678493949460666e-3,-1.1610318569121474e-2 -1.388045945504223e-2,-1.9021754200350228e-2 -2.5490778024163697e-2 -1.655390480540416e-2c -1.1610318569121474e-2,2.4678493949460657e-3 -1.9021754200350228e-2,1.3880459455042229e-2 -1.655390480540416e-2 2.5490778024163697e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8312655653250026,-0.12347661700849938 c -1.0279461728829334e-2,5.934849996264068e-3 -1.380146542226732e-2,1.907914672461985e-2 -7.866615426003252e-3 2.9358608453449182e-2c 5.934849996264067e-3,1.0279461728829334e-2 1.907914672461985e-2,1.380146542226732e-2 2.935860845344918e-2 7.866615426003254e-3c 1.0279461728829334e-2,-5.934849996264067e-3 1.380146542226732e-2,-1.907914672461985e-2 7.866615426003256e-3 -2.935860845344918e-2c -5.934849996264066e-3,-1.0279461728829336e-2 -1.907914672461985e-2,-1.380146542226732e-2 -2.9358608453449175e-2 -7.866615426003256e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.052162162806575,-0.3406099773408379 l -5.216216280657493e-2,-3.7898029631716144e-2 l -5.216216280657491e-2,3.789802963171616e-2 l 1.9924173265406013e-2,6.13203000507674e-2 h 6.447597908233782e-2 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0588035538950435,-0.3201698773239154 c 1.128875552436242e-2,-3.667939015823378e-3 1.746664794427718e-2,-1.5792735581028707e-2 1.3798708928453803e-2 -2.708149110539113e-2c -3.667939015823377e-3,-1.128875552436242e-2 -1.5792735581028707e-2,-1.746664794427718e-2 -2.7081491105391126e-2 -1.3798708928453803e-2c -1.128875552436242e-2,3.6679390158233767e-3 -1.746664794427718e-2,1.5792735581028707e-2 -1.3798708928453803e-2 2.7081491105391122e-2c 3.667939015823376e-3,1.128875552436242e-2 1.5792735581028703e-2,1.746664794427718e-2 2.7081491105391122e-2 1.3798708928453803e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0148506019389771,-0.2666570007461651 c 6.976834604744116e-3,9.602789012087451e-3 2.0417275134009573e-2,1.173154566303038e-2 3.0020064146097022e-2 4.7547110582862664e-3c 9.602789012087451e-3,-6.976834604744115e-3 1.173154566303038e-2,-2.0417275134009573e-2 4.7547110582862664e-3 -3.002006414609702e-2c -6.976834604744115e-3,-9.602789012087451e-3 -2.041727513400957e-2,-1.1731545663030382e-2 -3.002006414609702e-2 -4.754711058286268e-3c -9.602789012087453e-3,6.9768346047441145e-3 -1.1731545663030384e-2,2.041727513400957e-2 -4.75471105828627e-3 3.0020064146097016e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9503746228566395,-0.29192235383397586 c -6.97683460474412e-3,9.60278901208745e-3 -4.8480779538012e-3,2.304322954135291e-2 4.754711058286249e-3 3.0020064146097026e-2c 9.60278901208745e-3,6.9768346047441206e-3 2.3043229541352905e-2,4.8480779538012005e-3 3.0020064146097026e-2 -4.754711058286246e-3c 6.9768346047441206e-3,-9.60278901208745e-3 4.848077953801201e-3,-2.3043229541352905e-2 -4.754711058286246e-3 -3.0020064146097022e-2c -9.602789012087448e-3,-6.976834604744121e-3 -2.3043229541352905e-2,-4.848077953801202e-3 -3.0020064146097022e-2 4.754711058286242e-3Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9544792282818937,-0.3610500773577604 c -1.1288755524362423e-2,-3.6679390158233824e-3 -2.341355208956776e-2,2.5099534040913703e-3 -2.708149110539114e-2 1.3798708928453793e-2c -3.6679390158233832e-3,1.1288755524362423e-2 2.5099534040913703e-3,2.341355208956776e-2 1.379870892845379e-2 2.708149110539114e-2c 1.1288755524362423e-2,3.6679390158233837e-3 2.341355208956776e-2,-2.5099534040913685e-3 2.708149110539114e-2 -1.3798708928453786e-2c 3.6679390158233845e-3,-1.1288755524362423e-2 -2.509953404091367e-3,-2.341355208956776e-2 -1.3798708928453786e-2 -2.708149110539114e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.021491993027446,-0.37850800697255405 c 0.0,-1.1869699992528142e-2 -9.622293034917802e-3,-2.1491993027445946e-2 -2.1491993027445942e-2 -2.1491993027445946e-2c -1.1869699992528142e-2,-7.268095051344475e-19 -2.1491993027445946e-2,9.6222930349178e-3 -2.1491993027445946e-2 2.149199302744594e-2c -1.453619010268895e-18,1.1869699992528142e-2 9.6222930349178e-3,2.1491993027445946e-2 2.1491993027445935e-2 2.1491993027445946e-2c 1.1869699992528142e-2,2.1804285154033426e-18 2.1491993027445946e-2,-9.622293034917798e-3 2.1491993027445946e-2 -2.1491993027445935e-2Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4,5.684341886080803e-17 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.4000000000000001 -0.39999999999999986Z" /></g></g></g></svg>
− diagrams/exampleSymmTree.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="233.33333333333331" font-size="1" viewBox="0 0 300 233"><g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 0.0,-6.0 l 4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 0.0,-6.0 l -4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 4.0,-2.0 v 4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 4.0,2.0 l 4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 4.0,2.0 v 4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 4.0,2.0 l -4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 9.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,8.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">J</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 5.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">I</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 1.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">H</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 5.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">G</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 5.0,-2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,-2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">F</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -4.0,-2.0 l 4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -4.0,-2.0 v 4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -4.0,-2.0 l -4.0,4.0 " /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 1.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">E</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -3.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">D</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -7.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,-8.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">C</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -3.0,-2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.0,-2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">B</text></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 1.0,-6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="3.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,-6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">A</text></g></g></g></svg>
− diagrams/exampleSymmTreeWithDs.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="186.49538102064616" font-size="1" viewBox="0 0 300 186"><g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -1.1499999999999995,-2.6650635094610964 l 5.35,5.386751345948129 " /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -1.1499999999999995,-2.6650635094610964 l -3.1500000000000004,5.386751345948129 " /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -1.1499999999999995,-2.6650635094610964 l -5.35,5.386751345948129 " /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 6.7,4.165063509461096 l -2.500000000000001,-4.330127018922193 l -2.499999999999999,4.330127018922194 Z" /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M 0.7000000000000002,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -1.2999999999999998,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -3.3,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -6.299999999999999,2.7216878364870327 c 0.0,-0.1104569499661587 -8.954305003384129e-2,-0.2 -0.19999999999999996 -0.2c -0.1104569499661587,-6.763537510981779e-18 -0.2,8.954305003384128e-2 -0.2 0.19999999999999996c -1.3527075021963559e-17,0.1104569499661587 8.954305003384128e-2,0.2 0.19999999999999993 0.2c 0.1104569499661587,2.029061253294534e-17 0.2,-8.954305003384126e-2 0.2 -0.1999999999999999Z" /></g></g><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.0e-2" font-size="1.0em"><path d="M -0.6499999999999994,-1.1650635094610964 l -1.1102230246251565e-16,-3.0 h -1.0 l -1.1102230246251565e-16,3.0 Z" /></g></g></g></svg>
− diagrams/factorDiagram'Ex.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="88.71119695091163" height="200.0" font-size="1" viewBox="0 0 89 200"><g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.70820393249937,19.52139491384038 l -9.70820393249937,7.053423027509675 l -9.708203932499368,-7.053423027509678 l 3.7082039324993694,-11.41267819554184 l 12.0,-1.7763568394002505e-15 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 10.635254915624214,16.668225364954914 l 2.007391819076574,2.2294344764321834 l -0.9270509831248436,2.8531695488854605 l -2.9344428022014175,0.6237350724532771 l -2.0073918190765734,-2.2294344764321825 l 0.9270509831248416,-2.85316954888546 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 11.268507802572694,16.770858269286403 c 0.41042755402683123,-0.3695506295370295 1.0427248022992233,-0.33641333490829617 1.4122754318362527 7.401421911853501e-2c 0.3695506295370295,0.41042755402683123 0.3364133349082962,1.0427248022992233 -7.40142191185349e-2 1.4122754318362527c -0.4104275540268312,0.36955062953702955 -1.0427248022992233,0.3364133349082963 -1.4122754318362527 -7.401421911853479e-2c -0.36955062953702955,-0.4104275540268312 -0.3364133349082963,-1.0427248022992233 7.401421911853467e-2 -1.4122754318362527Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.106321259312285,16.794863802456717 c -0.1148264561501838,-0.5402160029688607 0.230019906947185,-1.0712328354013818 0.7702359099160456 -1.1860592915515658c 0.5402160029688607,-0.11482645615018383 1.0712328354013818,0.23001990694718494 1.1860592915515658 0.7702359099160456c 0.11482645615018387,0.5402160029688607 -0.23001990694718488,1.0712328354013818 -0.7702359099160454 1.1860592915515655c -0.5402160029688607,0.1148264561501839 -1.0712328354013818,-0.23001990694718488 -1.1860592915515655 -0.7702359099160454Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.546017389238962,19.54540044701069 c -0.525254010177015,-0.17066537343183139 -0.8127048953520382,-0.7348195004930859 -0.6420395219202069 -1.2600735106701006c 0.17066537343183136,-0.525254010177015 0.7348195004930858,-0.8127048953520382 1.2600735106701006 -0.6420395219202069c 0.525254010177015,0.17066537343183133 0.8127048953520382,0.7348195004930858 0.6420395219202069 1.2600735106701006c -0.1706653734318313,0.525254010177015 -0.7348195004930858,0.8127048953520382 -1.2600735106701004 0.6420395219202069Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.147900062426048,22.271931558394343 c -0.4104275540268313,0.36955062953702933 -1.0427248022992233,0.3364133349082958 -1.4122754318362527 -7.401421911853545e-2c -0.36955062953702933,-0.4104275540268313 -0.33641333490829584,-1.0427248022992233 7.401421911853534e-2 -1.4122754318362525c 0.41042755402683123,-0.3695506295370294 1.0427248022992233,-0.3364133349082959 1.4122754318362523 7.401421911853523e-2c 0.3695506295370294,0.41042755402683123 0.33641333490829595,1.0427248022992233 -7.401421911853512e-2 1.4122754318362523Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 11.310086605686456,22.247926025224032 c 0.11482645615018365,0.5402160029688607 -0.23001990694718527,1.0712328354013816 -0.7702359099160458 1.1860592915515653c -0.5402160029688607,0.11482645615018368 -1.0712328354013816,-0.23001990694718522 -1.1860592915515653 -0.7702359099160457c -0.11482645615018372,-0.5402160029688607 0.23001990694718516,-1.0712328354013816 0.7702359099160456 -1.1860592915515653c 0.5402160029688607,-0.11482645615018375 1.0712328354013816,0.2300199069471851 1.1860592915515653 0.7702359099160455Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 12.870390475759779,19.497389380670064 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.572949016875159,6.345360961421114 l 2.740636372927803,-1.2202099292273991 l 2.4270509831248415,1.7633557568774205 l -0.31358538980296147,2.9835656861048205 l -2.740636372927802,1.2202099292273993 l -2.4270509831248415,-1.7633557568774185 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.866244613129997,5.774816988446533 c -0.22463444516813538,-0.5045372245332015 2.2715900335983363e-3,-1.095647655550266 0.5068088145667997 -1.3202821007184014c 0.5045372245332015,-0.2246344451681354 1.095647655550266,2.2715900335983363e-3 1.3202821007184014 0.5068088145667996c 0.22463444516813544,0.5045372245332015 -2.271590033598281e-3,1.095647655550266 -0.5068088145667995 1.3202821007184014c -0.5045372245332015,0.22463444516813547 -1.095647655550266,-2.2715900335982253e-3 -1.3202821007184014 -0.5068088145667994Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.911905850627527,8.78965322386385 c -0.5492592761847134,-5.7729476185973e-2 -0.9477229082865934,-0.5497910824512129 -0.8899934321006204 -1.0990503586359262c 5.772947618597297e-2,-0.5492592761847134 0.5497910824512128,-0.9477229082865934 1.099050358635926 -0.8899934321006204c 0.5492592761847134,5.772947618597293e-2 0.9477229082865934,0.5497910824512127 0.8899934321006204 1.099050358635926c -5.77294761859729e-2,0.5492592761847134 -0.5497910824512127,0.9477229082865934 -1.099050358635926 0.8899934321006204Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 5.045661237497529,11.123552953715851 c -0.32462483101657813,0.4468077483472284 -0.949994498320192,0.5458565730990531 -1.3968022466674204 0.22123174208247498c -0.4468077483472284,-0.32462483101657813 -0.5458565730990531,-0.949994498320192 -0.2212317420824751 -1.3968022466674204c 0.3246248310165781,-0.4468077483472285 0.9499944983201919,-0.5458565730990532 1.3968022466674201 -0.2212317420824751c 0.4468077483472285,0.3246248310165781 0.5458565730990532,0.9499944983201918 0.2212317420824752 1.39680224666742Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.133755386870002,10.442616448150536 c 0.22463444516813524,0.5045372245332015 -2.271590033598614e-3,1.095647655550266 -0.5068088145667999 1.3202821007184011c -0.5045372245332015,0.22463444516813527 -1.095647655550266,-2.271590033598614e-3 -1.3202821007184011 -0.5068088145667999c -0.2246344451681353,-0.5045372245332015 2.2715900335985584e-3,-1.0956476555502659 0.5068088145667997 -1.3202821007184011c 0.5045372245332015,-0.22463444516813533 1.0956476555502659,2.271590033598503e-3 1.3202821007184011 0.5068088145667997Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.088094149372473,7.427780212733221 c 0.5492592761847134,5.772947618597313e-2 0.9477229082865932,0.549791082451213 0.8899934321006201 1.0990503586359264c -5.772947618597309e-2,0.5492592761847134 -0.5497910824512129,0.9477229082865932 -1.0990503586359262 0.8899934321006201c -0.5492592761847134,-5.772947618597306e-2 -0.9477229082865932,-0.5497910824512129 -0.8899934321006201 -1.099050358635926c 5.7729476185973023e-2,-0.5492592761847134 0.5497910824512129,-0.9477229082865932 1.099050358635926 -0.8899934321006202Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.954338762502472,5.093880482881219 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.427050983124841,9.872072475175953 l -0.313585389802959,-2.98356568610482 l 2.427050983124843,-1.763355756877418 l 2.7406363729278023,1.2202099292274018 l 0.31358538980295925,2.9835656861048188 l -2.4270509831248415,1.763355756877419 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.879037222837164,9.41682400346977 c -0.5492592761847134,5.772947618597371e-2 -1.0413208824499538,-0.34073415591590556 -1.0990503586359275 -0.8899934321006189c -5.7729476185973745e-2,-0.5492592761847134 0.3407341559159055,-1.0413208824499538 0.8899934321006187 -1.0990503586359275c 0.5492592761847134,-5.772947618597378e-2 1.0413208824499538,0.34073415591590545 1.0990503586359275 0.8899934321006187c 5.7729476185973815e-2,0.5492592761847134 -0.3407341559159054,1.0413208824499538 -0.8899934321006184 1.0990503586359275Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.306664471584796,11.256089734302137 c -0.22463444516813474,0.5045372245332017 -0.8157448761851991,0.7314432597349363 -1.3202821007184007 0.5068088145668017c -0.5045372245332017,-0.22463444516813472 -0.7314432597349363,-0.815744876185199 -0.5068088145668017 -1.3202821007184005c 0.2246344451681347,-0.5045372245332017 0.8157448761851989,-0.7314432597349364 1.3202821007184005 -0.5068088145668017c 0.5045372245332017,0.22463444516813466 0.7314432597349364,0.8157448761851989 0.5068088145668017 1.3202821007184002Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.4276272487476303,9.947982449130903 c 0.3246248310165786,0.4468077483472281 0.22557600626475466,1.0721774156508421 -0.22123174208247331 1.3968022466674206c -0.4468077483472281,0.3246248310165786 -1.0721774156508421,0.2255760062647547 -1.3968022466674204 -0.22123174208247331c -0.32462483101657863,-0.44680774834722803 -0.22557600626475477,-1.072177415650842 0.2212317420824732 -1.3968022466674204c 0.44680774834722803,-0.32462483101657863 1.072177415650842,-0.22557600626475477 1.3968022466674204 0.2212317420824731Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.1209627771628323,6.8006094331273 c 0.5492592761847134,-5.7729476185973495e-2 1.0413208824499536,0.34073415591590595 1.099050358635927 0.8899934321006192c 5.772947618597353e-2,0.5492592761847134 -0.3407341559159059,1.0413208824499536 -0.8899934321006191 1.099050358635927c -0.5492592761847134,5.7729476185973565e-2 -1.0413208824499536,-0.34073415591590583 -1.099050358635927 -0.889993432100619c -5.77294761859736e-2,-0.5492592761847134 0.3407341559159058,-1.0413208824499536 0.8899934321006189 -1.099050358635927Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -5.6933355284152,4.961343702294932 c 0.2246344451681349,-0.5045372245332016 0.8157448761851993,-0.731443259734936 1.3202821007184007 -0.506808814566801c 0.5045372245332016,0.22463444516813488 0.731443259734936,0.8157448761851992 0.506808814566801 1.3202821007184007c -0.22463444516813486,0.5045372245332016 -0.8157448761851991,0.7314432597349361 -1.3202821007184005 0.5068088145668012c -0.5045372245332016,-0.22463444516813483 -0.7314432597349361,-0.8157448761851991 -0.5068088145668013 -1.3202821007184005Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.572372751252365,6.269450987466167 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.781152949374526,22.374564462725836 l -2.9344428022014166,-0.6237350724532794 l -0.9270509831248407,-2.853169548885461 l 2.007391819076576,-2.229434476432182 l 2.9344428022014153,0.6237350724532787 l 0.9270509831248421,2.8531695488854596 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -9.353791404218837,22.66374940685955 c -0.11482645615018319,0.5402160029688609 -0.6458432885827037,0.8850623660662303 -1.1860592915515644 0.7702359099160472c -0.5402160029688609,-0.11482645615018316 -0.8850623660662303,-0.6458432885827037 -0.7702359099160472 -1.1860592915515644c 0.11482645615018312,-0.5402160029688609 0.6458432885827037,-0.8850623660662303 1.1860592915515642 -0.7702359099160472c 0.5402160029688609,0.1148264561501831 0.8850623660662303,0.6458432885827036 0.7702359099160472 1.1860592915515642Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.809638849708324,20.785641907439555 c 0.41042755402683156,0.369550629537029 0.44356484865556584,1.0018478778094209 7.40142191185369e-2 1.4122754318362525c -0.369550629537029,0.41042755402683156 -1.0018478778094209,0.4435648486555659 -1.4122754318362523 7.4014219118537e-2c -0.4104275540268316,-0.36955062953702894 -0.4435648486555659,-1.0018478778094209 -7.401421911853712e-2 -1.4122754318362523c 0.36955062953702894,-0.4104275540268316 1.0018478778094209,-0.44356484865556595 1.4122754318362523 -7.401421911853712e-2Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -7.164051377988852,17.643287414420378 c 0.5252540101770148,-0.17066537343183175 1.0894081372382696,0.11678551174319085 1.2600735106701013 0.6420395219202055c 0.17066537343183177,0.5252540101770148 -0.1167855117431908,1.0894081372382696 -0.6420395219202054 1.260073510670101c -0.5252540101770148,0.1706653734318318 -1.0894081372382696,-0.11678551174319074 -1.260073510670101 -0.6420395219202053c -0.17066537343183183,-0.5252540101770148 0.11678551174319068,-1.0894081372382696 0.6420395219202052 -1.260073510670101Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -10.062616460779894,16.379040420821198 c 0.11482645615018335,-0.5402160029688607 0.6458432885827039,-0.88506236606623 1.1860592915515644 -0.7702359099160467c 0.5402160029688607,0.11482645615018332 0.88506236606623,0.6458432885827039 0.7702359099160467 1.1860592915515644c -0.11482645615018328,0.5402160029688607 -0.6458432885827039,0.88506236606623 -1.1860592915515644 0.7702359099160467c -0.5402160029688607,-0.11482645615018325 -0.88506236606623,-0.6458432885827038 -0.7702359099160467 -1.1860592915515642Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -12.606769015290405,18.257147920241195 c -0.4104275540268314,-0.3695506295370291 -0.4435648486555654,-1.0018478778094209 -7.401421911853634e-2 -1.4122754318362523c 0.3695506295370291,-0.4104275540268314 1.0018478778094209,-0.44356484865556545 1.4122754318362523 -7.401421911853645e-2c 0.41042755402683145,0.36955062953702905 0.44356484865556545,1.0018478778094209 7.401421911853656e-2 1.4122754318362523c -0.36955062953702905,0.41042755402683145 -1.0018478778094209,0.4435648486555655 -1.412275431836252 7.401421911853656e-2Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -12.25235648700988,21.39950241326037 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202055 1.2600735106701009Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0000000000000018,26.57481794135006 l -1.5000000000000013,2.598076211353315 l -3.0,-1.7763568394002505e-15 l -1.499999999999999,-2.598076211353317 l 1.5000000000000004,-2.5980762113533142 h 2.999999999999999 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.0980762113533182,27.208792537565618 c 0.47829262347620083,0.2761423749153964 0.6421677786998361,0.8877327803082375 0.36602540378443976 1.3660254037844382c -0.27614237491539634,0.47829262347620083 -0.8877327803082375,0.6421677786998361 -1.3660254037844382 0.3660254037844398c -0.4782926234762009,-0.27614237491539634 -0.6421677786998361,-0.8877327803082374 -0.3660254037844399 -1.3660254037844382c 0.2761423749153963,-0.4782926234762009 0.8877327803082373,-0.6421677786998362 1.366025403784438 -0.36602540378443993Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0980762113533165,24.208792537565618 c 0.47829262347620044,-0.27614237491539695 1.0898830288690418,-0.11226721969176262 1.3660254037844388 0.3660254037844377c 0.276142374915397,0.47829262347620044 0.11226721969176262,1.0898830288690418 -0.3660254037844376 1.3660254037844386c -0.4782926234762004,0.276142374915397 -1.0898830288690418,0.11226721969176268 -1.3660254037844386 -0.3660254037844376c -0.27614237491539706,-0.4782926234762004 -0.11226721969176273,-1.0898830288690418 0.3660254037844375 -1.3660254037844384Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9999999999999993,23.574817941350055 c -2.14605735894022e-16,-0.5522847498307935 0.44771525016920605,-1.0000000000000002 0.9999999999999993 -1.0000000000000004c 0.5522847498307935,-2.484234234489309e-16 1.0000000000000002,0.447715250169206 1.0000000000000004 0.9999999999999993c 2.822411110038398e-16,0.5522847498307935 -0.44771525016920594,1.0000000000000002 -0.9999999999999991 1.0000000000000004c -0.5522847498307935,3.160587985587487e-16 -1.0000000000000002,-0.4477152501692059 -1.0000000000000004 -0.9999999999999991Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.0980762113533142,25.940843345134493 c -0.47829262347620066,-0.2761423749153966 -0.6421677786998357,-0.8877327803082378 -0.36602540378443915 -1.3660254037844384c 0.27614237491539656,-0.47829262347620066 0.8877327803082378,-0.6421677786998358 1.3660254037844384 -0.3660254037844392c 0.4782926234762007,0.27614237491539656 0.6421677786998358,0.8877327803082378 0.36602540378443926 1.3660254037844384c -0.2761423749153965,0.4782926234762007 -0.8877327803082377,0.6421677786998358 -1.3660254037844382 0.3660254037844393Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.0980762113533142,28.940843345134493 c -0.47829262347620055,0.2761423749153968 -1.0898830288690418,0.11226721969176218 -1.3660254037844386 -0.36602540378443826c -0.27614237491539684,-0.47829262347620055 -0.11226721969176223,-1.0898830288690418 0.36602540378443815 -1.3660254037844386c 0.4782926234762005,-0.27614237491539684 1.0898830288690418,-0.11226721969176229 1.3660254037844384 0.36602540378443815c 0.2761423749153969,0.4782926234762005 0.11226721969176229,1.0898830288690418 -0.36602540378443804 1.3660254037844384Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0000000000000018,29.574817941350055 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0 0.9999999999999994Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.70820393249937,-19.521394913840385 l -9.70820393249937,-7.053423027509675 l -9.708203932499368,7.053423027509678 l 3.7082039324993694,11.41267819554184 l 12.0,1.7763568394002505e-15 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 10.635254915624214,-16.66822536495492 l 2.007391819076574,-2.2294344764321834 l -0.9270509831248436,-2.8531695488854605 l -2.9344428022014175,-0.6237350724532771 l -2.0073918190765734,2.2294344764321825 l 0.9270509831248416,2.85316954888546 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 11.268507802572694,-16.77085826928641 c 0.41042755402683123,0.3695506295370295 1.0427248022992233,0.33641333490829617 1.4122754318362527 -7.401421911853501e-2c 0.3695506295370295,-0.41042755402683123 0.3364133349082962,-1.0427248022992233 -7.40142191185349e-2 -1.4122754318362527c -0.4104275540268312,-0.36955062953702955 -1.0427248022992233,-0.3364133349082963 -1.4122754318362527 7.401421911853479e-2c -0.36955062953702955,0.4104275540268312 -0.3364133349082963,1.0427248022992233 7.401421911853467e-2 1.4122754318362527Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.106321259312285,-16.794863802456724 c -0.1148264561501838,0.5402160029688607 0.230019906947185,1.0712328354013818 0.7702359099160456 1.1860592915515658c 0.5402160029688607,0.11482645615018383 1.0712328354013818,-0.23001990694718494 1.1860592915515658 -0.7702359099160456c 0.11482645615018387,-0.5402160029688607 -0.23001990694718488,-1.0712328354013818 -0.7702359099160454 -1.1860592915515655c -0.5402160029688607,-0.1148264561501839 -1.0712328354013818,0.23001990694718488 -1.1860592915515655 0.7702359099160454Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.546017389238962,-19.545400447010696 c -0.525254010177015,0.17066537343183139 -0.8127048953520382,0.7348195004930859 -0.6420395219202069 1.2600735106701006c 0.17066537343183136,0.525254010177015 0.7348195004930858,0.8127048953520382 1.2600735106701006 0.6420395219202069c 0.525254010177015,-0.17066537343183133 0.8127048953520382,-0.7348195004930858 0.6420395219202069 -1.2600735106701006c -0.1706653734318313,-0.525254010177015 -0.7348195004930858,-0.8127048953520382 -1.2600735106701004 -0.6420395219202069Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.147900062426048,-22.27193155839435 c -0.4104275540268313,-0.36955062953702933 -1.0427248022992233,-0.3364133349082958 -1.4122754318362527 7.401421911853545e-2c -0.36955062953702933,0.4104275540268313 -0.33641333490829584,1.0427248022992233 7.401421911853534e-2 1.4122754318362525c 0.41042755402683123,0.3695506295370294 1.0427248022992233,0.3364133349082959 1.4122754318362523 -7.401421911853523e-2c 0.3695506295370294,-0.41042755402683123 0.33641333490829595,-1.0427248022992233 -7.401421911853512e-2 -1.4122754318362523Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 11.310086605686456,-22.24792602522404 c 0.11482645615018365,-0.5402160029688607 -0.23001990694718527,-1.0712328354013816 -0.7702359099160458 -1.1860592915515653c -0.5402160029688607,-0.11482645615018368 -1.0712328354013816,0.23001990694718522 -1.1860592915515653 0.7702359099160457c -0.11482645615018372,0.5402160029688607 0.23001990694718516,1.0712328354013816 0.7702359099160456 1.1860592915515653c 0.5402160029688607,0.11482645615018375 1.0712328354013816,-0.2300199069471851 1.1860592915515653 -0.7702359099160455Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 12.870390475759779,-19.49738938067007 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.572949016875159,-6.345360961421121 l 2.740636372927803,1.2202099292273991 l 2.4270509831248415,-1.7633557568774205 l -0.31358538980296147,-2.9835656861048205 l -2.740636372927802,-1.2202099292273993 l -2.4270509831248415,1.7633557568774185 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.866244613129997,-5.77481698844654 c -0.22463444516813538,0.5045372245332015 2.2715900335983363e-3,1.095647655550266 0.5068088145667997 1.3202821007184014c 0.5045372245332015,0.2246344451681354 1.095647655550266,-2.2715900335983363e-3 1.3202821007184014 -0.5068088145667996c 0.22463444516813544,-0.5045372245332015 -2.271590033598281e-3,-1.095647655550266 -0.5068088145667995 -1.3202821007184014c -0.5045372245332015,-0.22463444516813547 -1.095647655550266,2.2715900335982253e-3 -1.3202821007184014 0.5068088145667994Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.911905850627527,-8.789653223863857 c -0.5492592761847134,5.7729476185973e-2 -0.9477229082865934,0.5497910824512129 -0.8899934321006204 1.0990503586359262c 5.772947618597297e-2,0.5492592761847134 0.5497910824512128,0.9477229082865934 1.099050358635926 0.8899934321006204c 0.5492592761847134,-5.772947618597293e-2 0.9477229082865934,-0.5497910824512127 0.8899934321006204 -1.099050358635926c -5.77294761859729e-2,-0.5492592761847134 -0.5497910824512127,-0.9477229082865934 -1.099050358635926 -0.8899934321006204Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 5.045661237497529,-11.123552953715858 c -0.32462483101657813,-0.4468077483472284 -0.949994498320192,-0.5458565730990531 -1.3968022466674204 -0.22123174208247498c -0.4468077483472284,0.32462483101657813 -0.5458565730990531,0.949994498320192 -0.2212317420824751 1.3968022466674204c 0.3246248310165781,0.4468077483472285 0.9499944983201919,0.5458565730990532 1.3968022466674201 0.2212317420824751c 0.4468077483472285,-0.3246248310165781 0.5458565730990532,-0.9499944983201918 0.2212317420824752 -1.39680224666742Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 8.133755386870002,-10.442616448150543 c 0.22463444516813524,-0.5045372245332015 -2.271590033598614e-3,-1.095647655550266 -0.5068088145667999 -1.3202821007184011c -0.5045372245332015,-0.22463444516813527 -1.095647655550266,2.271590033598614e-3 -1.3202821007184011 0.5068088145667999c -0.2246344451681353,0.5045372245332015 2.2715900335985584e-3,1.0956476555502659 0.5068088145667997 1.3202821007184011c 0.5045372245332015,0.22463444516813533 1.0956476555502659,-2.271590033598503e-3 1.3202821007184011 -0.5068088145667997Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.088094149372473,-7.427780212733228 c 0.5492592761847134,-5.772947618597313e-2 0.9477229082865932,-0.549791082451213 0.8899934321006201 -1.0990503586359264c -5.772947618597309e-2,-0.5492592761847134 -0.5497910824512129,-0.9477229082865932 -1.0990503586359262 -0.8899934321006201c -0.5492592761847134,5.772947618597306e-2 -0.9477229082865932,0.5497910824512129 -0.8899934321006201 1.099050358635926c 5.7729476185973023e-2,0.5492592761847134 0.5497910824512129,0.9477229082865932 1.099050358635926 0.8899934321006202Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.954338762502472,-5.093880482881226 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.427050983124841,-9.87207247517596 l -0.313585389802959,2.98356568610482 l 2.427050983124843,1.763355756877418 l 2.7406363729278023,-1.2202099292274018 l 0.31358538980295925,-2.9835656861048188 l -2.4270509831248415,-1.763355756877419 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.879037222837164,-9.416824003469777 c -0.5492592761847134,-5.772947618597371e-2 -1.0413208824499538,0.34073415591590556 -1.0990503586359275 0.8899934321006189c -5.7729476185973745e-2,0.5492592761847134 0.3407341559159055,1.0413208824499538 0.8899934321006187 1.0990503586359275c 0.5492592761847134,5.772947618597378e-2 1.0413208824499538,-0.34073415591590545 1.0990503586359275 -0.8899934321006187c 5.7729476185973815e-2,-0.5492592761847134 -0.3407341559159054,-1.0413208824499538 -0.8899934321006184 -1.0990503586359275Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.306664471584796,-11.256089734302144 c -0.22463444516813474,-0.5045372245332017 -0.8157448761851991,-0.7314432597349363 -1.3202821007184007 -0.5068088145668017c -0.5045372245332017,0.22463444516813472 -0.7314432597349363,0.815744876185199 -0.5068088145668017 1.3202821007184005c 0.2246344451681347,0.5045372245332017 0.8157448761851989,0.7314432597349364 1.3202821007184005 0.5068088145668017c 0.5045372245332017,-0.22463444516813466 0.7314432597349364,-0.8157448761851989 0.5068088145668017 -1.3202821007184002Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.4276272487476303,-9.94798244913091 c 0.3246248310165786,-0.4468077483472281 0.22557600626475466,-1.0721774156508421 -0.22123174208247331 -1.3968022466674206c -0.4468077483472281,-0.3246248310165786 -1.0721774156508421,-0.2255760062647547 -1.3968022466674204 0.22123174208247331c -0.32462483101657863,0.44680774834722803 -0.22557600626475477,1.072177415650842 0.2212317420824732 1.3968022466674204c 0.44680774834722803,0.32462483101657863 1.072177415650842,0.22557600626475477 1.3968022466674204 -0.2212317420824731Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.1209627771628323,-6.800609433127307 c 0.5492592761847134,5.7729476185973495e-2 1.0413208824499536,-0.34073415591590595 1.099050358635927 -0.8899934321006192c 5.772947618597353e-2,-0.5492592761847134 -0.3407341559159059,-1.0413208824499536 -0.8899934321006191 -1.099050358635927c -0.5492592761847134,-5.7729476185973565e-2 -1.0413208824499536,0.34073415591590583 -1.099050358635927 0.889993432100619c -5.77294761859736e-2,0.5492592761847134 0.3407341559159058,1.0413208824499536 0.8899934321006189 1.099050358635927Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -5.6933355284152,-4.961343702294939 c 0.2246344451681349,0.5045372245332016 0.8157448761851993,0.731443259734936 1.3202821007184007 0.506808814566801c 0.5045372245332016,-0.22463444516813488 0.731443259734936,-0.8157448761851992 0.506808814566801 -1.3202821007184007c -0.22463444516813486,-0.5045372245332016 -0.8157448761851991,-0.7314432597349361 -1.3202821007184005 -0.5068088145668012c -0.5045372245332016,0.22463444516813483 -0.7314432597349361,0.8157448761851991 -0.5068088145668013 1.3202821007184005Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.572372751252365,-6.269450987466174 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.781152949374526,-22.374564462725843 l -2.9344428022014166,0.6237350724532794 l -0.9270509831248407,2.853169548885461 l 2.007391819076576,2.229434476432182 l 2.9344428022014153,-0.6237350724532787 l 0.9270509831248421,-2.8531695488854596 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -9.353791404218837,-22.66374940685956 c -0.11482645615018319,-0.5402160029688609 -0.6458432885827037,-0.8850623660662303 -1.1860592915515644 -0.7702359099160472c -0.5402160029688609,0.11482645615018316 -0.8850623660662303,0.6458432885827037 -0.7702359099160472 1.1860592915515644c 0.11482645615018312,0.5402160029688609 0.6458432885827037,0.8850623660662303 1.1860592915515642 0.7702359099160472c 0.5402160029688609,-0.1148264561501831 0.8850623660662303,-0.6458432885827036 0.7702359099160472 -1.1860592915515642Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.809638849708324,-20.78564190743956 c 0.41042755402683156,-0.369550629537029 0.44356484865556584,-1.0018478778094209 7.40142191185369e-2 -1.4122754318362525c -0.369550629537029,-0.41042755402683156 -1.0018478778094209,-0.4435648486555659 -1.4122754318362523 -7.4014219118537e-2c -0.4104275540268316,0.36955062953702894 -0.4435648486555659,1.0018478778094209 -7.401421911853712e-2 1.4122754318362523c 0.36955062953702894,0.4104275540268316 1.0018478778094209,0.44356484865556595 1.4122754318362523 7.401421911853712e-2Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -7.164051377988852,-17.643287414420385 c 0.5252540101770148,0.17066537343183175 1.0894081372382696,-0.11678551174319085 1.2600735106701013 -0.6420395219202055c 0.17066537343183177,-0.5252540101770148 -0.1167855117431908,-1.0894081372382696 -0.6420395219202054 -1.260073510670101c -0.5252540101770148,-0.1706653734318318 -1.0894081372382696,0.11678551174319074 -1.260073510670101 0.6420395219202053c -0.17066537343183183,0.5252540101770148 0.11678551174319068,1.0894081372382696 0.6420395219202052 1.260073510670101Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -10.062616460779894,-16.379040420821205 c 0.11482645615018335,0.5402160029688607 0.6458432885827039,0.88506236606623 1.1860592915515644 0.7702359099160467c 0.5402160029688607,-0.11482645615018332 0.88506236606623,-0.6458432885827039 0.7702359099160467 -1.1860592915515644c -0.11482645615018328,-0.5402160029688607 -0.6458432885827039,-0.88506236606623 -1.1860592915515644 -0.7702359099160467c -0.5402160029688607,0.11482645615018325 -0.88506236606623,0.6458432885827038 -0.7702359099160467 1.1860592915515642Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -12.606769015290405,-18.257147920241202 c -0.4104275540268314,0.3695506295370291 -0.4435648486555654,1.0018478778094209 -7.401421911853634e-2 1.4122754318362523c 0.3695506295370291,0.4104275540268314 1.0018478778094209,0.44356484865556545 1.4122754318362523 7.401421911853645e-2c 0.41042755402683145,-0.36955062953702905 0.44356484865556545,-1.0018478778094209 7.401421911853656e-2 -1.4122754318362523c -0.36955062953702905,-0.41042755402683145 -1.0018478778094209,-0.4435648486555655 -1.412275431836252 -7.401421911853656e-2Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -12.25235648700988,-21.39950241326038 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202055 -1.2600735106701009Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0000000000000018,-26.574817941350066 l -1.5000000000000013,-2.598076211353315 l -3.0,1.7763568394002505e-15 l -1.499999999999999,2.598076211353317 l 1.5000000000000004,2.5980762113533142 h 2.999999999999999 Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.0980762113533182,-27.208792537565625 c 0.47829262347620083,-0.2761423749153964 0.6421677786998361,-0.8877327803082375 0.36602540378443976 -1.3660254037844382c -0.27614237491539634,-0.47829262347620083 -0.8877327803082375,-0.6421677786998361 -1.3660254037844382 -0.3660254037844398c -0.4782926234762009,0.27614237491539634 -0.6421677786998361,0.8877327803082374 -0.3660254037844399 1.3660254037844382c 0.2761423749153963,0.4782926234762009 0.8877327803082373,0.6421677786998362 1.366025403784438 0.36602540378443993Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0980762113533165,-24.208792537565625 c 0.47829262347620044,0.27614237491539695 1.0898830288690418,0.11226721969176262 1.3660254037844388 -0.3660254037844377c 0.276142374915397,-0.47829262347620044 0.11226721969176262,-1.0898830288690418 -0.3660254037844376 -1.3660254037844386c -0.4782926234762004,-0.276142374915397 -1.0898830288690418,-0.11226721969176268 -1.3660254037844386 0.3660254037844376c -0.27614237491539706,0.4782926234762004 -0.11226721969176273,1.0898830288690418 0.3660254037844375 1.3660254037844384Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9999999999999993,-23.574817941350062 c -2.14605735894022e-16,0.5522847498307935 0.44771525016920605,1.0000000000000002 0.9999999999999993 1.0000000000000004c 0.5522847498307935,2.484234234489309e-16 1.0000000000000002,-0.447715250169206 1.0000000000000004 -0.9999999999999993c 2.822411110038398e-16,-0.5522847498307935 -0.44771525016920594,-1.0000000000000002 -0.9999999999999991 -1.0000000000000004c -0.5522847498307935,-3.160587985587487e-16 -1.0000000000000002,0.4477152501692059 -1.0000000000000004 0.9999999999999991Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.0980762113533142,-25.9408433451345 c -0.47829262347620066,0.2761423749153966 -0.6421677786998357,0.8877327803082378 -0.36602540378443915 1.3660254037844384c 0.27614237491539656,0.47829262347620066 0.8877327803082378,0.6421677786998358 1.3660254037844384 0.3660254037844392c 0.4782926234762007,-0.27614237491539656 0.6421677786998358,-0.8877327803082378 0.36602540378443926 -1.3660254037844384c -0.2761423749153965,-0.4782926234762007 -0.8877327803082377,-0.6421677786998358 -1.3660254037844382 -0.3660254037844393Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.0980762113533142,-28.9408433451345 c -0.47829262347620055,-0.2761423749153968 -1.0898830288690418,-0.11226721969176218 -1.3660254037844386 0.36602540378443826c -0.27614237491539684,0.47829262347620055 -0.11226721969176223,1.0898830288690418 0.36602540378443815 1.3660254037844386c 0.4782926234762005,0.27614237491539684 1.0898830288690418,0.11226721969176229 1.3660254037844384 -0.36602540378443815c 0.2761423749153969,-0.4782926234762005 0.11226721969176229,-1.0898830288690418 -0.36602540378443804 -1.3660254037844384Z" /></g></g><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.355598475455814,100.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0000000000000018,-29.574817941350062 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g></g></svg>
− diagrams/factorDiagramEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="382.9037060674176" font-size="1" viewBox="0 0 400 383"><g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 104.21983360508122,72.14677221605949 l -36.15358741611962,26.26711879777034 l -36.153587416119606,-26.267118797770348 l 13.809441577717202,-42.5010910013237 l 44.68829167680482,7.105427357601002e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 110.77586693101263,63.12316647624099 l 4.051851426802626,12.470316431350508 l -10.607884752734032,7.707079405040908 l -10.607884752734035,-7.707079405040906 l 4.051851426802627,-12.470316431350508 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 107.59692396893617,61.76442104669367 l 2.259214398010831,-1.9738161778191379 l 2.9517887657958886,0.5356706843959083 l 1.421605987418996,2.641786595570212 l -1.1790750949617692,2.758583317654352 l -2.891888582087558,0.7981105367000272 l -2.4270509831248424,-1.7633557568774179 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 108.89217550625114,60.056641714441206 c -0.14692809269956494,-0.5323819873655852 0.165544027763592,-1.0830716135629639 0.6979260151291771 -1.2299997062625287c 0.5323819873655852,-0.14692809269956497 1.0830716135629637,0.16554402776359195 1.2299997062625287 0.697926015129177c 0.146928092699565,0.5323819873655852 -0.1655440277635919,1.0830716135629637 -0.6979260151291768 1.2299997062625287c -0.5323819873655852,0.14692809269956505 -1.0830716135629637,-0.16554402776359184 -1.2299997062625285 -0.6979260151291767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.20389893728225,62.68394881924512 c -0.5078411658260448,-0.2170617312842266 -0.7435644721817544,-0.8047116383793291 -0.5265027408975278 -1.3125528042053736c 0.21706173128422657,-0.5078411658260448 0.804711638379329,-0.7435644721817544 1.3125528042053736 -0.5265027408975278c 0.5078411658260448,0.21706173128422654 0.7435644721817544,0.8047116383793289 0.5265027408975278 1.3125528042053736c -0.2170617312842265,0.5078411658260448 -0.8047116383793289,0.7435644721817544 -1.3125528042053733 0.5265027408975279Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 108.2053871224607,65.64199577817435 c -0.4863394830136129,0.261710435706553 -1.092753758623184,7.961261362987437e-2 -1.3544641943297369 -0.4067268693837384c -0.26171043570655306,-0.4863394830136129 -7.961261362987443e-2,-1.092753758623184 0.4067268693837383 -1.3544641943297369c 0.48633948301361285,-0.26171043570655306 1.0927537586231837,-7.961261362987448e-2 1.3544641943297366 0.4067268693837382c 0.2617104357065531,0.48633948301361285 7.961261362987454e-2,1.0927537586231837 -0.4067268693837382 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.14249903171118,66.70331289799365 c -9.861424997442805e-2,0.5434093066903097 -0.6190771767069561,0.9039869437744217 -1.1624864833972657 0.8053726937999935c -0.5434093066903097,-9.861424997442803e-2 -0.9039869437744217,-0.619077176706956 -0.8053726937999937 -1.1624864833972655c 9.861424997442798e-2,-0.5434093066903097 0.6190771767069558,-0.9039869437744217 1.1624864833972652 -0.8053726937999937c 0.5434093066903097,9.861424997442796e-2 0.9039869437744217,0.6190771767069558 0.8053726937999937 1.1624864833972652Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 113.80352949120372,65.06870674055529 c 0.3633695246596053,0.4159098862065129 0.3207771461426154,1.047640667283718 -9.513274006389738e-2 1.4110101919433233c -0.4159098862065129,0.3633695246596053 -1.047640667283718,0.32077714614261543 -1.411010191943323 -9.513274006389738e-2c -0.36336952465960537,-0.41590988620651287 -0.3207771461426155,-1.047640667283718 9.513274006389727e-2 -1.411010191943323c 0.41590988620651287,-0.36336952465960537 1.047640667283718,-0.32077714614261554 1.411010191943323 9.513274006389716e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 114.18466828981136,61.969069082299335 c 0.5517286358374671,-2.4778161606335395e-2 1.0190797352854946,0.4023996003533319 1.04385789689183 0.9541282361907988c 2.477816160633543e-2,0.5517286358374671 -0.40239960035333183,1.0190797352854946 -0.9541282361907988 1.04385789689183c -0.5517286358374671,2.477816160633546e-2 -1.0190797352854946,-0.4023996003533318 -1.04385789689183 -0.9541282361907986c -2.4778161606335496e-2,-0.5517286358374671 0.4023996003533317,-1.0190797352854946 0.9541282361907986 -1.04385789689183Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.99891013836795,59.738490300977965 c 0.3246248310165781,-0.44680774834722836 0.9499944983201918,-0.545856573099053 1.39680224666742 -0.22123174208247498c 0.44680774834722836,0.3246248310165781 0.545856573099053,0.9499944983201918 0.2212317420824751 1.39680224666742c -0.324624831016578,0.4468077483472284 -0.9499944983201918,0.5458565730990531 -1.39680224666742 0.2212317420824751c -0.4468077483472284,-0.324624831016578 -0.5458565730990531,-0.9499944983201917 -0.2212317420824752 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 95.38920918496231,65.72664546649501 l -1.1790750949617714,-2.7585833176543506 l 1.4216059874189944,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.13459449105154264,2.9969791996239428 l -2.427050983124841,1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.16526925965002,63.967055215381976 c -0.5517286358374673,-2.4778161606334753e-2 -0.9789063977971354,-0.4921292610543618 -0.9541282361908007 -1.0438578968918288c 2.477816160633472e-2,-0.5517286358374673 0.4921292610543617,-0.9789063977971354 1.0438578968918288 -0.9541282361908007c 0.5517286358374673,2.4778161606334687e-2 0.9789063977971354,0.49212926105436167 0.9541282361908007 1.0438578968918288c -2.4778161606334653e-2,0.5517286358374673 -0.4921292610543616,0.9789063977971354 -1.0438578968918286 0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 96.14228065096593,66.38458419243473 c -0.363369524659605,0.4159098862065135 -0.9951003057368102,0.4585022647235043 -1.4110101919433236 9.513274006389938e-2c -0.4159098862065135,-0.363369524659605 -0.45850226472350436,-0.9951003057368102 -9.513274006389949e-2 -1.4110101919433236c 0.3633695246596049,-0.41590988620651353 0.9951003057368102,-0.45850226472350436 1.4110101919433236 -9.51327400638996e-2c 0.41590988620651353,0.3633695246596049 0.4585022647235044,0.9951003057368101 9.51327400638996e-2 1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 99.2650273556485,66.3461991083964 c 9.861424997442873e-2,0.5434093066903097 -0.26196338710968253,1.0638722334228383 -0.8053726937999921 1.162486483397267c -0.5434093066903097,9.861424997442876e-2 -1.0638722334228383,-0.2619633871096825 -1.162486483397267 -0.805372693799992c -9.86142499744288e-2,-0.5434093066903097 0.2619633871096824,-1.0638722334228383 0.8053726937999919 -1.162486483397267c 0.5434093066903097,-9.861424997442883e-2 1.0638722334228383,0.26196338710968237 1.162486483397267 0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 101.18201741264771,63.88080471446088 c 0.48633948301361324,0.2617104357065525 0.6684373050902928,0.8681247113161232 0.40672686938374025 1.3544641943297364c -0.26171043570655245,0.48633948301361324 -0.8681247113161231,0.6684373050902928 -1.3544641943297362 0.4067268693837403c -0.4863394830136133,-0.26171043570655245 -0.6684373050902928,-0.868124711316123 -0.40672686938374036 -1.354464194329736c 0.2617104357065524,-0.4863394830136133 0.868124711316123,-0.6684373050902928 1.354464194329736 -0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.44971820957234,60.84489327414222 c 0.5078411658260445,-0.21706173128422712 1.0954910729211473,1.866157507148175e-2 1.3125528042053745 0.5265027408975262c 0.21706173128422715,0.5078411658260445 -1.8661575071481695e-2,1.0954910729211473 -0.526502740897526 1.3125528042053745c -0.5078411658260445,0.21706173128422718 -1.0954910729211473,-1.866157507148164e-2 -1.3125528042053745 -0.526502740897526c -0.2170617312842272,-0.5078411658260445 1.8661575071481584e-2,-1.0954910729211473 0.5265027408975258 -1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.61956598251957,59.524568023307864 c 0.1469280926995644,-0.5323819873655854 0.6976177188969426,-0.8448541078287432 1.2299997062625279 -0.6979260151291788c 0.5323819873655854,0.14692809269956436 0.8448541078287432,0.6976177188969426 0.6979260151291788 1.2299997062625279c -0.14692809269956433,0.5323819873655854 -0.6976177188969426,0.8448541078287432 -1.2299997062625279 0.6979260151291788c -0.5323819873655854,-0.14692809269956428 -0.8448541078287432,-0.6976177188969426 -0.6979260151291788 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.8227230830446,60.914060805562926 c -0.32462483101657846,-0.4468077483472281 -0.22557600626475444,-1.072177415650842 0.22123174208247354 -1.3968022466674204c 0.4468077483472281,-0.32462483101657846 1.072177415650842,-0.2255760062647545 1.3968022466674204 0.22123174208247354c 0.3246248310165785,0.44680774834722803 0.22557600626475455,1.072177415650842 -0.22123174208247343 1.3968022466674204c -0.44680774834722803,0.3246248310165785 -1.072177415650842,0.22557600626475455 -1.3968022466674201 -0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 95.38511720770795,78.56126684211205 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.33342919636198,79.1815595929037 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 96.24356600130982,78.04836756470614 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.17204141788191,75.0665973191802 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 95.41969451995254,72.48158266823529 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 92.30607826302497,72.23989236872208 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 90.17580919476251,74.52352414575768 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 90.63302337313658,77.61285669363534 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 107.59030301065742,82.53127466517799 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.54623001064722,84.67422691925543 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.3677820767011,81.55634675299616 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 104.8188647371788,79.75189647865633 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 101.8188647371788,80.61966395689147 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.6268432655487,83.50620257735982 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 102.1404168032327,86.2378898841915 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 105.21983360508122,86.75770961907614 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 115.13761465314224,72.15025305981865 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 117.16206405249574,72.85437763831507 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 114.141640359147,72.06061375091522 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.63784739223617,73.92717239589008 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.53609232391584,77.04849684271609 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 113.91299879605636,79.07416611951795 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 116.97870775507995,78.478809944741 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 118.42467782577575,75.71074366104503 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 83.85435870143262,20.622075474917303 l 13.112066651862813,1.7763568394002505e-15 l 4.051851426802627,12.470316431350504 l -10.607884752734032,7.7070794050409095 l -10.607884752734034,-7.707079405040909 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 81.57976760724512,23.22555446517132 l -1.1790750949617714,-2.7585833176543506 l 1.4216059874189944,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.13459449105154264,2.9969791996239428 l -2.427050983124841,1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 80.35582768193282,21.465964214058285 c -0.5517286358374673,-2.4778161606334753e-2 -0.9789063977971354,-0.4921292610543618 -0.9541282361908007 -1.0438578968918288c 2.477816160633472e-2,-0.5517286358374673 0.4921292610543617,-0.9789063977971354 1.0438578968918288 -0.9541282361908007c 0.5517286358374673,2.4778161606334687e-2 0.9789063977971354,0.49212926105436167 0.9541282361908007 1.0438578968918288c -2.4778161606334653e-2,0.5517286358374673 -0.4921292610543616,0.9789063977971354 -1.0438578968918286 0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.33283907324873,23.883493191111032 c -0.363369524659605,0.4159098862065135 -0.9951003057368102,0.4585022647235043 -1.4110101919433236 9.513274006389938e-2c -0.4159098862065135,-0.363369524659605 -0.45850226472350436,-0.9951003057368102 -9.513274006389949e-2 -1.4110101919433236c 0.3633695246596049,-0.41590988620651353 0.9951003057368102,-0.45850226472350436 1.4110101919433236 -9.51327400638996e-2c 0.41590988620651353,0.3633695246596049 0.4585022647235044,0.9951003057368101 9.51327400638996e-2 1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 85.4555857779313,23.845108107072704 c 9.861424997442873e-2,0.5434093066903097 -0.26196338710968253,1.0638722334228383 -0.8053726937999921 1.162486483397267c -0.5434093066903097,9.861424997442876e-2 -1.0638722334228383,-0.2619633871096825 -1.162486483397267 -0.805372693799992c -9.86142499744288e-2,-0.5434093066903097 0.2619633871096824,-1.0638722334228383 0.8053726937999919 -1.162486483397267c 0.5434093066903097,-9.861424997442883e-2 1.0638722334228383,0.26196338710968237 1.162486483397267 0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 87.37257583493052,21.379713713137185 c 0.48633948301361324,0.2617104357065525 0.6684373050902928,0.8681247113161232 0.40672686938374025 1.3544641943297364c -0.26171043570655245,0.48633948301361324 -0.8681247113161231,0.6684373050902928 -1.3544641943297362 0.4067268693837403c -0.4863394830136133,-0.26171043570655245 -0.6684373050902928,-0.868124711316123 -0.40672686938374036 -1.354464194329736c 0.2617104357065524,-0.4863394830136133 0.868124711316123,-0.6684373050902928 1.354464194329736 -0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 86.64027663185514,18.34380227281853 c 0.5078411658260445,-0.21706173128422712 1.0954910729211473,1.866157507148175e-2 1.3125528042053745 0.5265027408975262c 0.21706173128422715,0.5078411658260445 -1.8661575071481695e-2,1.0954910729211473 -0.526502740897526 1.3125528042053745c -0.5078411658260445,0.21706173128422718 -1.0954910729211473,-1.866157507148164e-2 -1.3125528042053745 -0.526502740897526c -0.2170617312842272,-0.5078411658260445 1.8661575071481584e-2,-1.0954910729211473 0.5265027408975258 -1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 83.81012440480238,17.02347702198417 c 0.1469280926995644,-0.5323819873655854 0.6976177188969426,-0.8448541078287432 1.2299997062625279 -0.6979260151291788c 0.5323819873655854,0.14692809269956436 0.8448541078287432,0.6976177188969426 0.6979260151291788 1.2299997062625279c -0.14692809269956433,0.5323819873655854 -0.6976177188969426,0.8448541078287432 -1.2299997062625279 0.6979260151291788c -0.5323819873655854,-0.14692809269956428 -0.8448541078287432,-0.6976177188969426 -0.6979260151291788 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.0132815053274,18.41296980423923 c -0.32462483101657846,-0.4468077483472281 -0.22557600626475444,-1.072177415650842 0.22123174208247354 -1.3968022466674204c 0.4468077483472281,-0.32462483101657846 1.072177415650842,-0.2255760062647545 1.3968022466674204 0.22123174208247354c 0.3246248310165785,0.44680774834722803 0.22557600626475455,1.072177415650842 -0.22123174208247343 1.3968022466674204c -0.44680774834722803,0.3246248310165785 -1.072177415650842,0.22557600626475455 -1.3968022466674201 -0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 81.57567562999076,36.060175840788375 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 79.52398761864478,36.680468591580016 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.43412442359262,35.54727656338247 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 83.36259984016472,32.56550631785653 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.61025294223535,29.980491666911615 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 78.49663668530778,29.738801367398413 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 76.36636761704531,32.022433144434004 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 76.82358179541939,35.11176569231166 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 93.78086143294023,40.030183663854295 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.73678843293003,42.17313591793174 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.55834049898391,39.05525575167247 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 91.0094231594616,37.250805477332655 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 88.0094231594616,38.11857295556777 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 86.8174016878315,41.00511157603613 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 88.3309752255155,43.736798882867795 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 91.41039202736403,44.256618617752444 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 101.32817307542504,29.649162058494973 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 103.35262247477854,30.353286636991385 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.33219878142981,29.559522749591537 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.82840581451897,31.426081394566392 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.72665074619864,34.5474058413924 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.10355721833916,36.573075118194275 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 103.16926617736276,35.97771894341733 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 104.61523624805855,33.20965265972134 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 93.78748239121899,19.26333004536998 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 95.08273392853395,17.555550713117515 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.39445735956507,20.18285781792143 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.39594554474353,23.14090477685066 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.333057453994,24.20222189666998 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 99.99408791348654,22.567615739231606 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.37522671209419,19.46797808097565 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 98.18946856065077,17.237399299654278 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.114215597825165,33.092391906267814 l 4.051851426802629,-12.470316431350504 l 13.112066651862811,8.881784197001252e-16 l 4.051851426802628,12.470316431350504 l -10.607884752734035,7.707079405040906 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 36.88738395318594,36.060175840788375 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 34.83569594183996,36.680468591580016 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 37.745832746787805,35.54727656338247 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 38.674308163359896,32.56550631785653 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.92196126543053,29.980491666911615 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 33.80834500850295,29.738801367398413 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 31.678075940240493,32.022433144434004 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.13529011861458,35.11176569231166 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 49.092569756135404,40.0301836638543 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 49.048496756125196,42.173135917931745 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 48.870048822179086,39.055255751672476 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.32113148265678,37.25080547733266 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 43.32113148265678,38.11857295556778 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 42.12911001102669,41.005111576036136 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 43.64268354871068,43.73679888286781 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.7221003505592,44.25661861775245 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 56.63988139862022,29.64916205849498 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.66433079797371,30.353286636991392 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.64390710462498,29.559522749591544 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.14011413771414,31.4260813945664 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.03835906939383,34.547405841392404 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.415265541534346,36.57307511819428 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.48097450055793,35.97771894341734 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.926944571253735,33.20965265972134 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 49.09919071441416,19.263330045369983 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 50.39444225172914,17.55555071311752 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 48.70616568276024,20.182857817921434 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 49.70765386793871,23.140904776850665 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 52.64476577718918,24.202221896669982 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.30579623668172,22.56761573923161 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.686935035289366,19.467978080975655 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.50117688384593,17.23739929965428 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 36.89147593044029,23.225554465171324 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.667536005128014,21.465964214058285 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 37.64454739644391,23.883493191111036 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 40.76729410112648,23.845108107072715 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 42.68428415812569,21.379713713137193 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.951984955050314,18.343802272818536 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.12183272799756,17.023477021984174 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.32498982852257,18.412969804239232 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 31.912658772842,83.30056231263242 l -10.607884752734032,-7.7070794050409095 l 4.051851426802626,-12.470316431350504 l 13.112066651862813,-8.881784197001252e-16 l 4.051851426802625,12.470316431350506 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.2831281784182,82.531274665178 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.239055178407995,84.67422691925545 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.060607244461885,81.55634675299618 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.51168990493958,79.75189647865635 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 29.511689904939587,80.61966395689149 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.31966843330949,83.50620257735983 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 29.833241970993484,86.23788988419152 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.91265877284201,86.75770961907615 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 42.83043982090301,72.15025305981867 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 44.8548892202565,72.85437763831509 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.83446552690777,72.06061375091524 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.330672559996934,73.9271723958901 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.22891749167662,77.0484968427161 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.60582396381714,79.07416611951797 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 44.67153292284072,78.47880994474102 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.117502993536526,75.71074366104504 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.289749136696955,61.76442104669368 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.58500067401193,60.05664171444122 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 34.896724105043035,62.68394881924514 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.8982122902215,65.64199577817436 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 38.83532419947197,66.70331289799367 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.49635465896451,65.0687067405553 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.87749345757216,61.96906908229935 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.69173530612872,59.73849030097798 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 23.0820343527231,65.72664546649501 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 21.858094427410812,63.96705521538198 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.83510581872671,66.38458419243473 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 26.95785252340929,66.3461991083964 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.874842580408497,63.88080471446088 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.14254337733312,60.84489327414223 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 25.31239115028036,59.52456802330787 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 22.515548250805377,60.914060805562926 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 23.07794237546873,78.56126684211206 l -2.987922881985716,0.26891792671030057 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.575346380805598,-1.5386978322177187 l 2.808704611919211,1.0541244722440266 l 0.9270509831248422,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 21.02625436412275,79.18155959290371 c -0.19405895681460333,0.5170682413141325 -0.7705414534069471,0.778919003372998 -1.2876096947210796 0.5848600465583946c -0.5170682413141325,-0.1940589568146033 -0.778919003372998,-0.770541453406947 -0.5848600465583947 -1.2876096947210796c 0.19405895681460328,-0.5170682413141325 0.770541453406947,-0.778919003372998 1.2876096947210793 -0.5848600465583949c 0.5170682413141325,0.19405895681460325 0.778919003372998,0.770541453406947 0.5848600465583949 1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.936391169070596,78.04836756470615 c 0.2832664491105157,0.4741081772169531 0.12855866102099328,1.0880816218972567 -0.34554951619595964 1.3713480710077723c -0.4741081772169531,0.28326644911051574 -1.0880816218972567,0.12855866102099334 -1.3713480710077721 -0.3455495161959595c -0.28326644911051574,-0.47410817721695303 -0.1285586610209934,-1.0880816218972567 0.3455495161959595 -1.3713480710077721c 0.47410817721695303,-0.2832664491105158 1.0880816218972567,-0.12855866102099345 1.371348071007772 0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 24.864866585642694,75.06659731918022 c 0.5472864412728883,7.41349856310742e-2 0.9308514815813537,0.5778965863127019 0.8567164959502794 1.12518302758559c -7.413498563107417e-2,0.5472864412728883 -0.5778965863127018,0.9308514815813537 -1.1251830275855899 0.8567164959502795c -0.5472864412728883,-7.413498563107412e-2 -0.9308514815813537,-0.5778965863127017 -0.8567164959502795 -1.1251830275855896c 7.41349856310741e-2,-0.5472864412728883 0.5778965863127017,-0.9308514815813537 1.1251830275855896 -0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.11251968771333,72.4815826682353 c 0.39918858054789336,-0.38166336221311603 1.0321941506011403,-0.3674563657073667 1.413857512814256 3.1732214840526685e-2c 0.38166336221311603,0.39918858054789336 0.3674563657073667,1.03219415060114 -3.1732214840526574e-2 1.413857512814256c -0.3991885805478933,0.3816633622131161 -1.03219415060114,0.36745636570736673 -1.413857512814256 -3.173221484052646e-2c -0.3816633622131161,-0.3991885805478933 -0.3674563657073668,-1.03219415060114 3.173221484052635e-2 -1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 19.998903430785745,72.2398923687221 c -4.9506423292738e-2,-0.5500614137970617 0.3562735712947437,-1.0361071796059347 0.9063349850918053 -1.0856136028986725c 0.5500614137970617,-4.9506423292738036e-2 1.0361071796059347,0.35627357129474363 1.0856136028986725 0.9063349850918052c 4.950642329273807e-2,0.5500614137970617 -0.3562735712947436,1.0361071796059345 -0.9063349850918051 1.0856136028986725c -0.5500614137970617,4.9506423292738105e-2 -1.0361071796059345,-0.3562735712947435 -1.0856136028986725 -0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 17.868634362523284,74.52352414575769 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.3854702351734047 0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 18.32584854089737,77.61285669363535 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202055 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 78.67413094169565,101.86060170536186 l -10.607884752734035,7.707079405040905 l -10.607884752734032,-7.707079405040908 l 4.051851426802626,-12.470316431350506 l 13.112066651862815,1.7763568394002505e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 78.98402723702263,98.41737185758902 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.00847663637613,99.12149643608544 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.98805294302738,98.32773254868559 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.48425997611656,100.19429119366045 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.38250490779623,103.31561564048646 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.75941137993675,105.34128491728832 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 80.82512033896035,104.74592874251137 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.27109040965614,101.9778624588154 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 71.44333655281658,88.03153984446402 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 72.73858809013154,86.32376051221156 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.05031152116266,88.95106761701547 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 72.05179970634111,91.90911457594471 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 74.98891161559159,92.97043169576402 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.64994207508413,91.33582553832565 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 78.03108087369176,88.23618788006969 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.84532272224835,86.00560909874832 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 59.235621768842705,91.99376426426538 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.011681843530425,90.23417401315234 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.98869323484632,92.6517029902051 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 63.11143993952889,92.61331790616677 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.0284299965281,90.14792351223124 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 64.29613079345273,87.11201207191259 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 61.46597856639997,85.79168682107823 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.66913566692498,87.18117960333329 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 59.23152979158834,104.82838563988241 l -2.987922881985716,0.26891792671030057 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.575346380805598,-1.5386978322177187 l 2.808704611919211,1.0541244722440266 l 0.9270509831248422,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 57.17984178024236,105.44867839067406 c -0.19405895681460333,0.5170682413141325 -0.7705414534069471,0.778919003372998 -1.2876096947210796 0.5848600465583946c -0.5170682413141325,-0.1940589568146033 -0.778919003372998,-0.770541453406947 -0.5848600465583947 -1.2876096947210796c 0.19405895681460328,-0.5170682413141325 0.770541453406947,-0.778919003372998 1.2876096947210793 -0.5848600465583949c 0.5170682413141325,0.19405895681460325 0.778919003372998,0.770541453406947 0.5848600465583949 1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 60.08997858519021,104.3154863624765 c 0.2832664491105157,0.4741081772169531 0.12855866102099328,1.0880816218972567 -0.34554951619595964 1.3713480710077723c -0.4741081772169531,0.28326644911051574 -1.0880816218972567,0.12855866102099334 -1.3713480710077721 -0.3455495161959595c -0.28326644911051574,-0.47410817721695303 -0.1285586610209934,-1.0880816218972567 0.3455495161959595 -1.3713480710077721c 0.47410817721695303,-0.2832664491105158 1.0880816218972567,-0.12855866102099345 1.371348071007772 0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 61.0184540017623,101.33371611695057 c 0.5472864412728883,7.41349856310742e-2 0.9308514815813537,0.5778965863127019 0.8567164959502794 1.12518302758559c -7.413498563107417e-2,0.5472864412728883 -0.5778965863127018,0.9308514815813537 -1.1251830275855899 0.8567164959502795c -0.5472864412728883,-7.413498563107412e-2 -0.9308514815813537,-0.5778965863127017 -0.8567164959502795 -1.1251830275855896c 7.41349856310741e-2,-0.5472864412728883 0.5778965863127017,-0.9308514815813537 1.1251830275855896 -0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.266107103832944,98.74870146600566 c 0.39918858054789336,-0.38166336221311603 1.0321941506011403,-0.3674563657073667 1.413857512814256 3.1732214840526685e-2c 0.38166336221311603,0.39918858054789336 0.3674563657073667,1.03219415060114 -3.1732214840526574e-2 1.413857512814256c -0.3991885805478933,0.3816633622131161 -1.03219415060114,0.36745636570736673 -1.413857512814256 -3.173221484052646e-2c -0.3816633622131161,-0.3991885805478933 -0.3674563657073668,-1.03219415060114 3.173221484052635e-2 -1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 56.15249084690536,98.50701116649245 c -4.9506423292738e-2,-0.5500614137970617 0.3562735712947437,-1.0361071796059347 0.9063349850918053 -1.0856136028986725c 0.5500614137970617,-4.9506423292738036e-2 1.0361071796059347,0.35627357129474363 1.0856136028986725 0.9063349850918052c 4.950642329273807e-2,0.5500614137970617 -0.3562735712947436,1.0361071796059345 -0.9063349850918051 1.0856136028986725c -0.5500614137970617,4.9506423292738105e-2 -1.0361071796059345,-0.3562735712947435 -1.0856136028986725 -0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 54.022221778642894,100.79064294352804 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.3854702351734047 0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 54.47943595701698,103.8799754914057 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202055 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 71.43671559453782,108.79839346294835 l -0.667562801868943,2.92478373654547 l -2.702906603707257,1.3016512173526746 l -2.702906603707256,-1.3016512173526742 l -0.6675628018689435,-2.9247837365454705 l 1.8704694055761992,-2.3454944474040893 h 2.9999999999999996 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.39264259452762,110.9413457170258 c 0.4317936047046944,0.3443439092416016 0.5026855898508984,0.9735276796220691 0.15834168060929676 1.4053212843267633c -0.3443439092416016,0.4317936047046944 -0.9735276796220691,0.5026855898508984 -1.4053212843267633 0.15834168060929688c -0.43179360470469447,-0.3443439092416015 -0.5026855898508984,-0.9735276796220691 -0.15834168060929688 -1.4053212843267633c 0.3443439092416015,-0.43179360470469447 0.973527679622069,-0.5026855898508984 1.4053212843267633 -0.158341680609297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.2141946605815,107.82346555076653 c 0.5384378180823963,-0.12289491834217772 1.0745539277959606,0.21396916014311274 1.1974488461381383 0.752406978225509c 0.12289491834217775,0.5384378180823963 -0.21396916014311268,1.0745539277959606 -0.7524069782255087 1.1974488461381383c -0.5384378180823963,0.12289491834217779 -1.0745539277959606,-0.21396916014311262 -1.1974488461381383 -0.7524069782255087c -0.12289491834217782,-0.5384378180823963 0.21396916014311257,-1.0745539277959606 0.7524069782255085 -1.1974488461381383Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 68.6652773210592,106.01901527642671 c 0.2396273723141898,-0.49759136581482083 0.8372612412051563,-0.706712501099051 1.334852607019977 -0.46708512878486136c 0.49759136581482083,0.23962737231418976 0.7067125010990511,0.8372612412051563 0.4670851287848614 1.3348526070199769c -0.23962737231418973,0.4975913658148209 -0.8372612412051563,0.7067125010990511 -1.3348526070199769 0.4670851287848614c -0.4975913658148209,-0.2396273723141897 -0.7067125010990511,-0.8372612412051562 -0.46708512878486147 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.6652773210592,106.88678275466184 c -0.23962737231418996,-0.4975913658148208 -3.0506237029960026e-2,-1.0952252347057874 0.4670851287848606 -1.3348526070199773c 0.4975913658148208,-0.23962737231418998 1.0952252347057874,-3.050623702996008e-2 1.3348526070199773 0.46708512878486047c 0.23962737231419,0.4975913658148207 3.0506237029960137e-2,1.0952252347057874 -0.46708512878486036 1.3348526070199773c -0.4975913658148207,0.23962737231419004 -1.0952252347057874,3.0506237029960193e-2 -1.3348526070199773 -0.46708512878486025Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 64.4732558494291,109.77332137513018 c -0.5384378180823963,-0.12289491834217754 -0.875301896567687,-0.6590110280557416 -0.7524069782255095 -1.1974488461381378c 0.12289491834217751,-0.5384378180823963 0.6590110280557415,-0.8753018965676871 1.1974488461381376 -0.7524069782255095c 0.5384378180823963,0.12289491834217747 0.8753018965676871,0.6590110280557415 0.7524069782255096 1.1974488461381376c -0.12289491834217744,0.5384378180823963 -0.6590110280557415,0.8753018965676871 -1.1974488461381374 0.7524069782255096Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.98682938711309,112.50500868196187 c -0.43179360470469424,0.3443439092416017 -1.0609773750851617,0.2734519240953981 -1.4053212843267633 -0.158341680609296c -0.3443439092416017,-0.43179360470469424 -0.27345192409539815,-1.0609773750851617 0.158341680609296 -1.4053212843267633c 0.4317936047046942,-0.34434390924160174 1.0609773750851617,-0.2734519240953982 1.4053212843267633 0.15834168060929588c 0.34434390924160174,0.4317936047046942 0.2734519240953982,1.0609773750851614 -0.15834168060929577 1.405321284326763Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 69.06624618896161,113.0248284168465 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0 0.9999999999999994Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 104.21983360508122,-72.1467722160595 l -36.15358741611962,-26.26711879777034 l -36.153587416119606,26.267118797770348 l 13.809441577717202,42.5010910013237 l 44.68829167680482,-7.105427357601002e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 110.77586693101263,-63.123166476241 l 4.051851426802626,-12.470316431350508 l -10.607884752734032,-7.707079405040908 l -10.607884752734035,7.707079405040906 l 4.051851426802627,12.470316431350508 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 107.59692396893617,-61.764421046693684 l 2.259214398010831,1.9738161778191379 l 2.9517887657958886,-0.5356706843959083 l 1.421605987418996,-2.641786595570212 l -1.1790750949617692,-2.758583317654352 l -2.891888582087558,-0.7981105367000272 l -2.4270509831248424,1.7633557568774179 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 108.89217550625114,-60.05664171444122 c -0.14692809269956494,0.5323819873655852 0.165544027763592,1.0830716135629639 0.6979260151291771 1.2299997062625287c 0.5323819873655852,0.14692809269956497 1.0830716135629637,-0.16554402776359195 1.2299997062625287 -0.697926015129177c 0.146928092699565,-0.5323819873655852 -0.1655440277635919,-1.0830716135629637 -0.6979260151291768 -1.2299997062625287c -0.5323819873655852,-0.14692809269956505 -1.0830716135629637,0.16554402776359184 -1.2299997062625285 0.6979260151291767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.20389893728225,-62.68394881924513 c -0.5078411658260448,0.2170617312842266 -0.7435644721817544,0.8047116383793291 -0.5265027408975278 1.3125528042053736c 0.21706173128422657,0.5078411658260448 0.804711638379329,0.7435644721817544 1.3125528042053736 0.5265027408975278c 0.5078411658260448,-0.21706173128422654 0.7435644721817544,-0.8047116383793289 0.5265027408975278 -1.3125528042053736c -0.2170617312842265,-0.5078411658260448 -0.8047116383793289,-0.7435644721817544 -1.3125528042053733 -0.5265027408975279Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 108.2053871224607,-65.64199577817436 c -0.4863394830136129,-0.261710435706553 -1.092753758623184,-7.961261362987437e-2 -1.3544641943297369 0.4067268693837384c -0.26171043570655306,0.4863394830136129 -7.961261362987443e-2,1.092753758623184 0.4067268693837383 1.3544641943297369c 0.48633948301361285,0.26171043570655306 1.0927537586231837,7.961261362987448e-2 1.3544641943297366 -0.4067268693837382c 0.2617104357065531,-0.48633948301361285 7.961261362987454e-2,-1.0927537586231837 -0.4067268693837382 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.14249903171118,-66.70331289799367 c -9.861424997442805e-2,-0.5434093066903097 -0.6190771767069561,-0.9039869437744217 -1.1624864833972657 -0.8053726937999935c -0.5434093066903097,9.861424997442803e-2 -0.9039869437744217,0.619077176706956 -0.8053726937999937 1.1624864833972655c 9.861424997442798e-2,0.5434093066903097 0.6190771767069558,0.9039869437744217 1.1624864833972652 0.8053726937999937c 0.5434093066903097,-9.861424997442796e-2 0.9039869437744217,-0.6190771767069558 0.8053726937999937 -1.1624864833972652Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 113.80352949120372,-65.0687067405553 c 0.3633695246596053,-0.4159098862065129 0.3207771461426154,-1.047640667283718 -9.513274006389738e-2 -1.4110101919433233c -0.4159098862065129,-0.3633695246596053 -1.047640667283718,-0.32077714614261543 -1.411010191943323 9.513274006389738e-2c -0.36336952465960537,0.41590988620651287 -0.3207771461426155,1.047640667283718 9.513274006389727e-2 1.411010191943323c 0.41590988620651287,0.36336952465960537 1.047640667283718,0.32077714614261554 1.411010191943323 -9.513274006389716e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 114.18466828981136,-61.96906908229935 c 0.5517286358374671,2.4778161606335395e-2 1.0190797352854946,-0.4023996003533319 1.04385789689183 -0.9541282361907988c 2.477816160633543e-2,-0.5517286358374671 -0.40239960035333183,-1.0190797352854946 -0.9541282361907988 -1.04385789689183c -0.5517286358374671,-2.477816160633546e-2 -1.0190797352854946,0.4023996003533318 -1.04385789689183 0.9541282361907986c -2.4778161606335496e-2,0.5517286358374671 0.4023996003533317,1.0190797352854946 0.9541282361907986 1.04385789689183Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.99891013836795,-59.73849030097798 c 0.3246248310165781,0.44680774834722836 0.9499944983201918,0.545856573099053 1.39680224666742 0.22123174208247498c 0.44680774834722836,-0.3246248310165781 0.545856573099053,-0.9499944983201918 0.2212317420824751 -1.39680224666742c -0.324624831016578,-0.4468077483472284 -0.9499944983201918,-0.5458565730990531 -1.39680224666742 -0.2212317420824751c -0.4468077483472284,0.324624831016578 -0.5458565730990531,0.9499944983201917 -0.2212317420824752 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 95.38920918496231,-65.72664546649503 l -1.1790750949617714,2.7585833176543506 l 1.4216059874189944,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.13459449105154264,-2.9969791996239428 l -2.427050983124841,-1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.16526925965002,-63.96705521538199 c -0.5517286358374673,2.4778161606334753e-2 -0.9789063977971354,0.4921292610543618 -0.9541282361908007 1.0438578968918288c 2.477816160633472e-2,0.5517286358374673 0.4921292610543617,0.9789063977971354 1.0438578968918288 0.9541282361908007c 0.5517286358374673,-2.4778161606334687e-2 0.9789063977971354,-0.49212926105436167 0.9541282361908007 -1.0438578968918288c -2.4778161606334653e-2,-0.5517286358374673 -0.4921292610543616,-0.9789063977971354 -1.0438578968918286 -0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 96.14228065096593,-66.38458419243474 c -0.363369524659605,-0.4159098862065135 -0.9951003057368102,-0.4585022647235043 -1.4110101919433236 -9.513274006389938e-2c -0.4159098862065135,0.363369524659605 -0.45850226472350436,0.9951003057368102 -9.513274006389949e-2 1.4110101919433236c 0.3633695246596049,0.41590988620651353 0.9951003057368102,0.45850226472350436 1.4110101919433236 9.51327400638996e-2c 0.41590988620651353,-0.3633695246596049 0.4585022647235044,-0.9951003057368101 9.51327400638996e-2 -1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 99.2650273556485,-66.34619910839642 c 9.861424997442873e-2,-0.5434093066903097 -0.26196338710968253,-1.0638722334228383 -0.8053726937999921 -1.162486483397267c -0.5434093066903097,-9.861424997442876e-2 -1.0638722334228383,0.2619633871096825 -1.162486483397267 0.805372693799992c -9.86142499744288e-2,0.5434093066903097 0.2619633871096824,1.0638722334228383 0.8053726937999919 1.162486483397267c 0.5434093066903097,9.861424997442883e-2 1.0638722334228383,-0.26196338710968237 1.162486483397267 -0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 101.18201741264771,-63.88080471446089 c 0.48633948301361324,-0.2617104357065525 0.6684373050902928,-0.8681247113161232 0.40672686938374025 -1.3544641943297364c -0.26171043570655245,-0.48633948301361324 -0.8681247113161231,-0.6684373050902928 -1.3544641943297362 -0.4067268693837403c -0.4863394830136133,0.26171043570655245 -0.6684373050902928,0.868124711316123 -0.40672686938374036 1.354464194329736c 0.2617104357065524,0.4863394830136133 0.868124711316123,0.6684373050902928 1.354464194329736 0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.44971820957234,-60.84489327414224 c 0.5078411658260445,0.21706173128422712 1.0954910729211473,-1.866157507148175e-2 1.3125528042053745 -0.5265027408975262c 0.21706173128422715,-0.5078411658260445 -1.8661575071481695e-2,-1.0954910729211473 -0.526502740897526 -1.3125528042053745c -0.5078411658260445,-0.21706173128422718 -1.0954910729211473,1.866157507148164e-2 -1.3125528042053745 0.526502740897526c -0.2170617312842272,0.5078411658260445 1.8661575071481584e-2,1.0954910729211473 0.5265027408975258 1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.61956598251957,-59.52456802330788 c 0.1469280926995644,0.5323819873655854 0.6976177188969426,0.8448541078287432 1.2299997062625279 0.6979260151291788c 0.5323819873655854,-0.14692809269956436 0.8448541078287432,-0.6976177188969426 0.6979260151291788 -1.2299997062625279c -0.14692809269956433,-0.5323819873655854 -0.6976177188969426,-0.8448541078287432 -1.2299997062625279 -0.6979260151291788c -0.5323819873655854,0.14692809269956428 -0.8448541078287432,0.6976177188969426 -0.6979260151291788 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.8227230830446,-60.91406080556294 c -0.32462483101657846,0.4468077483472281 -0.22557600626475444,1.072177415650842 0.22123174208247354 1.3968022466674204c 0.4468077483472281,0.32462483101657846 1.072177415650842,0.2255760062647545 1.3968022466674204 -0.22123174208247354c 0.3246248310165785,-0.44680774834722803 0.22557600626475455,-1.072177415650842 -0.22123174208247343 -1.3968022466674204c -0.44680774834722803,-0.3246248310165785 -1.072177415650842,-0.22557600626475455 -1.3968022466674201 0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 95.38511720770795,-78.56126684211206 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.33342919636198,-79.18155959290371 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 96.24356600130982,-78.04836756470615 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.17204141788191,-75.06659731918022 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 95.41969451995254,-72.4815826682353 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 92.30607826302497,-72.2398923687221 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 90.17580919476251,-74.52352414575769 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 90.63302337313658,-77.61285669363535 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 107.59030301065742,-82.531274665178 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.54623001064722,-84.67422691925545 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 107.3677820767011,-81.55634675299618 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 104.8188647371788,-79.75189647865635 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 101.8188647371788,-80.61966395689149 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.6268432655487,-83.50620257735983 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 102.1404168032327,-86.23788988419152 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 105.21983360508122,-86.75770961907615 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 115.13761465314224,-72.15025305981867 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 117.16206405249574,-72.85437763831509 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 114.141640359147,-72.06061375091524 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.63784739223617,-73.9271723958901 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 111.53609232391584,-77.0484968427161 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 113.91299879605636,-79.07416611951797 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 116.97870775507995,-78.47880994474102 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 118.42467782577575,-75.71074366104504 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 83.85435870143262,-20.622075474917317 l 13.112066651862813,-1.7763568394002505e-15 l 4.051851426802627,-12.470316431350504 l -10.607884752734032,-7.7070794050409095 l -10.607884752734034,7.707079405040909 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 81.57976760724512,-23.225554465171335 l -1.1790750949617714,2.7585833176543506 l 1.4216059874189944,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.13459449105154264,-2.9969791996239428 l -2.427050983124841,-1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 80.35582768193282,-21.4659642140583 c -0.5517286358374673,2.4778161606334753e-2 -0.9789063977971354,0.4921292610543618 -0.9541282361908007 1.0438578968918288c 2.477816160633472e-2,0.5517286358374673 0.4921292610543617,0.9789063977971354 1.0438578968918288 0.9541282361908007c 0.5517286358374673,-2.4778161606334687e-2 0.9789063977971354,-0.49212926105436167 0.9541282361908007 -1.0438578968918288c -2.4778161606334653e-2,-0.5517286358374673 -0.4921292610543616,-0.9789063977971354 -1.0438578968918286 -0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.33283907324873,-23.883493191111047 c -0.363369524659605,-0.4159098862065135 -0.9951003057368102,-0.4585022647235043 -1.4110101919433236 -9.513274006389938e-2c -0.4159098862065135,0.363369524659605 -0.45850226472350436,0.9951003057368102 -9.513274006389949e-2 1.4110101919433236c 0.3633695246596049,0.41590988620651353 0.9951003057368102,0.45850226472350436 1.4110101919433236 9.51327400638996e-2c 0.41590988620651353,-0.3633695246596049 0.4585022647235044,-0.9951003057368101 9.51327400638996e-2 -1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 85.4555857779313,-23.84510810707272 c 9.861424997442873e-2,-0.5434093066903097 -0.26196338710968253,-1.0638722334228383 -0.8053726937999921 -1.162486483397267c -0.5434093066903097,-9.861424997442876e-2 -1.0638722334228383,0.2619633871096825 -1.162486483397267 0.805372693799992c -9.86142499744288e-2,0.5434093066903097 0.2619633871096824,1.0638722334228383 0.8053726937999919 1.162486483397267c 0.5434093066903097,9.861424997442883e-2 1.0638722334228383,-0.26196338710968237 1.162486483397267 -0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 87.37257583493052,-21.3797137131372 c 0.48633948301361324,-0.2617104357065525 0.6684373050902928,-0.8681247113161232 0.40672686938374025 -1.3544641943297364c -0.26171043570655245,-0.48633948301361324 -0.8681247113161231,-0.6684373050902928 -1.3544641943297362 -0.4067268693837403c -0.4863394830136133,0.26171043570655245 -0.6684373050902928,0.868124711316123 -0.40672686938374036 1.354464194329736c 0.2617104357065524,0.4863394830136133 0.868124711316123,0.6684373050902928 1.354464194329736 0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 86.64027663185514,-18.343802272818543 c 0.5078411658260445,0.21706173128422712 1.0954910729211473,-1.866157507148175e-2 1.3125528042053745 -0.5265027408975262c 0.21706173128422715,-0.5078411658260445 -1.8661575071481695e-2,-1.0954910729211473 -0.526502740897526 -1.3125528042053745c -0.5078411658260445,-0.21706173128422718 -1.0954910729211473,1.866157507148164e-2 -1.3125528042053745 0.526502740897526c -0.2170617312842272,0.5078411658260445 1.8661575071481584e-2,1.0954910729211473 0.5265027408975258 1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 83.81012440480238,-17.023477021984185 c 0.1469280926995644,0.5323819873655854 0.6976177188969426,0.8448541078287432 1.2299997062625279 0.6979260151291788c 0.5323819873655854,-0.14692809269956436 0.8448541078287432,-0.6976177188969426 0.6979260151291788 -1.2299997062625279c -0.14692809269956433,-0.5323819873655854 -0.6976177188969426,-0.8448541078287432 -1.2299997062625279 -0.6979260151291788c -0.5323819873655854,0.14692809269956428 -0.8448541078287432,0.6976177188969426 -0.6979260151291788 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.0132815053274,-18.412969804239243 c -0.32462483101657846,0.4468077483472281 -0.22557600626475444,1.072177415650842 0.22123174208247354 1.3968022466674204c 0.4468077483472281,0.32462483101657846 1.072177415650842,0.2255760062647545 1.3968022466674204 -0.22123174208247354c 0.3246248310165785,-0.44680774834722803 0.22557600626475455,-1.072177415650842 -0.22123174208247343 -1.3968022466674204c -0.44680774834722803,-0.3246248310165785 -1.072177415650842,-0.22557600626475455 -1.3968022466674201 0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 81.57567562999076,-36.06017584078839 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 79.52398761864478,-36.68046859158003 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.43412442359262,-35.54727656338248 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 83.36259984016472,-32.565506317856546 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.61025294223535,-29.98049166691163 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 78.49663668530778,-29.738801367398427 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 76.36636761704531,-32.02243314443402 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 76.82358179541939,-35.11176569231167 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 93.78086143294023,-40.03018366385431 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.73678843293003,-42.17313591793175 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.55834049898391,-39.05525575167248 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 91.0094231594616,-37.25080547733267 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 88.0094231594616,-38.118572955567785 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 86.8174016878315,-41.00511157603614 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 88.3309752255155,-43.73679888286781 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 91.41039202736403,-44.25661861775246 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 101.32817307542504,-29.649162058494987 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 103.35262247477854,-30.3532866369914 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.33219878142981,-29.55952274959155 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.82840581451897,-31.426081394566406 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.72665074619864,-34.54740584139241 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.10355721833916,-36.57307511819429 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 103.16926617736276,-35.977718943417344 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 104.61523624805855,-33.20965265972136 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 93.78748239121899,-19.263330045369994 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 95.08273392853395,-17.55555071311753 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 93.39445735956507,-20.182857817921445 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 94.39594554474353,-23.140904776850675 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 97.333057453994,-24.202221896669993 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 99.99408791348654,-22.56761573923162 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 100.37522671209419,-19.467978080975666 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 98.18946856065077,-17.237399299654292 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.114215597825165,-33.09239190626783 l 4.051851426802629,12.470316431350504 l 13.112066651862811,-8.881784197001252e-16 l 4.051851426802628,-12.470316431350504 l -10.607884752734035,-7.707079405040906 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 36.88738395318594,-36.06017584078839 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 34.83569594183996,-36.68046859158003 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 37.745832746787805,-35.54727656338248 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 38.674308163359896,-32.565506317856546 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.92196126543053,-29.98049166691163 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 33.80834500850295,-29.738801367398427 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 31.678075940240493,-32.02243314443402 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.13529011861458,-35.11176569231167 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 49.092569756135404,-40.03018366385432 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 49.048496756125196,-42.17313591793176 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 48.870048822179086,-39.05525575167249 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.32113148265678,-37.250805477332676 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 43.32113148265678,-38.11857295556779 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 42.12911001102669,-41.00511157603615 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 43.64268354871068,-43.736798882867824 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.7221003505592,-44.256618617752466 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 56.63988139862022,-29.649162058494994 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.66433079797371,-30.353286636991406 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.64390710462498,-29.559522749591558 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.14011413771414,-31.426081394566413 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.03835906939383,-34.54740584139242 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.415265541534346,-36.573075118194296 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.48097450055793,-35.97771894341735 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.926944571253735,-33.20965265972136 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 49.09919071441416,-19.263330045369997 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 50.39444225172914,-17.555550713117533 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 48.70616568276024,-20.182857817921448 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 49.70765386793871,-23.14090477685068 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 52.64476577718918,-24.202221896669997 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.30579623668172,-22.567615739231623 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 55.686935035289366,-19.46797808097567 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 53.50117688384593,-17.237399299654296 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 36.89147593044029,-23.22555446517134 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.667536005128014,-21.4659642140583 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 37.64454739644391,-23.88349319111105 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 40.76729410112648,-23.84510810707273 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 42.68428415812569,-21.379713713137207 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.951984955050314,-18.34380227281855 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.12183272799756,-17.02347702198419 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.32498982852257,-18.412969804239246 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 31.912658772842,-83.30056231263244 l -10.607884752734032,7.7070794050409095 l 4.051851426802626,12.470316431350504 l 13.112066651862813,8.881784197001252e-16 l 4.051851426802625,-12.470316431350506 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.2831281784182,-82.53127466517802 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.239055178407995,-84.67422691925546 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.060607244461885,-81.55634675299619 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.51168990493958,-79.75189647865636 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 29.511689904939587,-80.6196639568915 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.31966843330949,-83.50620257735984 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 29.833241970993484,-86.23788988419153 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 32.91265877284201,-86.75770961907617 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 42.83043982090301,-72.15025305981868 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 44.8548892202565,-72.8543776383151 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.83446552690777,-72.06061375091525 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.330672559996934,-73.92717239589011 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.22891749167662,-77.04849684271612 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.60582396381714,-79.07416611951798 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 44.67153292284072,-78.47880994474103 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 46.117502993536526,-75.71074366104506 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 35.289749136696955,-61.76442104669369 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 36.58500067401193,-60.056641714441234 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 34.896724105043035,-62.68394881924515 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 35.8982122902215,-65.64199577817438 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 38.83532419947197,-66.70331289799368 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.49635465896451,-65.06870674055531 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 41.87749345757216,-61.96906908229936 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 39.69173530612872,-59.73849030097799 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 23.0820343527231,-65.72664546649503 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 21.858094427410812,-63.967055215382 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.83510581872671,-66.38458419243474 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 26.95785252340929,-66.34619910839642 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.874842580408497,-63.88080471446089 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 28.14254337733312,-60.844893274142244 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 25.31239115028036,-59.524568023307886 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 22.515548250805377,-60.91406080556294 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 23.07794237546873,-78.56126684211208 l -2.987922881985716,-0.26891792671030057 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.575346380805598,1.5386978322177187 l 2.808704611919211,-1.0541244722440266 l 0.9270509831248422,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 21.02625436412275,-79.18155959290372 c -0.19405895681460333,-0.5170682413141325 -0.7705414534069471,-0.778919003372998 -1.2876096947210796 -0.5848600465583946c -0.5170682413141325,0.1940589568146033 -0.778919003372998,0.770541453406947 -0.5848600465583947 1.2876096947210796c 0.19405895681460328,0.5170682413141325 0.770541453406947,0.778919003372998 1.2876096947210793 0.5848600465583949c 0.5170682413141325,-0.19405895681460325 0.778919003372998,-0.770541453406947 0.5848600465583949 -1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.936391169070596,-78.04836756470617 c 0.2832664491105157,-0.4741081772169531 0.12855866102099328,-1.0880816218972567 -0.34554951619595964 -1.3713480710077723c -0.4741081772169531,-0.28326644911051574 -1.0880816218972567,-0.12855866102099334 -1.3713480710077721 0.3455495161959595c -0.28326644911051574,0.47410817721695303 -0.1285586610209934,1.0880816218972567 0.3455495161959595 1.3713480710077721c 0.47410817721695303,0.2832664491105158 1.0880816218972567,0.12855866102099345 1.371348071007772 -0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 24.864866585642694,-75.06659731918023 c 0.5472864412728883,-7.41349856310742e-2 0.9308514815813537,-0.5778965863127019 0.8567164959502794 -1.12518302758559c -7.413498563107417e-2,-0.5472864412728883 -0.5778965863127018,-0.9308514815813537 -1.1251830275855899 -0.8567164959502795c -0.5472864412728883,7.413498563107412e-2 -0.9308514815813537,0.5778965863127017 -0.8567164959502795 1.1251830275855896c 7.41349856310741e-2,0.5472864412728883 0.5778965863127017,0.9308514815813537 1.1251830275855896 0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 23.11251968771333,-72.48158266823532 c 0.39918858054789336,0.38166336221311603 1.0321941506011403,0.3674563657073667 1.413857512814256 -3.1732214840526685e-2c 0.38166336221311603,-0.39918858054789336 0.3674563657073667,-1.03219415060114 -3.1732214840526574e-2 -1.413857512814256c -0.3991885805478933,-0.3816633622131161 -1.03219415060114,-0.36745636570736673 -1.413857512814256 3.173221484052646e-2c -0.3816633622131161,0.3991885805478933 -0.3674563657073668,1.03219415060114 3.173221484052635e-2 1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 19.998903430785745,-72.23989236872211 c -4.9506423292738e-2,0.5500614137970617 0.3562735712947437,1.0361071796059347 0.9063349850918053 1.0856136028986725c 0.5500614137970617,4.9506423292738036e-2 1.0361071796059347,-0.35627357129474363 1.0856136028986725 -0.9063349850918052c 4.950642329273807e-2,-0.5500614137970617 -0.3562735712947436,-1.0361071796059345 -0.9063349850918051 -1.0856136028986725c -0.5500614137970617,-4.9506423292738105e-2 -1.0361071796059345,0.3562735712947435 -1.0856136028986725 0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 17.868634362523284,-74.5235241457577 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.3854702351734047 -0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 18.32584854089737,-77.61285669363536 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202055 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 78.67413094169565,-101.86060170536186 l -10.607884752734035,-7.707079405040905 l -10.607884752734032,7.707079405040908 l 4.051851426802626,12.470316431350506 l 13.112066651862815,-1.7763568394002505e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 78.98402723702263,-98.41737185758902 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 81.00847663637613,-99.12149643608544 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.98805294302738,-98.32773254868559 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.48425997611656,-100.19429119366045 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.38250490779623,-103.31561564048646 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.75941137993675,-105.34128491728832 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 80.82512033896035,-104.74592874251137 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 82.27109040965614,-101.9778624588154 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 71.44333655281658,-88.03153984446402 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 72.73858809013154,-86.32376051221156 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.05031152116266,-88.95106761701547 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 72.05179970634111,-91.90911457594471 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 74.98891161559159,-92.97043169576402 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 77.64994207508413,-91.33582553832565 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 78.03108087369176,-88.23618788006969 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 75.84532272224835,-86.00560909874832 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 59.235621768842705,-91.99376426426538 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.011681843530425,-90.23417401315234 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.98869323484632,-92.6517029902051 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 63.11143993952889,-92.61331790616677 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.0284299965281,-90.14792351223124 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 64.29613079345273,-87.11201207191259 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 61.46597856639997,-85.79168682107823 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 58.66913566692498,-87.18117960333329 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 59.23152979158834,-104.82838563988241 l -2.987922881985716,-0.26891792671030057 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.575346380805598,1.5386978322177187 l 2.808704611919211,-1.0541244722440266 l 0.9270509831248422,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 57.17984178024236,-105.44867839067406 c -0.19405895681460333,-0.5170682413141325 -0.7705414534069471,-0.778919003372998 -1.2876096947210796 -0.5848600465583946c -0.5170682413141325,0.1940589568146033 -0.778919003372998,0.770541453406947 -0.5848600465583947 1.2876096947210796c 0.19405895681460328,0.5170682413141325 0.770541453406947,0.778919003372998 1.2876096947210793 0.5848600465583949c 0.5170682413141325,-0.19405895681460325 0.778919003372998,-0.770541453406947 0.5848600465583949 -1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 60.08997858519021,-104.3154863624765 c 0.2832664491105157,-0.4741081772169531 0.12855866102099328,-1.0880816218972567 -0.34554951619595964 -1.3713480710077723c -0.4741081772169531,-0.28326644911051574 -1.0880816218972567,-0.12855866102099334 -1.3713480710077721 0.3455495161959595c -0.28326644911051574,0.47410817721695303 -0.1285586610209934,1.0880816218972567 0.3455495161959595 1.3713480710077721c 0.47410817721695303,0.2832664491105158 1.0880816218972567,0.12855866102099345 1.371348071007772 -0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 61.0184540017623,-101.33371611695057 c 0.5472864412728883,-7.41349856310742e-2 0.9308514815813537,-0.5778965863127019 0.8567164959502794 -1.12518302758559c -7.413498563107417e-2,-0.5472864412728883 -0.5778965863127018,-0.9308514815813537 -1.1251830275855899 -0.8567164959502795c -0.5472864412728883,7.413498563107412e-2 -0.9308514815813537,0.5778965863127017 -0.8567164959502795 1.1251830275855896c 7.41349856310741e-2,0.5472864412728883 0.5778965863127017,0.9308514815813537 1.1251830275855896 0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 59.266107103832944,-98.74870146600566 c 0.39918858054789336,0.38166336221311603 1.0321941506011403,0.3674563657073667 1.413857512814256 -3.1732214840526685e-2c 0.38166336221311603,-0.39918858054789336 0.3674563657073667,-1.03219415060114 -3.1732214840526574e-2 -1.413857512814256c -0.3991885805478933,-0.3816633622131161 -1.03219415060114,-0.36745636570736673 -1.413857512814256 3.173221484052646e-2c -0.3816633622131161,0.3991885805478933 -0.3674563657073668,1.03219415060114 3.173221484052635e-2 1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 56.15249084690536,-98.50701116649245 c -4.9506423292738e-2,0.5500614137970617 0.3562735712947437,1.0361071796059347 0.9063349850918053 1.0856136028986725c 0.5500614137970617,4.9506423292738036e-2 1.0361071796059347,-0.35627357129474363 1.0856136028986725 -0.9063349850918052c 4.950642329273807e-2,-0.5500614137970617 -0.3562735712947436,-1.0361071796059345 -0.9063349850918051 -1.0856136028986725c -0.5500614137970617,-4.9506423292738105e-2 -1.0361071796059345,0.3562735712947435 -1.0856136028986725 0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 54.022221778642894,-100.79064294352804 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.3854702351734047 -0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 54.47943595701698,-103.8799754914057 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202055 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 71.43671559453782,-108.79839346294835 l -0.667562801868943,-2.92478373654547 l -2.702906603707257,-1.3016512173526746 l -2.702906603707256,1.3016512173526742 l -0.6675628018689435,2.9247837365454705 l 1.8704694055761992,2.3454944474040893 h 2.9999999999999996 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.39264259452762,-110.9413457170258 c 0.4317936047046944,-0.3443439092416016 0.5026855898508984,-0.9735276796220691 0.15834168060929676 -1.4053212843267633c -0.3443439092416016,-0.4317936047046944 -0.9735276796220691,-0.5026855898508984 -1.4053212843267633 -0.15834168060929688c -0.43179360470469447,0.3443439092416015 -0.5026855898508984,0.9735276796220691 -0.15834168060929688 1.4053212843267633c 0.3443439092416015,0.43179360470469447 0.973527679622069,0.5026855898508984 1.4053212843267633 0.158341680609297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 71.2141946605815,-107.82346555076653 c 0.5384378180823963,0.12289491834217772 1.0745539277959606,-0.21396916014311274 1.1974488461381383 -0.752406978225509c 0.12289491834217775,-0.5384378180823963 -0.21396916014311268,-1.0745539277959606 -0.7524069782255087 -1.1974488461381383c -0.5384378180823963,-0.12289491834217779 -1.0745539277959606,0.21396916014311262 -1.1974488461381383 0.7524069782255087c -0.12289491834217782,0.5384378180823963 0.21396916014311257,1.0745539277959606 0.7524069782255085 1.1974488461381383Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 68.6652773210592,-106.01901527642671 c 0.2396273723141898,0.49759136581482083 0.8372612412051563,0.706712501099051 1.334852607019977 0.46708512878486136c 0.49759136581482083,-0.23962737231418976 0.7067125010990511,-0.8372612412051563 0.4670851287848614 -1.3348526070199769c -0.23962737231418973,-0.4975913658148209 -0.8372612412051563,-0.7067125010990511 -1.3348526070199769 -0.4670851287848614c -0.4975913658148209,0.2396273723141897 -0.7067125010990511,0.8372612412051562 -0.46708512878486147 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.6652773210592,-106.88678275466184 c -0.23962737231418996,0.4975913658148208 -3.0506237029960026e-2,1.0952252347057874 0.4670851287848606 1.3348526070199773c 0.4975913658148208,0.23962737231418998 1.0952252347057874,3.050623702996008e-2 1.3348526070199773 -0.46708512878486047c 0.23962737231419,-0.4975913658148207 3.0506237029960137e-2,-1.0952252347057874 -0.46708512878486036 -1.3348526070199773c -0.4975913658148207,-0.23962737231419004 -1.0952252347057874,-3.0506237029960193e-2 -1.3348526070199773 0.46708512878486025Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 64.4732558494291,-109.77332137513018 c -0.5384378180823963,0.12289491834217754 -0.875301896567687,0.6590110280557416 -0.7524069782255095 1.1974488461381378c 0.12289491834217751,0.5384378180823963 0.6590110280557415,0.8753018965676871 1.1974488461381376 0.7524069782255095c 0.5384378180823963,-0.12289491834217747 0.8753018965676871,-0.6590110280557415 0.7524069782255096 -1.1974488461381376c -0.12289491834217744,-0.5384378180823963 -0.6590110280557415,-0.8753018965676871 -1.1974488461381374 -0.7524069782255096Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 65.98682938711309,-112.50500868196187 c -0.43179360470469424,-0.3443439092416017 -1.0609773750851617,-0.2734519240953981 -1.4053212843267633 0.158341680609296c -0.3443439092416017,0.43179360470469424 -0.27345192409539815,1.0609773750851617 0.158341680609296 1.4053212843267633c 0.4317936047046942,0.34434390924160174 1.0609773750851617,0.2734519240953982 1.4053212843267633 -0.15834168060929588c 0.34434390924160174,-0.4317936047046942 0.2734519240953982,-1.0609773750851614 -0.15834168060929577 -1.405321284326763Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 69.06624618896161,-113.0248284168465 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -31.912658772841972,72.14677221605949 l -36.15358741611962,26.26711879777034 l -36.153587416119606,-26.267118797770348 l 13.809441577717202,-42.5010910013237 l 44.68829167680482,7.105427357601002e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -25.356625446910563,63.12316647624099 l 4.051851426802626,12.470316431350508 l -10.607884752734032,7.707079405040908 l -10.607884752734035,-7.707079405040906 l 4.051851426802627,-12.470316431350508 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -28.535568408987018,61.76442104669367 l 2.259214398010831,-1.9738161778191379 l 2.9517887657958886,0.5356706843959083 l 1.421605987418996,2.641786595570212 l -1.1790750949617692,2.758583317654352 l -2.891888582087558,0.7981105367000272 l -2.4270509831248424,-1.7633557568774179 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -27.240316871672043,60.056641714441206 c -0.14692809269956494,-0.5323819873655852 0.165544027763592,-1.0830716135629639 0.6979260151291771 -1.2299997062625287c 0.5323819873655852,-0.14692809269956497 1.0830716135629637,0.16554402776359195 1.2299997062625287 0.697926015129177c 0.146928092699565,0.5323819873655852 -0.1655440277635919,1.0830716135629637 -0.6979260151291768 1.2299997062625287c -0.5323819873655852,0.14692809269956505 -1.0830716135629637,-0.16554402776359184 -1.2299997062625285 -0.6979260151291767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.928593440640945,62.68394881924512 c -0.5078411658260448,-0.2170617312842266 -0.7435644721817544,-0.8047116383793291 -0.5265027408975278 -1.3125528042053736c 0.21706173128422657,-0.5078411658260448 0.804711638379329,-0.7435644721817544 1.3125528042053736 -0.5265027408975278c 0.5078411658260448,0.21706173128422654 0.7435644721817544,0.8047116383793289 0.5265027408975278 1.3125528042053736c -0.2170617312842265,0.5078411658260448 -0.8047116383793289,0.7435644721817544 -1.3125528042053733 0.5265027408975279Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -27.927105255462475,65.64199577817435 c -0.4863394830136129,0.261710435706553 -1.092753758623184,7.961261362987437e-2 -1.3544641943297369 -0.4067268693837384c -0.26171043570655306,-0.4863394830136129 -7.961261362987443e-2,-1.092753758623184 0.4067268693837383 -1.3544641943297369c 0.48633948301361285,-0.26171043570655306 1.0927537586231837,-7.961261362987448e-2 1.3544641943297366 0.4067268693837382c 0.2617104357065531,0.48633948301361285 7.961261362987454e-2,1.0927537586231837 -0.4067268693837382 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.989993346212,66.70331289799365 c -9.861424997442805e-2,0.5434093066903097 -0.6190771767069561,0.9039869437744217 -1.1624864833972657 0.8053726937999935c -0.5434093066903097,-9.861424997442803e-2 -0.9039869437744217,-0.619077176706956 -0.8053726937999937 -1.1624864833972655c 9.861424997442798e-2,-0.5434093066903097 0.6190771767069558,-0.9039869437744217 1.1624864833972652 -0.8053726937999937c 0.5434093066903097,9.861424997442796e-2 0.9039869437744217,0.6190771767069558 0.8053726937999937 1.1624864833972652Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -22.328962886719463,65.06870674055529 c 0.3633695246596053,0.4159098862065129 0.3207771461426154,1.047640667283718 -9.513274006389738e-2 1.4110101919433233c -0.4159098862065129,0.3633695246596053 -1.047640667283718,0.32077714614261543 -1.411010191943323 -9.513274006389738e-2c -0.36336952465960537,-0.41590988620651287 -0.3207771461426155,-1.047640667283718 9.513274006389727e-2 -1.411010191943323c 0.41590988620651287,-0.36336952465960537 1.047640667283718,-0.32077714614261554 1.411010191943323 9.513274006389716e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -21.94782408811182,61.969069082299335 c 0.5517286358374671,-2.4778161606335395e-2 1.0190797352854946,0.4023996003533319 1.04385789689183 0.9541282361907988c 2.477816160633543e-2,0.5517286358374671 -0.40239960035333183,1.0190797352854946 -0.9541282361907988 1.04385789689183c -0.5517286358374671,2.477816160633546e-2 -1.0190797352854946,-0.4023996003533318 -1.04385789689183 -0.9541282361907986c -2.4778161606335496e-2,-0.5517286358374671 0.4023996003533317,-1.0190797352854946 0.9541282361907986 -1.04385789689183Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.133582239555246,59.738490300977965 c 0.3246248310165781,-0.44680774834722836 0.9499944983201918,-0.545856573099053 1.39680224666742 -0.22123174208247498c 0.44680774834722836,0.3246248310165781 0.545856573099053,0.9499944983201918 0.2212317420824751 1.39680224666742c -0.324624831016578,0.4468077483472284 -0.9499944983201918,0.5458565730990531 -1.39680224666742 0.2212317420824751c -0.4468077483472284,-0.324624831016578 -0.5458565730990531,-0.9499944983201917 -0.2212317420824752 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -40.743283192960874,65.72664546649501 l -1.1790750949617714,-2.7585833176543506 l 1.4216059874189944,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.13459449105154264,2.9969791996239428 l -2.427050983124841,1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.96722311827316,63.967055215381976 c -0.5517286358374673,-2.4778161606334753e-2 -0.9789063977971354,-0.4921292610543618 -0.9541282361908007 -1.0438578968918288c 2.477816160633472e-2,-0.5517286358374673 0.4921292610543617,-0.9789063977971354 1.0438578968918288 -0.9541282361908007c 0.5517286358374673,2.4778161606334687e-2 0.9789063977971354,0.49212926105436167 0.9541282361908007 1.0438578968918288c -2.4778161606334653e-2,0.5517286358374673 -0.4921292610543616,0.9789063977971354 -1.0438578968918286 0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -39.99021172695726,66.38458419243473 c -0.363369524659605,0.4159098862065135 -0.9951003057368102,0.4585022647235043 -1.4110101919433236 9.513274006389938e-2c -0.4159098862065135,-0.363369524659605 -0.45850226472350436,-0.9951003057368102 -9.513274006389949e-2 -1.4110101919433236c 0.3633695246596049,-0.41590988620651353 0.9951003057368102,-0.45850226472350436 1.4110101919433236 -9.51327400638996e-2c 0.41590988620651353,0.3633695246596049 0.4585022647235044,0.9951003057368101 9.51327400638996e-2 1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.867465022274686,66.3461991083964 c 9.861424997442873e-2,0.5434093066903097 -0.26196338710968253,1.0638722334228383 -0.8053726937999921 1.162486483397267c -0.5434093066903097,9.861424997442876e-2 -1.0638722334228383,-0.2619633871096825 -1.162486483397267 -0.805372693799992c -9.86142499744288e-2,-0.5434093066903097 0.2619633871096824,-1.0638722334228383 0.8053726937999919 -1.162486483397267c 0.5434093066903097,-9.861424997442883e-2 1.0638722334228383,0.26196338710968237 1.162486483397267 0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -34.95047496527548,63.88080471446088 c 0.48633948301361324,0.2617104357065525 0.6684373050902928,0.8681247113161232 0.40672686938374025 1.3544641943297364c -0.26171043570655245,0.48633948301361324 -0.8681247113161231,0.6684373050902928 -1.3544641943297362 0.4067268693837403c -0.4863394830136133,-0.26171043570655245 -0.6684373050902928,-0.868124711316123 -0.40672686938374036 -1.354464194329736c 0.2617104357065524,-0.4863394830136133 0.868124711316123,-0.6684373050902928 1.354464194329736 -0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.68277416835086,60.84489327414222 c 0.5078411658260445,-0.21706173128422712 1.0954910729211473,1.866157507148175e-2 1.3125528042053745 0.5265027408975262c 0.21706173128422715,0.5078411658260445 -1.8661575071481695e-2,1.0954910729211473 -0.526502740897526 1.3125528042053745c -0.5078411658260445,0.21706173128422718 -1.0954910729211473,-1.866157507148164e-2 -1.3125528042053745 -0.526502740897526c -0.2170617312842272,-0.5078411658260445 1.8661575071481584e-2,-1.0954910729211473 0.5265027408975258 -1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.51292639540362,59.524568023307864 c 0.1469280926995644,-0.5323819873655854 0.6976177188969426,-0.8448541078287432 1.2299997062625279 -0.6979260151291788c 0.5323819873655854,0.14692809269956436 0.8448541078287432,0.6976177188969426 0.6979260151291788 1.2299997062625279c -0.14692809269956433,0.5323819873655854 -0.6976177188969426,0.8448541078287432 -1.2299997062625279 0.6979260151291788c -0.5323819873655854,-0.14692809269956428 -0.8448541078287432,-0.6976177188969426 -0.6979260151291788 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.309769294878606,60.914060805562926 c -0.32462483101657846,-0.4468077483472281 -0.22557600626475444,-1.072177415650842 0.22123174208247354 -1.3968022466674204c 0.4468077483472281,-0.32462483101657846 1.072177415650842,-0.2255760062647545 1.3968022466674204 0.22123174208247354c 0.3246248310165785,0.44680774834722803 0.22557600626475455,1.072177415650842 -0.22123174208247343 1.3968022466674204c -0.44680774834722803,0.3246248310165785 -1.072177415650842,0.22557600626475455 -1.3968022466674201 -0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -40.747375170215236,78.56126684211205 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.799063181561216,79.1815595929037 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -39.88892637661337,78.04836756470614 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.96045096004128,75.0665973191802 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -40.71279785797064,72.48158266823529 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -43.82641411489823,72.23989236872208 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.956683183160685,74.52352414575768 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.4994690047866,77.61285669363534 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -28.54218936726577,82.53127466517799 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.586262367275978,84.67422691925543 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.764710301222085,81.55634675299616 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -31.31362764074439,79.75189647865633 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -34.31362764074439,80.61966395689147 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.50564911237448,83.50620257735982 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -33.992075574690496,86.2378898841915 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -30.91265877284197,86.75770961907614 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -20.994877724780956,72.15025305981865 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -18.97042832542746,72.85437763831507 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -21.990852018776195,72.06061375091522 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.49464498568703,73.92717239589008 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.596400054007354,77.04849684271609 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -22.219493581866836,79.07416611951795 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -19.153784622843247,78.478809944741 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -17.707814552147443,75.71074366104503 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -52.27813367649058,20.622075474917303 l 13.112066651862813,1.7763568394002505e-15 l 4.051851426802627,12.470316431350504 l -10.607884752734032,7.7070794050409095 l -10.607884752734034,-7.707079405040909 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -54.55272477067808,23.22555446517132 l -1.1790750949617714,-2.7585833176543506 l 1.4216059874189944,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.13459449105154264,2.9969791996239428 l -2.427050983124841,1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.77666469599037,21.465964214058285 c -0.5517286358374673,-2.4778161606334753e-2 -0.9789063977971354,-0.4921292610543618 -0.9541282361908007 -1.0438578968918288c 2.477816160633472e-2,-0.5517286358374673 0.4921292610543617,-0.9789063977971354 1.0438578968918288 -0.9541282361908007c 0.5517286358374673,2.4778161606334687e-2 0.9789063977971354,0.49212926105436167 0.9541282361908007 1.0438578968918288c -2.4778161606334653e-2,0.5517286358374673 -0.4921292610543616,0.9789063977971354 -1.0438578968918286 0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.79965330467447,23.883493191111032 c -0.363369524659605,0.4159098862065135 -0.9951003057368102,0.4585022647235043 -1.4110101919433236 9.513274006389938e-2c -0.4159098862065135,-0.363369524659605 -0.45850226472350436,-0.9951003057368102 -9.513274006389949e-2 -1.4110101919433236c 0.3633695246596049,-0.41590988620651353 0.9951003057368102,-0.45850226472350436 1.4110101919433236 -9.51327400638996e-2c 0.41590988620651353,0.3633695246596049 0.4585022647235044,0.9951003057368101 9.51327400638996e-2 1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -50.676906599991895,23.845108107072704 c 9.861424997442873e-2,0.5434093066903097 -0.26196338710968253,1.0638722334228383 -0.8053726937999921 1.162486483397267c -0.5434093066903097,9.861424997442876e-2 -1.0638722334228383,-0.2619633871096825 -1.162486483397267 -0.805372693799992c -9.86142499744288e-2,-0.5434093066903097 0.2619633871096824,-1.0638722334228383 0.8053726937999919 -1.162486483397267c 0.5434093066903097,-9.861424997442883e-2 1.0638722334228383,0.26196338710968237 1.162486483397267 0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -48.75991654299269,21.379713713137185 c 0.48633948301361324,0.2617104357065525 0.6684373050902928,0.8681247113161232 0.40672686938374025 1.3544641943297364c -0.26171043570655245,0.48633948301361324 -0.8681247113161231,0.6684373050902928 -1.3544641943297362 0.4067268693837403c -0.4863394830136133,-0.26171043570655245 -0.6684373050902928,-0.868124711316123 -0.40672686938374036 -1.354464194329736c 0.2617104357065524,-0.4863394830136133 0.868124711316123,-0.6684373050902928 1.354464194329736 -0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -49.49221574606807,18.34380227281853 c 0.5078411658260445,-0.21706173128422712 1.0954910729211473,1.866157507148175e-2 1.3125528042053745 0.5265027408975262c 0.21706173128422715,0.5078411658260445 -1.8661575071481695e-2,1.0954910729211473 -0.526502740897526 1.3125528042053745c -0.5078411658260445,0.21706173128422718 -1.0954910729211473,-1.866157507148164e-2 -1.3125528042053745 -0.526502740897526c -0.2170617312842272,-0.5078411658260445 1.8661575071481584e-2,-1.0954910729211473 0.5265027408975258 -1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -52.322367973120826,17.02347702198417 c 0.1469280926995644,-0.5323819873655854 0.6976177188969426,-0.8448541078287432 1.2299997062625279 -0.6979260151291788c 0.5323819873655854,0.14692809269956436 0.8448541078287432,0.6976177188969426 0.6979260151291788 1.2299997062625279c -0.14692809269956433,0.5323819873655854 -0.6976177188969426,0.8448541078287432 -1.2299997062625279 0.6979260151291788c -0.5323819873655854,-0.14692809269956428 -0.8448541078287432,-0.6976177188969426 -0.6979260151291788 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.119210872595815,18.41296980423923 c -0.32462483101657846,-0.4468077483472281 -0.22557600626475444,-1.072177415650842 0.22123174208247354 -1.3968022466674204c 0.4468077483472281,-0.32462483101657846 1.072177415650842,-0.2255760062647545 1.3968022466674204 0.22123174208247354c 0.3246248310165785,0.44680774834722803 0.22557600626475455,1.072177415650842 -0.22123174208247343 1.3968022466674204c -0.44680774834722803,0.3246248310165785 -1.072177415650842,0.22557600626475455 -1.3968022466674201 -0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -54.556816747932444,36.060175840788375 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -56.608504759278425,36.680468591580016 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.69836795433058,35.54727656338247 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -52.76989253775849,32.56550631785653 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -54.52223943568785,29.980491666911615 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -57.635855692615436,29.738801367398413 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -59.766124760877894,32.022433144434004 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -59.308910582503806,35.11176569231166 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -42.35163094498298,40.030183663854295 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.395703944993194,42.17313591793174 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.5741518789393,39.05525575167247 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.1230692184616,37.250805477332655 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -48.1230692184616,38.11857295556777 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -49.315090690091694,41.00511157603613 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -47.801517152407705,43.736798882867795 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -44.72210035055918,44.256618617752444 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -34.80431930249817,29.649162058494973 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -32.77986990314468,30.353286636991385 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.80029359649341,29.559522749591537 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.30408656340425,31.426081394566392 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.40584163172456,34.5474058413924 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.028935159584044,36.573075118194275 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -32.96322620056046,35.97771894341733 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -31.51725612986466,33.20965265972134 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -42.34500998670423,19.26333004536998 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.04975844938925,17.555550713117515 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.73803501835815,20.18285781792143 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.73654683317968,23.14090477685066 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.79943492392921,24.20222189666998 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.13840446443667,22.567615739231606 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.757265665829024,19.46797808097565 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -37.94302381727246,17.237399299654278 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -101.01827678009803,33.092391906267814 l 4.051851426802629,-12.470316431350504 l 13.112066651862811,8.881784197001252e-16 l 4.051851426802628,12.470316431350504 l -10.607884752734035,7.707079405040906 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -99.24510842473727,36.060175840788375 l -2.987922881985716,0.26891792671030135 l -2.0731879469605947,-2.1683845914821736 l 0.4026997974529658,-2.972849285303803 l 2.5753463808055974,-1.5386978322177192 l 2.8087046119192114,1.054124472244026 l 0.9270509831248429,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.29679643608324,36.680468591580016 c -0.19405895681460306,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583954c -0.5170682413141326,-0.19405895681460303 -0.7789190033729985,-0.7705414534069467 -0.5848600465583955 -1.2876096947210791c 0.194058956814603,-0.5170682413141326 0.7705414534069466,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.19405895681460297 0.7789190033729985,0.7705414534069466 0.5848600465583955 1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -98.3866596311354,35.54727656338247 c 0.2832664491105159,0.47410817721695286 0.1285586610209939,1.0880816218972564 -0.34554951619595886 1.3713480710077723c -0.47410817721695286,0.28326644911051596 -1.0880816218972564,0.12855866102099395 -1.3713480710077723 -0.34554951619595875c -0.28326644911051596,-0.4741081772169528 -0.128558661020994,-1.0880816218972564 0.34554951619595875 -1.3713480710077723c 0.4741081772169528,-0.283266449110516 1.0880816218972564,-0.12855866102099406 1.3713480710077721 0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.4581842145633,32.56550631785653 c 0.5472864412728883,7.413498563107393e-2 0.9308514815813539,0.5778965863127014 0.85671649595028 1.1251830275855894c -7.41349856310739e-2,0.5472864412728883 -0.5778965863127012,0.9308514815813539 -1.1251830275855894 0.85671649595028c -0.5472864412728883,-7.413498563107386e-2 -0.9308514815813539,-0.5778965863127012 -0.85671649595028 -1.1251830275855892c 7.413498563107383e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855892 -0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.21053111249267,29.980491666911615 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.1732214840525685e-2 -1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -102.32414736942025,29.738801367398413 c -4.9506423292738216e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.950642329273825e-2 1.0361071796059347,0.3562735712947432 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.950642329273832e-2 -1.0361071796059347,-0.3562735712947431 -1.0856136028986727 -0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -104.45441643768271,32.022433144434004 c -0.460922080646941,-0.30425200158381355 -0.5879282738530142,-0.9245481545264638 -0.28367627226920067 -1.3854702351734047c 0.3042520015838135,-0.460922080646941 0.9245481545264638,-0.5879282738530142 1.3854702351734045 -0.2836762722692008c 0.46092208064694107,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692008 1.3854702351734045c -0.30425200158381344,0.46092208064694107 -0.9245481545264638,0.5879282738530143 -1.3854702351734045 0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.99720225930864,35.11176569231166 c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.1167855117431909 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.11678551174319085,-1.0894081372382693 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.17066537343183175 1.0894081372382693,0.1167855117431908 1.260073510670101 0.6420395219202053c 0.17066537343183177,0.5252540101770148 -0.11678551174319074,1.0894081372382693 -0.6420395219202052 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -87.0399226217878,40.0301836638543 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.083995621798,42.173135917931745 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.26244355574411,39.055255751672476 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -89.81136089526642,37.25080547733266 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -92.81136089526642,38.11857295556778 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.00338236689652,41.005111576036136 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -92.48980882921252,43.73679888286781 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -89.410392027364,44.25661861775245 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -79.49261097930298,29.64916205849498 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.46816157994948,30.353286636991392 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.48858527329821,29.559522749591544 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.99237824020905,31.4260813945664 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -83.09413330852938,34.547405841392404 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.71722683638886,36.57307511819428 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.65151787736527,35.97771894341734 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.20554780666947,33.20965265972134 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -87.03330166350904,19.263330045369983 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -85.73805012619407,17.55555071311752 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.42632669516296,20.182857817921434 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -86.4248385099845,23.140904776850665 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -83.48772660073402,24.202221896669982 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.82669614124148,22.56761573923161 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.44555734263383,19.467978080975655 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.63131549407726,17.23739929965428 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -99.2410164474829,23.225554465171324 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.4649563727952,21.465964214058285 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -98.4879449814793,23.883493191111036 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -95.36519827679672,23.845108107072715 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -93.44820821979751,21.379713713137193 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.18050742287288,18.343802272818536 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.01065964992564,17.023477021984174 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.80750254940062,18.412969804239232 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -104.21983360508119,83.30056231263242 l -10.607884752734032,-7.7070794050409095 l 4.051851426802626,-12.470316431350504 l 13.112066651862813,-8.881784197001252e-16 l 4.051851426802625,12.470316431350506 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -100.84936419950499,82.531274665178 l -0.6675628018689423,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689441,-2.9247837365454705 l 1.8704694055761988,-2.3454944474040897 l 2.9999999999999996,-6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.89343719951519,84.67422691925545 c 0.4317936047046945,0.34434390924160146 0.5026855898508986,0.973527679622069 0.1583416806092972 1.4053212843267633c -0.34434390924160146,0.4317936047046945 -0.973527679622069,0.5026855898508986 -1.4053212843267633 0.15834168060929732c -0.4317936047046946,-0.3443439092416014 -0.5026855898508987,-0.9735276796220689 -0.15834168060929732 -1.4053212843267633c 0.3443439092416014,-0.4317936047046946 0.9735276796220689,-0.5026855898508987 1.4053212843267633 -0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.07188513346131,81.55634675299618 c 0.5384378180823963,-0.12289491834217792 1.0745539277959608,0.2139691601431124 1.1974488461381387 0.7524069782255085c 0.12289491834217794,0.5384378180823963 -0.21396916014311235,1.0745539277959608 -0.7524069782255085 1.1974488461381385c -0.5384378180823963,0.12289491834217799 -1.0745539277959608,-0.2139691601431123 -1.1974488461381385 -0.7524069782255083c -0.12289491834217801,-0.5384378180823963 0.21396916014311224,-1.0745539277959608 0.7524069782255083 -1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.62080247298361,79.75189647865635 c 0.23962737231418965,-0.49759136581482094 0.8372612412051562,-0.7067125010990514 1.334852607019977 -0.4670851287848618c 0.49759136581482094,0.23962737231418962 0.7067125010990514,0.8372612412051561 0.46708512878486186 1.3348526070199769c -0.2396273723141896,0.497591365814821 -0.8372612412051561,0.7067125010990515 -1.3348526070199769 0.46708512878486186c -0.497591365814821,-0.23962737231418957 -0.7067125010990515,-0.8372612412051561 -0.4670851287848619 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -106.62080247298361,80.61966395689149 c -0.23962737231419004,-0.49759136581482066 -3.0506237029960248e-2,-1.0952252347057874 0.4670851287848603 -1.3348526070199775c 0.49759136581482066,-0.23962737231419007 1.0952252347057874,-3.0506237029960304e-2 1.3348526070199773 0.4670851287848602c 0.2396273723141901,0.4975913658148206 3.050623702996036e-2,1.0952252347057874 -0.4670851287848601 1.3348526070199773c -0.4975913658148206,0.23962737231419012 -1.0952252347057874,3.0506237029960415e-2 -1.3348526070199773 -0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.81282394461371,83.50620257735983 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381372 0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -106.29925040692972,86.23788988419152 c -0.43179360470469413,0.3443439092416018 -1.0609773750851617,0.27345192409539837 -1.4053212843267633 -0.15834168060929565c -0.3443439092416018,-0.43179360470469413 -0.2734519240953984,-1.0609773750851617 0.15834168060929565 -1.4053212843267633c 0.4317936047046941,-0.34434390924160185 1.0609773750851617,-0.2734519240953985 1.4053212843267633 0.15834168060929554c 0.34434390924160185,0.4317936047046941 0.2734519240953985,1.0609773750851614 -0.15834168060929543 1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.21983360508119,86.75770961907615 c 1.2263184908229828e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.564495366372072e-16 -1.0,-0.44771525016920616 -1.0000000000000002 -0.9999999999999994c -1.9026722419211607e-16,-0.5522847498307935 0.4477152501692061,-1.0 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.2408491174702496e-16 1.0,0.44771525016920605 1.0000000000000002 0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -93.30205255702018,72.15025305981867 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -91.27760315766668,72.85437763831509 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.29802685101541,72.06061375091524 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.80181981792624,73.9271723958901 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.90357488624657,77.0484968427161 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.52666841410606,79.07416611951797 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -91.46095945508246,78.47880994474102 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -90.01498938438667,75.71074366104504 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -100.84274324122623,61.76442104669368 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.54749170391126,60.05664171444122 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.23576827288015,62.68394881924514 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.23428008770169,65.64199577817436 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.29716817845122,66.70331289799367 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.63613771895868,65.0687067405553 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.25499892035103,61.96906908229935 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.44075707179445,59.73849030097798 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -113.0504580252001,65.72664546649501 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -114.2743979505124,63.96705521538198 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -112.2973865591965,66.38458419243473 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -109.17463985451391,66.3461991083964 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.2576497975147,63.88080471446088 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.98994900059007,60.84489327414223 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -110.82010122764284,59.52456802330787 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -113.61694412711782,60.914060805562926 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -113.05455000245446,78.56126684211206 l -2.987922881985716,0.26891792671030057 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.575346380805598,-1.5386978322177187 l 2.808704611919211,1.0541244722440266 l 0.9270509831248422,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -115.10623801380045,79.18155959290371 c -0.19405895681460333,0.5170682413141325 -0.7705414534069471,0.778919003372998 -1.2876096947210796 0.5848600465583946c -0.5170682413141325,-0.1940589568146033 -0.778919003372998,-0.770541453406947 -0.5848600465583947 -1.2876096947210796c 0.19405895681460328,-0.5170682413141325 0.770541453406947,-0.778919003372998 1.2876096947210793 -0.5848600465583949c 0.5170682413141325,0.19405895681460325 0.778919003372998,0.770541453406947 0.5848600465583949 1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -112.1961012088526,78.04836756470615 c 0.2832664491105157,0.4741081772169531 0.12855866102099328,1.0880816218972567 -0.34554951619595964 1.3713480710077723c -0.4741081772169531,0.28326644911051574 -1.0880816218972567,0.12855866102099334 -1.3713480710077721 -0.3455495161959595c -0.28326644911051574,-0.47410817721695303 -0.1285586610209934,-1.0880816218972567 0.3455495161959595 -1.3713480710077721c 0.47410817721695303,-0.2832664491105158 1.0880816218972567,-0.12855866102099345 1.371348071007772 0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -111.2676257922805,75.06659731918022 c 0.5472864412728883,7.41349856310742e-2 0.9308514815813537,0.5778965863127019 0.8567164959502794 1.12518302758559c -7.413498563107417e-2,0.5472864412728883 -0.5778965863127018,0.9308514815813537 -1.1251830275855899 0.8567164959502795c -0.5472864412728883,-7.413498563107412e-2 -0.9308514815813537,-0.5778965863127017 -0.8567164959502795 -1.1251830275855896c 7.41349856310741e-2,-0.5472864412728883 0.5778965863127017,-0.9308514815813537 1.1251830275855896 -0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -113.01997269020987,72.4815826682353 c 0.39918858054789336,-0.38166336221311603 1.0321941506011403,-0.3674563657073667 1.413857512814256 3.1732214840526685e-2c 0.38166336221311603,0.39918858054789336 0.3674563657073667,1.03219415060114 -3.1732214840526574e-2 1.413857512814256c -0.3991885805478933,0.3816633622131161 -1.03219415060114,0.36745636570736673 -1.413857512814256 -3.173221484052646e-2c -0.3816633622131161,-0.3991885805478933 -0.3674563657073668,-1.03219415060114 3.173221484052635e-2 -1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -116.13358894713744,72.2398923687221 c -4.9506423292738e-2,-0.5500614137970617 0.3562735712947437,-1.0361071796059347 0.9063349850918053 -1.0856136028986725c 0.5500614137970617,-4.9506423292738036e-2 1.0361071796059347,0.35627357129474363 1.0856136028986725 0.9063349850918052c 4.950642329273807e-2,0.5500614137970617 -0.3562735712947436,1.0361071796059345 -0.9063349850918051 1.0856136028986725c -0.5500614137970617,4.9506423292738105e-2 -1.0361071796059345,-0.3562735712947435 -1.0856136028986725 -0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -118.2638580153999,74.52352414575769 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.3854702351734047 0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -117.80664383702583,77.61285669363535 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202055 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -57.45836143622755,101.86060170536186 l -10.607884752734035,7.707079405040905 l -10.607884752734032,-7.707079405040908 l 4.051851426802626,-12.470316431350506 l 13.112066651862815,1.7763568394002505e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -57.14846514090057,98.41737185758902 l 2.575346380805598,1.5386978322177178 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.9879228819857166,-0.2689179267102997 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248417,-2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.124015741547076,99.12149643608544 c 0.46092208064694085,-0.304252001583814 1.0812182335895915,-0.17724580837774156 1.3854702351734054 0.2836762722691991c 0.30425200158381405,0.46092208064694085 0.17724580837774162,1.0812182335895915 -0.283676272269199 1.3854702351734054c -0.4609220806469408,0.30425200158381405 -1.0812182335895915,0.17724580837774168 -1.3854702351734054 -0.283676272269199c -0.3042520015838141,-0.4609220806469408 -0.17724580837774173,-1.0812182335895915 0.2836762722691989 -1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.14443943489581,98.32773254868559 c 4.9506423292737724e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845439 1.085613602898672 -0.9063349850918062c 0.5500614137970617,4.950642329273769e-2 0.9558414083845439,0.5355521891016102 0.9063349850918062 1.0856136028986718c -4.9506423292737654e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845439 -1.0856136028986718 0.9063349850918062c -0.5500614137970617,-4.950642329273762e-2 -0.9558414083845439,-0.5355521891016102 -0.9063349850918062 -1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.648232401806645,100.19429119366045 c -0.3991885805478935,-0.38166336221311586 -0.4133955770536434,-1.0146689322663627 -3.173221484052757e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478935 1.0146689322663627,-0.41339557705364344 1.413857512814256 -3.1732214840527684e-2c 0.3991885805478936,0.3816633622131158 0.41339557705364344,1.0146689322663627 3.1732214840527795e-2 1.413857512814256c -0.3816633622131158,0.3991885805478936 -1.0146689322663627,0.4133955770536435 -1.4138575128142559 3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.74998747012696,103.31561564048646 c -0.5472864412728883,7.413498563107447e-2 -1.0510480419545163,-0.3094300546773906 -1.1251830275855907 -0.8567164959502787c -7.41349856310745e-2,-0.5472864412728883 0.30943005467739054,-1.0510480419545163 0.8567164959502787 -1.1251830275855905c 0.5472864412728883,-7.413498563107454e-2 1.0510480419545163,0.3094300546773905 1.1251830275855905 0.8567164959502784c 7.413498563107457e-2,0.5472864412728883 -0.30943005467739043,1.051048041954516 -0.8567164959502784 1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.37308099798644,105.34128491728832 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.30737203896286,104.74592874251137 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.28760969472108 0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.86140196826705,101.9778624588154 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -64.68915582510662,88.03153984446402 l 2.259214398010832,-1.9738161778191377 l 2.9517887657958886,0.5356706843959094 l 1.4216059874189955,2.641786595570213 l -1.17907509496177,2.758583317654352 l -2.8918885820875584,0.7981105367000263 l -2.427050983124842,-1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -63.39390428779165,86.32376051221156 c -0.14692809269956478,-0.5323819873655854 0.16554402776359245,-1.0830716135629639 0.6979260151291777 -1.2299997062625287c 0.5323819873655854,-0.1469280926995648 1.0830716135629639,0.1655440277635924 1.2299997062625287 0.6979260151291775c 0.14692809269956483,0.5323819873655854 -0.16554402776359234,1.0830716135629639 -0.6979260151291775 1.2299997062625287c -0.5323819873655854,0.1469280926995649 -1.0830716135629639,-0.16554402776359228 -1.2299997062625287 -0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -65.08218085676054,88.95106761701547 c -0.5078411658260448,-0.2170617312842268 -0.7435644721817543,-0.8047116383793295 -0.5265027408975276 -1.312552804205374c 0.21706173128422676,-0.5078411658260448 0.8047116383793294,-0.7435644721817543 1.312552804205374 -0.5265027408975276c 0.5078411658260448,0.21706173128422673 0.7435644721817544,0.8047116383793294 0.5265027408975276 1.312552804205374c -0.2170617312842267,0.5078411658260448 -0.8047116383793294,0.7435644721817544 -1.3125528042053738 0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.08069267158209,91.90911457594471 c -0.48633948301361307,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297369 -0.40672686938373886c -0.26171043570655295,-0.48633948301361307 -7.96126136298741e-2,-1.092753758623184 0.40672686938373875 -1.3544641943297369c 0.486339483013613,-0.26171043570655295 1.092753758623184,-7.961261362987415e-2 1.3544641943297366 0.40672686938373864c 0.261710435706553,0.486339483013613 7.961261362987421e-2,1.092753758623184 -0.40672686938373864 1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -61.14358076233161,92.97043169576402 c -9.86142499744283e-2,0.5434093066903097 -0.6190771767069565,0.9039869437744216 -1.1624864833972661 0.8053726937999932c -0.5434093066903097,-9.861424997442828e-2 -0.9039869437744216,-0.6190771767069564 -0.8053726937999932 -1.1624864833972661c 9.861424997442823e-2,-0.5434093066903097 0.6190771767069563,-0.9039869437744216 1.162486483397266 -0.8053726937999933c 0.5434093066903097,9.86142499744282e-2 0.9039869437744216,0.6190771767069563 0.8053726937999933 1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.482550302839066,91.33582553832565 c 0.3633695246596052,0.41590988620651315 0.320777146142615,1.0476406672837184 -9.513274006389805e-2 1.4110101919433236c -0.41590988620651315,0.3633695246596052 -1.0476406672837184,0.32077714614261504 -1.4110101919433236 -9.513274006389805e-2c -0.36336952465960526,-0.4159098862065131 -0.32077714614261504,-1.0476406672837184 9.513274006389794e-2 -1.4110101919433233c 0.4159098862065131,-0.36336952465960526 1.0476406672837184,-0.3207771461426151 1.4110101919433233 9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.10141150423142,88.23618788006969 c 0.5517286358374672,-2.4778161606335183e-2 1.0190797352854946,0.4023996003533324 1.0438578968918297 0.9541282361907995c 2.4778161606335218e-2,0.5517286358374672 -0.40239960035333233,1.0190797352854946 -0.9541282361907993 1.0438578968918297c -0.5517286358374672,2.477816160633525e-2 -1.0190797352854946,-0.4023996003533323 -1.0438578968918297 -0.9541282361907992c -2.4778161606335284e-2,-0.5517286358374672 0.4023996003533322,-1.0190797352854946 0.9541282361907991 -1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.28716965567486,86.00560909874832 c 0.3246248310165783,-0.4468077483472283 0.9499944983201921,-0.5458565730990528 1.3968022466674204 -0.22123174208247454c 0.4468077483472283,0.3246248310165783 0.5458565730990528,0.949994498320192 0.22123174208247465 1.3968022466674204c -0.32462483101657824,0.44680774834722836 -0.949994498320192,0.5458565730990528 -1.3968022466674201 0.22123174208247465c -0.44680774834722836,-0.32462483101657824 -0.5458565730990529,-0.949994498320192 -0.22123174208247476 -1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -76.8968706090805,91.99376426426538 l -1.1790750949617705,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.259214398010833,1.9738161778191372 l -0.13459449105154353,2.9969791996239428 l -2.4270509831248415,1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -78.12081053439277,90.23417401315234 c -0.5517286358374672,-2.477816160633497e-2 -0.9789063977971351,-0.49212926105436205 -0.9541282361908001 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374672 0.492129261054362,-0.9789063977971351 1.043857896891829 -0.9541282361908001c 0.5517286358374672,2.4778161606334902e-2 0.9789063977971351,0.49212926105436194 0.9541282361908001 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374672 -0.4921292610543619,0.9789063977971351 -1.0438578968918288 0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.14379914307688,92.6517029902051 c -0.3633695246596051,0.4159098862065132 -0.9951003057368102,0.45850226472350375 -1.4110101919433233 9.513274006389871e-2c -0.4159098862065132,-0.3633695246596051 -0.4585022647235038,-0.9951003057368102 -9.513274006389882e-2 -1.4110101919433233c 0.36336952465960504,-0.41590988620651326 0.9951003057368102,-0.4585022647235038 1.411010191943323 -9.513274006389894e-2c 0.41590988620651326,0.36336952465960504 0.45850226472350386,0.9951003057368102 9.513274006389894e-2 1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -73.0210524383943,92.61331790616677 c 9.861424997442846e-2,0.5434093066903097 -0.26196338710968303,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442848e-2 -1.063872233422838,-0.261963387109683 -1.1624864833972666 -0.8053726937999925c -9.861424997442853e-2,-0.5434093066903097 0.2619633871096829,-1.063872233422838 0.8053726937999923 -1.1624864833972663c 0.5434093066903097,-9.861424997442855e-2 1.063872233422838,0.26196338710968287 1.1624864833972663 0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.1040623813951,90.14792351223124 c 0.4863394830136131,0.26171043570655267 0.6684373050902923,0.8681247113161235 0.4067268693837397 1.3544641943297364c -0.2617104357065526,0.4863394830136131 -0.8681247113161235,0.6684373050902923 -1.3544641943297364 0.40672686938373975c -0.4863394830136132,-0.2617104357065526 -0.6684373050902924,-0.8681247113161233 -0.4067268693837398 -1.3544641943297362c 0.26171043570655256,-0.4863394830136132 0.8681247113161232,-0.6684373050902924 1.3544641943297362 -0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.83636158447047,87.11201207191259 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975262 -1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -74.66651381152323,85.79168682107823 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.46335671099821,87.18117960333329 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674201 -0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -76.90096258633486,104.82838563988241 l -2.987922881985716,0.26891792671030057 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.575346380805598,-1.5386978322177187 l 2.808704611919211,1.0541244722440266 l 0.9270509831248422,2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -78.95265059768084,105.44867839067406 c -0.19405895681460333,0.5170682413141325 -0.7705414534069471,0.778919003372998 -1.2876096947210796 0.5848600465583946c -0.5170682413141325,-0.1940589568146033 -0.778919003372998,-0.770541453406947 -0.5848600465583947 -1.2876096947210796c 0.19405895681460328,-0.5170682413141325 0.770541453406947,-0.778919003372998 1.2876096947210793 -0.5848600465583949c 0.5170682413141325,0.19405895681460325 0.778919003372998,0.770541453406947 0.5848600465583949 1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.04251379273299,104.3154863624765 c 0.2832664491105157,0.4741081772169531 0.12855866102099328,1.0880816218972567 -0.34554951619595964 1.3713480710077723c -0.4741081772169531,0.28326644911051574 -1.0880816218972567,0.12855866102099334 -1.3713480710077721 -0.3455495161959595c -0.28326644911051574,-0.47410817721695303 -0.1285586610209934,-1.0880816218972567 0.3455495161959595 -1.3713480710077721c 0.47410817721695303,-0.2832664491105158 1.0880816218972567,-0.12855866102099345 1.371348071007772 0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -75.11403837616089,101.33371611695057 c 0.5472864412728883,7.41349856310742e-2 0.9308514815813537,0.5778965863127019 0.8567164959502794 1.12518302758559c -7.413498563107417e-2,0.5472864412728883 -0.5778965863127018,0.9308514815813537 -1.1251830275855899 0.8567164959502795c -0.5472864412728883,-7.413498563107412e-2 -0.9308514815813537,-0.5778965863127017 -0.8567164959502795 -1.1251830275855896c 7.41349856310741e-2,-0.5472864412728883 0.5778965863127017,-0.9308514815813537 1.1251830275855896 -0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.86638527409025,98.74870146600566 c 0.39918858054789336,-0.38166336221311603 1.0321941506011403,-0.3674563657073667 1.413857512814256 3.1732214840526685e-2c 0.38166336221311603,0.39918858054789336 0.3674563657073667,1.03219415060114 -3.1732214840526574e-2 1.413857512814256c -0.3991885805478933,0.3816633622131161 -1.03219415060114,0.36745636570736673 -1.413857512814256 -3.173221484052646e-2c -0.3816633622131161,-0.3991885805478933 -0.3674563657073668,-1.03219415060114 3.173221484052635e-2 -1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -79.98000153101783,98.50701116649245 c -4.9506423292738e-2,-0.5500614137970617 0.3562735712947437,-1.0361071796059347 0.9063349850918053 -1.0856136028986725c 0.5500614137970617,-4.9506423292738036e-2 1.0361071796059347,0.35627357129474363 1.0856136028986725 0.9063349850918052c 4.950642329273807e-2,0.5500614137970617 -0.3562735712947436,1.0361071796059345 -0.9063349850918051 1.0856136028986725c -0.5500614137970617,4.9506423292738105e-2 -1.0361071796059345,-0.3562735712947435 -1.0856136028986725 -0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.1102705992803,100.79064294352804 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.3854702351734047 0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -81.65305642090622,103.8799754914057 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202055 1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -64.69577678338538,108.79839346294835 l -0.667562801868943,2.92478373654547 l -2.702906603707257,1.3016512173526746 l -2.702906603707256,-1.3016512173526742 l -0.6675628018689435,-2.9247837365454705 l 1.8704694055761992,-2.3454944474040893 h 2.9999999999999996 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.73984978339558,110.9413457170258 c 0.4317936047046944,0.3443439092416016 0.5026855898508984,0.9735276796220691 0.15834168060929676 1.4053212843267633c -0.3443439092416016,0.4317936047046944 -0.9735276796220691,0.5026855898508984 -1.4053212843267633 0.15834168060929688c -0.43179360470469447,-0.3443439092416015 -0.5026855898508984,-0.9735276796220691 -0.15834168060929688 -1.4053212843267633c 0.3443439092416015,-0.43179360470469447 0.973527679622069,-0.5026855898508984 1.4053212843267633 -0.158341680609297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.9182977173417,107.82346555076653 c 0.5384378180823963,-0.12289491834217772 1.0745539277959606,0.21396916014311274 1.1974488461381383 0.752406978225509c 0.12289491834217775,0.5384378180823963 -0.21396916014311268,1.0745539277959606 -0.7524069782255087 1.1974488461381383c -0.5384378180823963,0.12289491834217779 -1.0745539277959606,-0.21396916014311262 -1.1974488461381383 -0.7524069782255087c -0.12289491834217782,-0.5384378180823963 0.21396916014311257,-1.0745539277959606 0.7524069782255085 -1.1974488461381383Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -67.467215056864,106.01901527642671 c 0.2396273723141898,-0.49759136581482083 0.8372612412051563,-0.706712501099051 1.334852607019977 -0.46708512878486136c 0.49759136581482083,0.23962737231418976 0.7067125010990511,0.8372612412051563 0.4670851287848614 1.3348526070199769c -0.23962737231418973,0.4975913658148209 -0.8372612412051563,0.7067125010990511 -1.3348526070199769 0.4670851287848614c -0.4975913658148209,-0.2396273723141897 -0.7067125010990511,-0.8372612412051562 -0.46708512878486147 -1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -70.467215056864,106.88678275466184 c -0.23962737231418996,-0.4975913658148208 -3.0506237029960026e-2,-1.0952252347057874 0.4670851287848606 -1.3348526070199773c 0.4975913658148208,-0.23962737231418998 1.0952252347057874,-3.050623702996008e-2 1.3348526070199773 0.46708512878486047c 0.23962737231419,0.4975913658148207 3.0506237029960137e-2,1.0952252347057874 -0.46708512878486036 1.3348526070199773c -0.4975913658148207,0.23962737231419004 -1.0952252347057874,3.0506237029960193e-2 -1.3348526070199773 -0.46708512878486025Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.6592365284941,109.77332137513018 c -0.5384378180823963,-0.12289491834217754 -0.875301896567687,-0.6590110280557416 -0.7524069782255095 -1.1974488461381378c 0.12289491834217751,-0.5384378180823963 0.6590110280557415,-0.8753018965676871 1.1974488461381376 -0.7524069782255095c 0.5384378180823963,0.12289491834217747 0.8753018965676871,0.6590110280557415 0.7524069782255096 1.1974488461381376c -0.12289491834217744,0.5384378180823963 -0.6590110280557415,0.8753018965676871 -1.1974488461381374 0.7524069782255096Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -70.14566299081011,112.50500868196187 c -0.43179360470469424,0.3443439092416017 -1.0609773750851617,0.2734519240953981 -1.4053212843267633 -0.158341680609296c -0.3443439092416017,-0.43179360470469424 -0.27345192409539815,-1.0609773750851617 0.158341680609296 -1.4053212843267633c 0.4317936047046942,-0.34434390924160174 1.0609773750851617,-0.2734519240953982 1.4053212843267633 0.15834168060929588c 0.34434390924160174,0.4317936047046942 0.2734519240953982,1.0609773750851614 -0.15834168060929577 1.405321284326763Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -67.06624618896159,113.0248284168465 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0 0.9999999999999994Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -31.912658772841972,-72.1467722160595 l -36.15358741611962,-26.26711879777034 l -36.153587416119606,26.267118797770348 l 13.809441577717202,42.5010910013237 l 44.68829167680482,-7.105427357601002e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -25.356625446910563,-63.123166476241 l 4.051851426802626,-12.470316431350508 l -10.607884752734032,-7.707079405040908 l -10.607884752734035,7.707079405040906 l 4.051851426802627,12.470316431350508 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -28.535568408987018,-61.764421046693684 l 2.259214398010831,1.9738161778191379 l 2.9517887657958886,-0.5356706843959083 l 1.421605987418996,-2.641786595570212 l -1.1790750949617692,-2.758583317654352 l -2.891888582087558,-0.7981105367000272 l -2.4270509831248424,1.7633557568774179 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -27.240316871672043,-60.05664171444122 c -0.14692809269956494,0.5323819873655852 0.165544027763592,1.0830716135629639 0.6979260151291771 1.2299997062625287c 0.5323819873655852,0.14692809269956497 1.0830716135629637,-0.16554402776359195 1.2299997062625287 -0.697926015129177c 0.146928092699565,-0.5323819873655852 -0.1655440277635919,-1.0830716135629637 -0.6979260151291768 -1.2299997062625287c -0.5323819873655852,-0.14692809269956505 -1.0830716135629637,0.16554402776359184 -1.2299997062625285 0.6979260151291767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.928593440640945,-62.68394881924513 c -0.5078411658260448,0.2170617312842266 -0.7435644721817544,0.8047116383793291 -0.5265027408975278 1.3125528042053736c 0.21706173128422657,0.5078411658260448 0.804711638379329,0.7435644721817544 1.3125528042053736 0.5265027408975278c 0.5078411658260448,-0.21706173128422654 0.7435644721817544,-0.8047116383793289 0.5265027408975278 -1.3125528042053736c -0.2170617312842265,-0.5078411658260448 -0.8047116383793289,-0.7435644721817544 -1.3125528042053733 -0.5265027408975279Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -27.927105255462475,-65.64199577817436 c -0.4863394830136129,-0.261710435706553 -1.092753758623184,-7.961261362987437e-2 -1.3544641943297369 0.4067268693837384c -0.26171043570655306,0.4863394830136129 -7.961261362987443e-2,1.092753758623184 0.4067268693837383 1.3544641943297369c 0.48633948301361285,0.26171043570655306 1.0927537586231837,7.961261362987448e-2 1.3544641943297366 -0.4067268693837382c 0.2617104357065531,-0.48633948301361285 7.961261362987454e-2,-1.0927537586231837 -0.4067268693837382 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.989993346212,-66.70331289799367 c -9.861424997442805e-2,-0.5434093066903097 -0.6190771767069561,-0.9039869437744217 -1.1624864833972657 -0.8053726937999935c -0.5434093066903097,9.861424997442803e-2 -0.9039869437744217,0.619077176706956 -0.8053726937999937 1.1624864833972655c 9.861424997442798e-2,0.5434093066903097 0.6190771767069558,0.9039869437744217 1.1624864833972652 0.8053726937999937c 0.5434093066903097,-9.861424997442796e-2 0.9039869437744217,-0.6190771767069558 0.8053726937999937 -1.1624864833972652Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -22.328962886719463,-65.0687067405553 c 0.3633695246596053,-0.4159098862065129 0.3207771461426154,-1.047640667283718 -9.513274006389738e-2 -1.4110101919433233c -0.4159098862065129,-0.3633695246596053 -1.047640667283718,-0.32077714614261543 -1.411010191943323 9.513274006389738e-2c -0.36336952465960537,0.41590988620651287 -0.3207771461426155,1.047640667283718 9.513274006389727e-2 1.411010191943323c 0.41590988620651287,0.36336952465960537 1.047640667283718,0.32077714614261554 1.411010191943323 -9.513274006389716e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -21.94782408811182,-61.96906908229935 c 0.5517286358374671,2.4778161606335395e-2 1.0190797352854946,-0.4023996003533319 1.04385789689183 -0.9541282361907988c 2.477816160633543e-2,-0.5517286358374671 -0.40239960035333183,-1.0190797352854946 -0.9541282361907988 -1.04385789689183c -0.5517286358374671,-2.477816160633546e-2 -1.0190797352854946,0.4023996003533318 -1.04385789689183 0.9541282361907986c -2.4778161606335496e-2,0.5517286358374671 0.4023996003533317,1.0190797352854946 0.9541282361907986 1.04385789689183Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.133582239555246,-59.73849030097798 c 0.3246248310165781,0.44680774834722836 0.9499944983201918,0.545856573099053 1.39680224666742 0.22123174208247498c 0.44680774834722836,-0.3246248310165781 0.545856573099053,-0.9499944983201918 0.2212317420824751 -1.39680224666742c -0.324624831016578,-0.4468077483472284 -0.9499944983201918,-0.5458565730990531 -1.39680224666742 -0.2212317420824751c -0.4468077483472284,0.324624831016578 -0.5458565730990531,0.9499944983201917 -0.2212317420824752 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -40.743283192960874,-65.72664546649503 l -1.1790750949617714,2.7585833176543506 l 1.4216059874189944,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.13459449105154264,-2.9969791996239428 l -2.427050983124841,-1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.96722311827316,-63.96705521538199 c -0.5517286358374673,2.4778161606334753e-2 -0.9789063977971354,0.4921292610543618 -0.9541282361908007 1.0438578968918288c 2.477816160633472e-2,0.5517286358374673 0.4921292610543617,0.9789063977971354 1.0438578968918288 0.9541282361908007c 0.5517286358374673,-2.4778161606334687e-2 0.9789063977971354,-0.49212926105436167 0.9541282361908007 -1.0438578968918288c -2.4778161606334653e-2,-0.5517286358374673 -0.4921292610543616,-0.9789063977971354 -1.0438578968918286 -0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -39.99021172695726,-66.38458419243474 c -0.363369524659605,-0.4159098862065135 -0.9951003057368102,-0.4585022647235043 -1.4110101919433236 -9.513274006389938e-2c -0.4159098862065135,0.363369524659605 -0.45850226472350436,0.9951003057368102 -9.513274006389949e-2 1.4110101919433236c 0.3633695246596049,0.41590988620651353 0.9951003057368102,0.45850226472350436 1.4110101919433236 9.51327400638996e-2c 0.41590988620651353,-0.3633695246596049 0.4585022647235044,-0.9951003057368101 9.51327400638996e-2 -1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.867465022274686,-66.34619910839642 c 9.861424997442873e-2,-0.5434093066903097 -0.26196338710968253,-1.0638722334228383 -0.8053726937999921 -1.162486483397267c -0.5434093066903097,-9.861424997442876e-2 -1.0638722334228383,0.2619633871096825 -1.162486483397267 0.805372693799992c -9.86142499744288e-2,0.5434093066903097 0.2619633871096824,1.0638722334228383 0.8053726937999919 1.162486483397267c 0.5434093066903097,9.861424997442883e-2 1.0638722334228383,-0.26196338710968237 1.162486483397267 -0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -34.95047496527548,-63.88080471446089 c 0.48633948301361324,-0.2617104357065525 0.6684373050902928,-0.8681247113161232 0.40672686938374025 -1.3544641943297364c -0.26171043570655245,-0.48633948301361324 -0.8681247113161231,-0.6684373050902928 -1.3544641943297362 -0.4067268693837403c -0.4863394830136133,0.26171043570655245 -0.6684373050902928,0.868124711316123 -0.40672686938374036 1.354464194329736c 0.2617104357065524,0.4863394830136133 0.868124711316123,0.6684373050902928 1.354464194329736 0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.68277416835086,-60.84489327414224 c 0.5078411658260445,0.21706173128422712 1.0954910729211473,-1.866157507148175e-2 1.3125528042053745 -0.5265027408975262c 0.21706173128422715,-0.5078411658260445 -1.8661575071481695e-2,-1.0954910729211473 -0.526502740897526 -1.3125528042053745c -0.5078411658260445,-0.21706173128422718 -1.0954910729211473,1.866157507148164e-2 -1.3125528042053745 0.526502740897526c -0.2170617312842272,0.5078411658260445 1.8661575071481584e-2,1.0954910729211473 0.5265027408975258 1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.51292639540362,-59.52456802330788 c 0.1469280926995644,0.5323819873655854 0.6976177188969426,0.8448541078287432 1.2299997062625279 0.6979260151291788c 0.5323819873655854,-0.14692809269956436 0.8448541078287432,-0.6976177188969426 0.6979260151291788 -1.2299997062625279c -0.14692809269956433,-0.5323819873655854 -0.6976177188969426,-0.8448541078287432 -1.2299997062625279 -0.6979260151291788c -0.5323819873655854,0.14692809269956428 -0.8448541078287432,0.6976177188969426 -0.6979260151291788 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.309769294878606,-60.91406080556294 c -0.32462483101657846,0.4468077483472281 -0.22557600626475444,1.072177415650842 0.22123174208247354 1.3968022466674204c 0.4468077483472281,0.32462483101657846 1.072177415650842,0.2255760062647545 1.3968022466674204 -0.22123174208247354c 0.3246248310165785,-0.44680774834722803 0.22557600626475455,-1.072177415650842 -0.22123174208247343 -1.3968022466674204c -0.44680774834722803,-0.3246248310165785 -1.072177415650842,-0.22557600626475455 -1.3968022466674201 0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -40.747375170215236,-78.56126684211206 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.799063181561216,-79.18155959290371 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -39.88892637661337,-78.04836756470615 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.96045096004128,-75.06659731918022 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -40.71279785797064,-72.4815826682353 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -43.82641411489823,-72.2398923687221 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.956683183160685,-74.52352414575769 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.4994690047866,-77.61285669363535 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -28.54218936726577,-82.531274665178 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.586262367275978,-84.67422691925545 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -28.764710301222085,-81.55634675299618 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -31.31362764074439,-79.75189647865635 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -34.31362764074439,-80.61966395689149 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.50564911237448,-83.50620257735983 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -33.992075574690496,-86.23788988419152 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -30.91265877284197,-86.75770961907615 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -20.994877724780956,-72.15025305981867 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -18.97042832542746,-72.85437763831509 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -21.990852018776195,-72.06061375091524 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.49464498568703,-73.9271723958901 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -24.596400054007354,-77.0484968427161 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -22.219493581866836,-79.07416611951797 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -19.153784622843247,-78.47880994474102 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -17.707814552147443,-75.71074366104504 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -52.27813367649058,-20.622075474917317 l 13.112066651862813,-1.7763568394002505e-15 l 4.051851426802627,-12.470316431350504 l -10.607884752734032,-7.7070794050409095 l -10.607884752734034,7.707079405040909 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -54.55272477067808,-23.225554465171335 l -1.1790750949617714,2.7585833176543506 l 1.4216059874189944,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.13459449105154264,-2.9969791996239428 l -2.427050983124841,-1.7633557568774199 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.77666469599037,-21.4659642140583 c -0.5517286358374673,2.4778161606334753e-2 -0.9789063977971354,0.4921292610543618 -0.9541282361908007 1.0438578968918288c 2.477816160633472e-2,0.5517286358374673 0.4921292610543617,0.9789063977971354 1.0438578968918288 0.9541282361908007c 0.5517286358374673,-2.4778161606334687e-2 0.9789063977971354,-0.49212926105436167 0.9541282361908007 -1.0438578968918288c -2.4778161606334653e-2,-0.5517286358374673 -0.4921292610543616,-0.9789063977971354 -1.0438578968918286 -0.9541282361908007Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.79965330467447,-23.883493191111047 c -0.363369524659605,-0.4159098862065135 -0.9951003057368102,-0.4585022647235043 -1.4110101919433236 -9.513274006389938e-2c -0.4159098862065135,0.363369524659605 -0.45850226472350436,0.9951003057368102 -9.513274006389949e-2 1.4110101919433236c 0.3633695246596049,0.41590988620651353 0.9951003057368102,0.45850226472350436 1.4110101919433236 9.51327400638996e-2c 0.41590988620651353,-0.3633695246596049 0.4585022647235044,-0.9951003057368101 9.51327400638996e-2 -1.4110101919433233Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -50.676906599991895,-23.84510810707272 c 9.861424997442873e-2,-0.5434093066903097 -0.26196338710968253,-1.0638722334228383 -0.8053726937999921 -1.162486483397267c -0.5434093066903097,-9.861424997442876e-2 -1.0638722334228383,0.2619633871096825 -1.162486483397267 0.805372693799992c -9.86142499744288e-2,0.5434093066903097 0.2619633871096824,1.0638722334228383 0.8053726937999919 1.162486483397267c 0.5434093066903097,9.861424997442883e-2 1.0638722334228383,-0.26196338710968237 1.162486483397267 -0.8053726937999918Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -48.75991654299269,-21.3797137131372 c 0.48633948301361324,-0.2617104357065525 0.6684373050902928,-0.8681247113161232 0.40672686938374025 -1.3544641943297364c -0.26171043570655245,-0.48633948301361324 -0.8681247113161231,-0.6684373050902928 -1.3544641943297362 -0.4067268693837403c -0.4863394830136133,0.26171043570655245 -0.6684373050902928,0.868124711316123 -0.40672686938374036 1.354464194329736c 0.2617104357065524,0.4863394830136133 0.868124711316123,0.6684373050902928 1.354464194329736 0.4067268693837404Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -49.49221574606807,-18.343802272818543 c 0.5078411658260445,0.21706173128422712 1.0954910729211473,-1.866157507148175e-2 1.3125528042053745 -0.5265027408975262c 0.21706173128422715,-0.5078411658260445 -1.8661575071481695e-2,-1.0954910729211473 -0.526502740897526 -1.3125528042053745c -0.5078411658260445,-0.21706173128422718 -1.0954910729211473,1.866157507148164e-2 -1.3125528042053745 0.526502740897526c -0.2170617312842272,0.5078411658260445 1.8661575071481584e-2,1.0954910729211473 0.5265027408975258 1.3125528042053742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -52.322367973120826,-17.023477021984185 c 0.1469280926995644,0.5323819873655854 0.6976177188969426,0.8448541078287432 1.2299997062625279 0.6979260151291788c 0.5323819873655854,-0.14692809269956436 0.8448541078287432,-0.6976177188969426 0.6979260151291788 -1.2299997062625279c -0.14692809269956433,-0.5323819873655854 -0.6976177188969426,-0.8448541078287432 -1.2299997062625279 -0.6979260151291788c -0.5323819873655854,0.14692809269956428 -0.8448541078287432,0.6976177188969426 -0.6979260151291788 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.119210872595815,-18.412969804239243 c -0.32462483101657846,0.4468077483472281 -0.22557600626475444,1.072177415650842 0.22123174208247354 1.3968022466674204c 0.4468077483472281,0.32462483101657846 1.072177415650842,0.2255760062647545 1.3968022466674204 -0.22123174208247354c 0.3246248310165785,-0.44680774834722803 0.22557600626475455,-1.072177415650842 -0.22123174208247343 -1.3968022466674204c -0.44680774834722803,-0.3246248310165785 -1.072177415650842,-0.22557600626475455 -1.3968022466674201 0.22123174208247331Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -54.556816747932444,-36.06017584078839 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -56.608504759278425,-36.68046859158003 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.69836795433058,-35.54727656338248 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -52.76989253775849,-32.565506317856546 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -54.52223943568785,-29.98049166691163 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -57.635855692615436,-29.738801367398427 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -59.766124760877894,-32.02243314443402 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -59.308910582503806,-35.11176569231167 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -42.35163094498298,-40.03018366385431 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.395703944993194,-42.17313591793175 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.5741518789393,-39.05525575167248 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -45.1230692184616,-37.25080547733267 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -48.1230692184616,-38.118572955567785 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -49.315090690091694,-41.00511157603614 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -47.801517152407705,-43.73679888286781 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -44.72210035055918,-44.25661861775246 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -34.80431930249817,-29.649162058494987 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -32.77986990314468,-30.3532866369914 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.80029359649341,-29.55952274959155 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.30408656340425,-31.426081394566406 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.40584163172456,-34.54740584139241 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.028935159584044,-36.57307511819429 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -32.96322620056046,-35.977718943417344 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -31.51725612986466,-33.20965265972136 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -42.34500998670423,-19.263330045369994 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.04975844938925,-17.55555071311753 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -42.73803501835815,-20.182857817921445 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -41.73654683317968,-23.140904776850675 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -38.79943492392921,-24.202221896669993 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -36.13840446443667,-22.56761573923162 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -35.757265665829024,-19.467978080975666 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -37.94302381727246,-17.237399299654292 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -101.01827678009803,-33.09239190626783 l 4.051851426802629,12.470316431350504 l 13.112066651862811,-8.881784197001252e-16 l 4.051851426802628,-12.470316431350504 l -10.607884752734035,-7.707079405040906 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -99.24510842473727,-36.06017584078839 l -2.987922881985716,-0.26891792671030135 l -2.0731879469605947,2.1683845914821736 l 0.4026997974529658,2.972849285303803 l 2.5753463808055974,1.5386978322177192 l 2.8087046119192114,-1.054124472244026 l 0.9270509831248429,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.29679643608324,-36.68046859158003 c -0.19405895681460306,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583954c -0.5170682413141326,0.19405895681460303 -0.7789190033729985,0.7705414534069467 -0.5848600465583955 1.2876096947210791c 0.194058956814603,0.5170682413141326 0.7705414534069466,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.19405895681460297 0.7789190033729985,-0.7705414534069466 0.5848600465583955 -1.287609694721079Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -98.3866596311354,-35.54727656338248 c 0.2832664491105159,-0.47410817721695286 0.1285586610209939,-1.0880816218972564 -0.34554951619595886 -1.3713480710077723c -0.47410817721695286,-0.28326644911051596 -1.0880816218972564,-0.12855866102099395 -1.3713480710077723 0.34554951619595875c -0.28326644911051596,0.4741081772169528 -0.128558661020994,1.0880816218972564 0.34554951619595875 1.3713480710077723c 0.4741081772169528,0.283266449110516 1.0880816218972564,0.12855866102099406 1.3713480710077721 -0.34554951619595864Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.4581842145633,-32.565506317856546 c 0.5472864412728883,-7.413498563107393e-2 0.9308514815813539,-0.5778965863127014 0.85671649595028 -1.1251830275855894c -7.41349856310739e-2,-0.5472864412728883 -0.5778965863127012,-0.9308514815813539 -1.1251830275855894 -0.85671649595028c -0.5472864412728883,7.413498563107386e-2 -0.9308514815813539,0.5778965863127012 -0.85671649595028 1.1251830275855892c 7.413498563107383e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855892 0.85671649595028Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.21053111249267,-29.98049166691163 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.1732214840525685e-2 1.4138575128142556Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -102.32414736942025,-29.738801367398427 c -4.9506423292738216e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.950642329273825e-2 1.0361071796059347,-0.3562735712947432 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.950642329273832e-2 -1.0361071796059347,0.3562735712947431 -1.0856136028986727 0.9063349850918045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -104.45441643768271,-32.02243314443402 c -0.460922080646941,0.30425200158381355 -0.5879282738530142,0.9245481545264638 -0.28367627226920067 1.3854702351734047c 0.3042520015838135,0.460922080646941 0.9245481545264638,0.5879282738530142 1.3854702351734045 0.2836762722692008c 0.46092208064694107,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692008 -1.3854702351734045c -0.30425200158381344,-0.46092208064694107 -0.9245481545264638,-0.5879282738530143 -1.3854702351734045 -0.2836762722692009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.99720225930864,-35.11176569231167 c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.1167855117431909 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.11678551174319085,1.0894081372382693 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.17066537343183175 1.0894081372382693,-0.1167855117431908 1.260073510670101 -0.6420395219202053c 0.17066537343183177,-0.5252540101770148 -0.11678551174319074,-1.0894081372382693 -0.6420395219202052 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -87.0399226217878,-40.03018366385432 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.083995621798,-42.17313591793176 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.26244355574411,-39.05525575167249 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -89.81136089526642,-37.250805477332676 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -92.81136089526642,-38.11857295556779 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.00338236689652,-41.00511157603615 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -92.48980882921252,-43.736798882867824 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -89.410392027364,-44.256618617752466 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -79.49261097930298,-29.649162058494994 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.46816157994948,-30.353286636991406 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.48858527329821,-29.559522749591558 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.99237824020905,-31.426081394566413 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -83.09413330852938,-34.54740584139242 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.71722683638886,-36.573075118194296 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.65151787736527,-35.97771894341735 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.20554780666947,-33.20965265972136 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -87.03330166350904,-19.263330045369997 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -85.73805012619407,-17.555550713117533 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -87.42632669516296,-20.182857817921448 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -86.4248385099845,-23.14090477685068 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -83.48772660073402,-24.202221896669997 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.82669614124148,-22.567615739231623 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -80.44555734263383,-19.46797808097567 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.63131549407726,-17.237399299654296 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -99.2410164474829,-23.22555446517134 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.4649563727952,-21.4659642140583 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -98.4879449814793,-23.88349319111105 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -95.36519827679672,-23.84510810707273 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -93.44820821979751,-21.379713713137207 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.18050742287288,-18.34380227281855 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.01065964992564,-17.02347702198419 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.80750254940062,-18.412969804239246 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -104.21983360508119,-83.30056231263244 l -10.607884752734032,7.7070794050409095 l 4.051851426802626,12.470316431350504 l 13.112066651862813,8.881784197001252e-16 l 4.051851426802625,-12.470316431350506 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -100.84936419950499,-82.53127466517802 l -0.6675628018689423,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689441,2.9247837365454705 l 1.8704694055761988,2.3454944474040897 l 2.9999999999999996,6.661338147750938e-16 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.89343719951519,-84.67422691925546 c 0.4317936047046945,-0.34434390924160146 0.5026855898508986,-0.973527679622069 0.1583416806092972 -1.4053212843267633c -0.34434390924160146,-0.4317936047046945 -0.973527679622069,-0.5026855898508986 -1.4053212843267633 -0.15834168060929732c -0.4317936047046946,0.3443439092416014 -0.5026855898508987,0.9735276796220689 -0.15834168060929732 1.4053212843267633c 0.3443439092416014,0.4317936047046946 0.9735276796220689,0.5026855898508987 1.4053212843267633 0.15834168060929743Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.07188513346131,-81.55634675299619 c 0.5384378180823963,0.12289491834217792 1.0745539277959608,-0.2139691601431124 1.1974488461381387 -0.7524069782255085c 0.12289491834217794,-0.5384378180823963 -0.21396916014311235,-1.0745539277959608 -0.7524069782255085 -1.1974488461381385c -0.5384378180823963,-0.12289491834217799 -1.0745539277959608,0.2139691601431123 -1.1974488461381385 0.7524069782255083c -0.12289491834217801,0.5384378180823963 0.21396916014311224,1.0745539277959608 0.7524069782255083 1.1974488461381385Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.62080247298361,-79.75189647865636 c 0.23962737231418965,0.49759136581482094 0.8372612412051562,0.7067125010990514 1.334852607019977 0.4670851287848618c 0.49759136581482094,-0.23962737231418962 0.7067125010990514,-0.8372612412051561 0.46708512878486186 -1.3348526070199769c -0.2396273723141896,-0.497591365814821 -0.8372612412051561,-0.7067125010990515 -1.3348526070199769 -0.46708512878486186c -0.497591365814821,0.23962737231418957 -0.7067125010990515,0.8372612412051561 -0.4670851287848619 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -106.62080247298361,-80.6196639568915 c -0.23962737231419004,0.49759136581482066 -3.0506237029960248e-2,1.0952252347057874 0.4670851287848603 1.3348526070199775c 0.49759136581482066,0.23962737231419007 1.0952252347057874,3.0506237029960304e-2 1.3348526070199773 -0.4670851287848602c 0.2396273723141901,-0.4975913658148206 3.050623702996036e-2,-1.0952252347057874 -0.4670851287848601 -1.3348526070199773c -0.4975913658148206,-0.23962737231419012 -1.0952252347057874,-3.0506237029960415e-2 -1.3348526070199773 0.46708512878485997Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.81282394461371,-83.50620257735984 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381372 -0.7524069782255098Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -106.29925040692972,-86.23788988419153 c -0.43179360470469413,-0.3443439092416018 -1.0609773750851617,-0.27345192409539837 -1.4053212843267633 0.15834168060929565c -0.3443439092416018,0.43179360470469413 -0.2734519240953984,1.0609773750851617 0.15834168060929565 1.4053212843267633c 0.4317936047046941,0.34434390924160185 1.0609773750851617,0.2734519240953985 1.4053212843267633 -0.15834168060929554c 0.34434390924160185,-0.4317936047046941 0.2734519240953985,-1.0609773750851614 -0.15834168060929543 -1.4053212843267633Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -103.21983360508119,-86.75770961907617 c 1.2263184908229828e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.564495366372072e-16 -1.0,0.44771525016920616 -1.0000000000000002 0.9999999999999994c -1.9026722419211607e-16,0.5522847498307935 0.4477152501692061,1.0 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.2408491174702496e-16 1.0,-0.44771525016920605 1.0000000000000002 -0.9999999999999992Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -93.30205255702018,-72.15025305981868 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -91.27760315766668,-72.8543776383151 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.29802685101541,-72.06061375091525 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.80181981792624,-73.92717239589011 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.90357488624657,-77.04849684271612 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.52666841410606,-79.07416611951798 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -91.46095945508246,-78.47880994474103 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -90.01498938438667,-75.71074366104506 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -100.84274324122623,-61.76442104669369 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -99.54749170391126,-60.056641714441234 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -101.23576827288015,-62.68394881924515 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -100.23428008770169,-65.64199577817438 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -97.29716817845122,-66.70331289799368 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.63613771895868,-65.06870674055531 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -94.25499892035103,-61.96906908229936 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -96.44075707179445,-59.73849030097799 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -113.0504580252001,-65.72664546649503 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -114.2743979505124,-63.967055215382 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -112.2973865591965,-66.38458419243474 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -109.17463985451391,-66.34619910839642 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.2576497975147,-63.88080471446089 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -107.98994900059007,-60.844893274142244 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -110.82010122764284,-59.524568023307886 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -113.61694412711782,-60.91406080556294 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -113.05455000245446,-78.56126684211208 l -2.987922881985716,-0.26891792671030057 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.575346380805598,1.5386978322177187 l 2.808704611919211,-1.0541244722440266 l 0.9270509831248422,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -115.10623801380045,-79.18155959290372 c -0.19405895681460333,-0.5170682413141325 -0.7705414534069471,-0.778919003372998 -1.2876096947210796 -0.5848600465583946c -0.5170682413141325,0.1940589568146033 -0.778919003372998,0.770541453406947 -0.5848600465583947 1.2876096947210796c 0.19405895681460328,0.5170682413141325 0.770541453406947,0.778919003372998 1.2876096947210793 0.5848600465583949c 0.5170682413141325,-0.19405895681460325 0.778919003372998,-0.770541453406947 0.5848600465583949 -1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -112.1961012088526,-78.04836756470617 c 0.2832664491105157,-0.4741081772169531 0.12855866102099328,-1.0880816218972567 -0.34554951619595964 -1.3713480710077723c -0.4741081772169531,-0.28326644911051574 -1.0880816218972567,-0.12855866102099334 -1.3713480710077721 0.3455495161959595c -0.28326644911051574,0.47410817721695303 -0.1285586610209934,1.0880816218972567 0.3455495161959595 1.3713480710077721c 0.47410817721695303,0.2832664491105158 1.0880816218972567,0.12855866102099345 1.371348071007772 -0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -111.2676257922805,-75.06659731918023 c 0.5472864412728883,-7.41349856310742e-2 0.9308514815813537,-0.5778965863127019 0.8567164959502794 -1.12518302758559c -7.413498563107417e-2,-0.5472864412728883 -0.5778965863127018,-0.9308514815813537 -1.1251830275855899 -0.8567164959502795c -0.5472864412728883,7.413498563107412e-2 -0.9308514815813537,0.5778965863127017 -0.8567164959502795 1.1251830275855896c 7.41349856310741e-2,0.5472864412728883 0.5778965863127017,0.9308514815813537 1.1251830275855896 0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -113.01997269020987,-72.48158266823532 c 0.39918858054789336,0.38166336221311603 1.0321941506011403,0.3674563657073667 1.413857512814256 -3.1732214840526685e-2c 0.38166336221311603,-0.39918858054789336 0.3674563657073667,-1.03219415060114 -3.1732214840526574e-2 -1.413857512814256c -0.3991885805478933,-0.3816633622131161 -1.03219415060114,-0.36745636570736673 -1.413857512814256 3.173221484052646e-2c -0.3816633622131161,0.3991885805478933 -0.3674563657073668,1.03219415060114 3.173221484052635e-2 1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -116.13358894713744,-72.23989236872211 c -4.9506423292738e-2,0.5500614137970617 0.3562735712947437,1.0361071796059347 0.9063349850918053 1.0856136028986725c 0.5500614137970617,4.9506423292738036e-2 1.0361071796059347,-0.35627357129474363 1.0856136028986725 -0.9063349850918052c 4.950642329273807e-2,-0.5500614137970617 -0.3562735712947436,-1.0361071796059345 -0.9063349850918051 -1.0856136028986725c -0.5500614137970617,-4.9506423292738105e-2 -1.0361071796059345,0.3562735712947435 -1.0856136028986725 0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -118.2638580153999,-74.5235241457577 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.3854702351734047 -0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -117.80664383702583,-77.61285669363536 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202055 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -57.45836143622755,-101.86060170536186 l -10.607884752734035,-7.707079405040905 l -10.607884752734032,7.707079405040908 l 4.051851426802626,12.470316431350506 l 13.112066651862815,-1.7763568394002505e-15 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -57.14846514090057,-98.41737185758902 l 2.575346380805598,-1.5386978322177178 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.9879228819857166,0.2689179267102997 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248417,2.8531695488854605 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.124015741547076,-99.12149643608544 c 0.46092208064694085,0.304252001583814 1.0812182335895915,0.17724580837774156 1.3854702351734054 -0.2836762722691991c 0.30425200158381405,-0.46092208064694085 0.17724580837774162,-1.0812182335895915 -0.283676272269199 -1.3854702351734054c -0.4609220806469408,-0.30425200158381405 -1.0812182335895915,-0.17724580837774168 -1.3854702351734054 0.283676272269199c -0.3042520015838141,0.4609220806469408 -0.17724580837774173,1.0812182335895915 0.2836762722691989 1.3854702351734052Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.14443943489581,-98.32773254868559 c 4.9506423292737724e-2,0.5500614137970617 0.5355521891016103,0.9558414083845439 1.085613602898672 0.9063349850918062c 0.5500614137970617,-4.950642329273769e-2 0.9558414083845439,-0.5355521891016102 0.9063349850918062 -1.0856136028986718c -4.9506423292737654e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845439 -1.0856136028986718 -0.9063349850918062c -0.5500614137970617,4.950642329273762e-2 -0.9558414083845439,0.5355521891016102 -0.9063349850918062 1.0856136028986716Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.648232401806645,-100.19429119366045 c -0.3991885805478935,0.38166336221311586 -0.4133955770536434,1.0146689322663627 -3.173221484052757e-2 1.413857512814256c 0.38166336221311586,0.3991885805478935 1.0146689322663627,0.41339557705364344 1.413857512814256 3.1732214840527684e-2c 0.3991885805478936,-0.3816633622131158 0.41339557705364344,-1.0146689322663627 3.1732214840527795e-2 -1.413857512814256c -0.3816633622131158,-0.3991885805478936 -1.0146689322663627,-0.4133955770536435 -1.4138575128142559 -3.1732214840527795e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.74998747012696,-103.31561564048646 c -0.5472864412728883,-7.413498563107447e-2 -1.0510480419545163,0.3094300546773906 -1.1251830275855907 0.8567164959502787c -7.41349856310745e-2,0.5472864412728883 0.30943005467739054,1.0510480419545163 0.8567164959502787 1.1251830275855905c 0.5472864412728883,7.413498563107454e-2 1.0510480419545163,-0.3094300546773905 1.1251830275855905 -0.8567164959502784c 7.413498563107457e-2,-0.5472864412728883 -0.30943005467739043,-1.051048041954516 -0.8567164959502784 -1.1251830275855905Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.37308099798644,-105.34128491728832 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -55.30737203896286,-104.74592874251137 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.28760969472108 -0.5848600465583937Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -53.86140196826705,-101.9778624588154 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202065Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -64.68915582510662,-88.03153984446402 l 2.259214398010832,1.9738161778191377 l 2.9517887657958886,-0.5356706843959094 l 1.4216059874189955,-2.641786595570213 l -1.17907509496177,-2.758583317654352 l -2.8918885820875584,-0.7981105367000263 l -2.427050983124842,1.7633557568774187 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -63.39390428779165,-86.32376051221156 c -0.14692809269956478,0.5323819873655854 0.16554402776359245,1.0830716135629639 0.6979260151291777 1.2299997062625287c 0.5323819873655854,0.1469280926995648 1.0830716135629639,-0.1655440277635924 1.2299997062625287 -0.6979260151291775c 0.14692809269956483,-0.5323819873655854 -0.16554402776359234,-1.0830716135629639 -0.6979260151291775 -1.2299997062625287c -0.5323819873655854,-0.1469280926995649 -1.0830716135629639,0.16554402776359228 -1.2299997062625287 0.6979260151291773Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -65.08218085676054,-88.95106761701547 c -0.5078411658260448,0.2170617312842268 -0.7435644721817543,0.8047116383793295 -0.5265027408975276 1.312552804205374c 0.21706173128422676,0.5078411658260448 0.8047116383793294,0.7435644721817543 1.312552804205374 0.5265027408975276c 0.5078411658260448,-0.21706173128422673 0.7435644721817544,-0.8047116383793294 0.5265027408975276 -1.312552804205374c -0.2170617312842267,-0.5078411658260448 -0.8047116383793294,-0.7435644721817544 -1.3125528042053738 -0.5265027408975277Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.08069267158209,-91.90911457594471 c -0.48633948301361307,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297369 0.40672686938373886c -0.26171043570655295,0.48633948301361307 -7.96126136298741e-2,1.092753758623184 0.40672686938373875 1.3544641943297369c 0.486339483013613,0.26171043570655295 1.092753758623184,7.961261362987415e-2 1.3544641943297366 -0.40672686938373864c 0.261710435706553,-0.486339483013613 7.961261362987421e-2,-1.092753758623184 -0.40672686938373864 -1.3544641943297366Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -61.14358076233161,-92.97043169576402 c -9.86142499744283e-2,-0.5434093066903097 -0.6190771767069565,-0.9039869437744216 -1.1624864833972661 -0.8053726937999932c -0.5434093066903097,9.861424997442828e-2 -0.9039869437744216,0.6190771767069564 -0.8053726937999932 1.1624864833972661c 9.861424997442823e-2,0.5434093066903097 0.6190771767069563,0.9039869437744216 1.162486483397266 0.8053726937999933c 0.5434093066903097,-9.86142499744282e-2 0.9039869437744216,-0.6190771767069563 0.8053726937999933 -1.1624864833972657Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.482550302839066,-91.33582553832565 c 0.3633695246596052,-0.41590988620651315 0.320777146142615,-1.0476406672837184 -9.513274006389805e-2 -1.4110101919433236c -0.41590988620651315,-0.3633695246596052 -1.0476406672837184,-0.32077714614261504 -1.4110101919433236 9.513274006389805e-2c -0.36336952465960526,0.4159098862065131 -0.32077714614261504,1.0476406672837184 9.513274006389794e-2 1.4110101919433233c 0.4159098862065131,0.36336952465960526 1.0476406672837184,0.3207771461426151 1.4110101919433233 -9.513274006389782e-2Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -58.10141150423142,-88.23618788006969 c 0.5517286358374672,2.4778161606335183e-2 1.0190797352854946,-0.4023996003533324 1.0438578968918297 -0.9541282361907995c 2.4778161606335218e-2,-0.5517286358374672 -0.40239960035333233,-1.0190797352854946 -0.9541282361907993 -1.0438578968918297c -0.5517286358374672,-2.477816160633525e-2 -1.0190797352854946,0.4023996003533323 -1.0438578968918297 0.9541282361907992c -2.4778161606335284e-2,0.5517286358374672 0.4023996003533322,1.0190797352854946 0.9541282361907991 1.0438578968918297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -60.28716965567486,-86.00560909874832 c 0.3246248310165783,0.4468077483472283 0.9499944983201921,0.5458565730990528 1.3968022466674204 0.22123174208247454c 0.4468077483472283,-0.3246248310165783 0.5458565730990528,-0.949994498320192 0.22123174208247465 -1.3968022466674204c -0.32462483101657824,-0.44680774834722836 -0.949994498320192,-0.5458565730990528 -1.3968022466674201 -0.22123174208247465c -0.44680774834722836,0.32462483101657824 -0.5458565730990529,0.949994498320192 -0.22123174208247476 1.39680224666742Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -76.8968706090805,-91.99376426426538 l -1.1790750949617705,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.259214398010833,-1.9738161778191372 l -0.13459449105154353,-2.9969791996239428 l -2.4270509831248415,-1.7633557568774192 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -78.12081053439277,-90.23417401315234 c -0.5517286358374672,2.477816160633497e-2 -0.9789063977971351,0.49212926105436205 -0.9541282361908001 1.043857896891829c 2.4778161606334934e-2,0.5517286358374672 0.492129261054362,0.9789063977971351 1.043857896891829 0.9541282361908001c 0.5517286358374672,-2.4778161606334902e-2 0.9789063977971351,-0.49212926105436194 0.9541282361908001 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374672 -0.4921292610543619,-0.9789063977971351 -1.0438578968918288 -0.9541282361908001Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.14379914307688,-92.6517029902051 c -0.3633695246596051,-0.4159098862065132 -0.9951003057368102,-0.45850226472350375 -1.4110101919433233 -9.513274006389871e-2c -0.4159098862065132,0.3633695246596051 -0.4585022647235038,0.9951003057368102 -9.513274006389882e-2 1.4110101919433233c 0.36336952465960504,0.41590988620651326 0.9951003057368102,0.4585022647235038 1.411010191943323 9.513274006389894e-2c 0.41590988620651326,-0.36336952465960504 0.45850226472350386,-0.9951003057368102 9.513274006389894e-2 -1.411010191943323Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -73.0210524383943,-92.61331790616677 c 9.861424997442846e-2,-0.5434093066903097 -0.26196338710968303,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442848e-2 -1.063872233422838,0.261963387109683 -1.1624864833972666 0.8053726937999925c -9.861424997442853e-2,0.5434093066903097 0.2619633871096829,1.063872233422838 0.8053726937999923 1.1624864833972663c 0.5434093066903097,9.861424997442855e-2 1.063872233422838,-0.26196338710968287 1.1624864833972663 -0.8053726937999923Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.1040623813951,-90.14792351223124 c 0.4863394830136131,-0.26171043570655267 0.6684373050902923,-0.8681247113161235 0.4067268693837397 -1.3544641943297364c -0.2617104357065526,-0.4863394830136131 -0.8681247113161235,-0.6684373050902923 -1.3544641943297364 -0.40672686938373975c -0.4863394830136132,0.2617104357065526 -0.6684373050902924,0.8681247113161233 -0.4067268693837398 1.3544641943297362c 0.26171043570655256,0.4863394830136132 0.8681247113161232,0.6684373050902924 1.3544641943297362 0.40672686938373986Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.83636158447047,-87.11201207191259 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975262 1.312552804205374Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -74.66651381152323,-85.79168682107823 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625276Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -77.46335671099821,-87.18117960333329 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674201 0.22123174208247376Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -76.90096258633486,-104.82838563988241 l -2.987922881985716,-0.26891792671030057 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.575346380805598,1.5386978322177187 l 2.808704611919211,-1.0541244722440266 l 0.9270509831248422,-2.85316954888546 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -78.95265059768084,-105.44867839067406 c -0.19405895681460333,-0.5170682413141325 -0.7705414534069471,-0.778919003372998 -1.2876096947210796 -0.5848600465583946c -0.5170682413141325,0.1940589568146033 -0.778919003372998,0.770541453406947 -0.5848600465583947 1.2876096947210796c 0.19405895681460328,0.5170682413141325 0.770541453406947,0.778919003372998 1.2876096947210793 0.5848600465583949c 0.5170682413141325,-0.19405895681460325 0.778919003372998,-0.770541453406947 0.5848600465583949 -1.2876096947210791Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.04251379273299,-104.3154863624765 c 0.2832664491105157,-0.4741081772169531 0.12855866102099328,-1.0880816218972567 -0.34554951619595964 -1.3713480710077723c -0.4741081772169531,-0.28326644911051574 -1.0880816218972567,-0.12855866102099334 -1.3713480710077721 0.3455495161959595c -0.28326644911051574,0.47410817721695303 -0.1285586610209934,1.0880816218972567 0.3455495161959595 1.3713480710077721c 0.47410817721695303,0.2832664491105158 1.0880816218972567,0.12855866102099345 1.371348071007772 -0.3455495161959594Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -75.11403837616089,-101.33371611695057 c 0.5472864412728883,-7.41349856310742e-2 0.9308514815813537,-0.5778965863127019 0.8567164959502794 -1.12518302758559c -7.413498563107417e-2,-0.5472864412728883 -0.5778965863127018,-0.9308514815813537 -1.1251830275855899 -0.8567164959502795c -0.5472864412728883,7.413498563107412e-2 -0.9308514815813537,0.5778965863127017 -0.8567164959502795 1.1251830275855896c 7.41349856310741e-2,0.5472864412728883 0.5778965863127017,0.9308514815813537 1.1251830275855896 0.8567164959502795Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -76.86638527409025,-98.74870146600566 c 0.39918858054789336,0.38166336221311603 1.0321941506011403,0.3674563657073667 1.413857512814256 -3.1732214840526685e-2c 0.38166336221311603,-0.39918858054789336 0.3674563657073667,-1.03219415060114 -3.1732214840526574e-2 -1.413857512814256c -0.3991885805478933,-0.3816633622131161 -1.03219415060114,-0.36745636570736673 -1.413857512814256 3.173221484052646e-2c -0.3816633622131161,0.3991885805478933 -0.3674563657073668,1.03219415060114 3.173221484052635e-2 1.413857512814256Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -79.98000153101783,-98.50701116649245 c -4.9506423292738e-2,0.5500614137970617 0.3562735712947437,1.0361071796059347 0.9063349850918053 1.0856136028986725c 0.5500614137970617,4.9506423292738036e-2 1.0361071796059347,-0.35627357129474363 1.0856136028986725 -0.9063349850918052c 4.950642329273807e-2,-0.5500614137970617 -0.3562735712947436,-1.0361071796059345 -0.9063349850918051 -1.0856136028986725c -0.5500614137970617,-4.9506423292738105e-2 -1.0361071796059345,0.3562735712947435 -1.0856136028986725 0.906334985091805Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -82.1102705992803,-100.79064294352804 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.3854702351734047 -0.28367627226920045Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -81.65305642090622,-103.8799754914057 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202055 -1.2600735106701009Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -64.69577678338538,-108.79839346294835 l -0.667562801868943,-2.92478373654547 l -2.702906603707257,-1.3016512173526746 l -2.702906603707256,1.3016512173526742 l -0.6675628018689435,2.9247837365454705 l 1.8704694055761992,2.3454944474040893 h 2.9999999999999996 Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.73984978339558,-110.9413457170258 c 0.4317936047046944,-0.3443439092416016 0.5026855898508984,-0.9735276796220691 0.15834168060929676 -1.4053212843267633c -0.3443439092416016,-0.4317936047046944 -0.9735276796220691,-0.5026855898508984 -1.4053212843267633 -0.15834168060929688c -0.43179360470469447,0.3443439092416015 -0.5026855898508984,0.9735276796220691 -0.15834168060929688 1.4053212843267633c 0.3443439092416015,0.43179360470469447 0.973527679622069,0.5026855898508984 1.4053212843267633 0.158341680609297Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -64.9182977173417,-107.82346555076653 c 0.5384378180823963,0.12289491834217772 1.0745539277959606,-0.21396916014311274 1.1974488461381383 -0.752406978225509c 0.12289491834217775,-0.5384378180823963 -0.21396916014311268,-1.0745539277959606 -0.7524069782255087 -1.1974488461381383c -0.5384378180823963,-0.12289491834217779 -1.0745539277959606,0.21396916014311262 -1.1974488461381383 0.7524069782255087c -0.12289491834217782,0.5384378180823963 0.21396916014311257,1.0745539277959606 0.7524069782255085 1.1974488461381383Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -67.467215056864,-106.01901527642671 c 0.2396273723141898,0.49759136581482083 0.8372612412051563,0.706712501099051 1.334852607019977 0.46708512878486136c 0.49759136581482083,-0.23962737231418976 0.7067125010990511,-0.8372612412051563 0.4670851287848614 -1.3348526070199769c -0.23962737231418973,-0.4975913658148209 -0.8372612412051563,-0.7067125010990511 -1.3348526070199769 -0.4670851287848614c -0.4975913658148209,0.2396273723141897 -0.7067125010990511,0.8372612412051562 -0.46708512878486147 1.3348526070199767Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -70.467215056864,-106.88678275466184 c -0.23962737231418996,0.4975913658148208 -3.0506237029960026e-2,1.0952252347057874 0.4670851287848606 1.3348526070199773c 0.4975913658148208,0.23962737231418998 1.0952252347057874,3.050623702996008e-2 1.3348526070199773 -0.46708512878486047c 0.23962737231419,-0.4975913658148207 3.0506237029960137e-2,-1.0952252347057874 -0.46708512878486036 -1.3348526070199773c -0.4975913658148207,-0.23962737231419004 -1.0952252347057874,-3.0506237029960193e-2 -1.3348526070199773 0.46708512878486025Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -71.6592365284941,-109.77332137513018 c -0.5384378180823963,0.12289491834217754 -0.875301896567687,0.6590110280557416 -0.7524069782255095 1.1974488461381378c 0.12289491834217751,0.5384378180823963 0.6590110280557415,0.8753018965676871 1.1974488461381376 0.7524069782255095c 0.5384378180823963,-0.12289491834217747 0.8753018965676871,-0.6590110280557415 0.7524069782255096 -1.1974488461381376c -0.12289491834217744,-0.5384378180823963 -0.6590110280557415,-0.8753018965676871 -1.1974488461381374 -0.7524069782255096Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -70.14566299081011,-112.50500868196187 c -0.43179360470469424,-0.3443439092416017 -1.0609773750851617,-0.2734519240953981 -1.4053212843267633 0.158341680609296c -0.3443439092416017,0.43179360470469424 -0.27345192409539815,1.0609773750851617 0.158341680609296 1.4053212843267633c 0.4317936047046942,0.34434390924160174 1.0609773750851617,0.2734519240953982 1.4053212843267633 -0.15834168060929588c 0.34434390924160174,-0.4317936047046942 0.2734519240953982,-1.0609773750851614 -0.15834168060929577 -1.405321284326763Z" /></g></g><g transform="matrix(1.6790365369707752,0.0,0.0,1.6790365369707752,200.0,191.4518530337088)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -67.06624618896159,-113.0248284168465 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0 -0.9999999999999994Z" /></g></g></g></svg>
− diagrams/fblEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="79.0306071821609" font-size="1" viewBox="0 0 300 79"><g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.881784197001252e-16,-1.5 l 2.385702750691742,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.881784197001252e-16,-1.5 l -2.38570275069174,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.385702750691741,-0.5 l 2.1761764278035116,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.385702750691741,-0.5 l -0.6973767756037734,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 4.561879178495253,0.5 l 1.9709166110566567,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 4.561879178495253,0.5 l 0.20919146855312398,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.832795789551909,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,6.532795789551909,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 5.071070647048376,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,4.771070647048377,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 4.861879178495252,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,4.561879178495253,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6883259750879676,0.5 l 1.1193750372769244,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6883259750879676,0.5 l -0.7861025719737418,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.107701012364892,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,2.807701012364892,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2022234031142258,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,0.9022234031142258,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9883259750879676,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,1.6883259750879676,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.685702750691741,-0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,2.385702750691741,-0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.385702750691741,-0.5 l 0.697376775603769,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.385702750691741,-0.5 l -2.176176427803512,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.688325975087972,0.5 l 0.7861025719737453,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.688325975087972,0.5 l -1.1193750372769218,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6022234031142266,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-0.9022234031142267,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.507701012364894,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-2.8077010123648938,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.388325975087972,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-1.688325975087972,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.5618791784952535,0.5 l -0.20919146855312398,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.5618791784952535,0.5 l -1.9709166110566567,1.0 " /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.471070647048378,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.7710706470483775,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.23279578955191,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-6.53279578955191,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.261879178495254,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.5618791784952535,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -2.085702750691741,-0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-2.385702750691741,-0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2999999999999991,-1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999998Z" /></g></g><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-8.881784197001252e-16,-1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">4</text></g></g></g></svg>
− diagrams/fdGridEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="200.0" font-size="1" viewBox="0 0 200 200"><g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.5,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.127099873547919,2.253384192486175 l -0.12709987354791918,9.234346343666686e-2 l -0.12709987354791913,-9.234346343666688e-2 l 4.8547831729491425e-2,-0.14941486247941016 h 0.15710408363685543 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.150019244748239,2.221838384337487 l 1.4164950402573082e-2,4.359523465890314e-2 l -3.7084321602892815e-2,2.6943336766729567e-2 l -3.708432160289283e-2,-2.6943336766729557e-2 l 1.4164950402573064e-2,-4.359523465890314e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.137657804213941,2.212857272081911 c 4.9601313352733494e-3,-6.827035093032786e-3 1.451551769684134e-2,-8.340459613994445e-3 2.1342552789874125e-2 -3.3803282787210967e-3c 6.827035093032786e-3,4.9601313352733494e-3 8.340459613994445e-3,1.451551769684134e-2 3.3803282787210984e-3 2.1342552789874125e-2c -4.960131335273349e-3,6.827035093032787e-3 -1.4515517696841338e-2,8.340459613994447e-3 -2.134255278987412e-2 3.3803282787210984e-3c -6.827035093032787e-3,-4.960131335273349e-3 -8.340459613994447e-3,-1.4515517696841337e-2 -3.3803282787211e-3 -2.1342552789874118e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0918190618133017,2.230819496593064 c -4.9601313352733555e-3,-6.827035093032782e-3 -3.4467068143117074e-3,-1.6382421454600775e-2 3.3803282787210724e-3 -2.1342552789874132e-2c 6.827035093032782e-3,-4.9601313352733555e-3 1.6382421454600775e-2,-3.4467068143117082e-3 2.134255278987413e-2 3.3803282787210724e-3c 4.960131335273356e-3,6.8270350930327815e-3 3.446706814311709e-3,1.6382421454600775e-2 -3.3803282787210707e-3 2.134255278987413e-2c -6.8270350930327815e-3,4.960131335273356e-3 -1.6382421454600775e-2,3.446706814311709e-3 -2.1342552789874125e-2 -3.380328278721069e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.094737202079217,2.2799653638826913 c -8.025661089135685e-3,2.6076953631502266e-3 -1.664569965734185e-2,-1.7844336629743267e-3 -1.9253395020492076e-2 -9.81009475211001e-3c -2.607695363150227e-3,-8.025661089135685e-3 1.7844336629743258e-3,-1.664569965734185e-2 9.810094752110008e-3 -1.9253395020492076e-2c 8.025661089135685e-3,-2.6076953631502275e-3 1.664569965734185e-2,1.784433662974325e-3 1.9253395020492076e-2 9.810094752110006e-3c 2.607695363150228e-3,8.025661089135685e-3 -1.784433662974324e-3,1.664569965734185e-2 -9.810094752110005e-3 1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1423794543481325,2.29237695576312 c 2.874183962866366e-18,8.438679459765123e-3 -6.840901340448036e-3,1.5279580800213168e-2 -1.5279580800213157e-2 1.5279580800213171e-2c -8.438679459765123e-3,3.3909040523379595e-18 -1.5279580800213168e-2,-6.840901340448035e-3 -1.5279580800213171e-2 -1.5279580800213155e-2c -3.9076241418095534e-18,-8.438679459765123e-3 6.840901340448034e-3,-1.5279580800213168e-2 1.5279580800213154e-2 -1.5279580800213171e-2c 8.438679459765123e-3,-4.424344231281147e-18 1.5279580800213168e-2,6.840901340448033e-3 1.5279580800213171e-2 1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.168905845285003,2.2509018741100895 c 8.025661089135688e-3,2.6076953631502214e-3 1.241779011526025e-2,1.1227733931356385e-2 9.810094752110029e-3 1.925339502049207e-2c -2.607695363150221e-3,8.025661089135688e-3 -1.1227733931356385e-2,1.241779011526025e-2 -1.925339502049207e-2 9.810094752110029e-3c -8.025661089135688e-3,-2.6076953631502206e-3 -1.241779011526025e-2,-1.1227733931356383e-2 -9.810094752110029e-3 -1.9253395020492066e-2c 2.60769536315022e-3,-8.025661089135688e-3 1.1227733931356381e-2,-1.241779011526025e-2 1.9253395020492066e-2 -9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.055632670618108,2.072423521858077 l 4.5838742400639496e-2,-3.469446951953614e-18 l 1.4164950402573078e-2,4.359523465890314e-2 l -3.7084321602892815e-2,2.6943336766729577e-2 l -3.708432160289283e-2,-2.694333676672956e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.04327123008381,2.0814046341136536 c -4.9601313352733555e-3,-6.827035093032782e-3 -3.4467068143117074e-3,-1.6382421454600775e-2 3.3803282787210724e-3 -2.1342552789874132e-2c 6.827035093032782e-3,-4.9601313352733555e-3 1.6382421454600775e-2,-3.4467068143117082e-3 2.134255278987413e-2 3.3803282787210724e-3c 4.960131335273356e-3,6.8270350930327815e-3 3.446706814311709e-3,1.6382421454600775e-2 -3.3803282787210707e-3 2.134255278987413e-2c -6.8270350930327815e-3,4.960131335273356e-3 -1.6382421454600775e-2,3.446706814311709e-3 -2.1342552789874125e-2 -3.380328278721069e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0461893703497256,2.130550501403281 c -8.025661089135685e-3,2.6076953631502266e-3 -1.664569965734185e-2,-1.7844336629743267e-3 -1.9253395020492076e-2 -9.81009475211001e-3c -2.607695363150227e-3,-8.025661089135685e-3 1.7844336629743258e-3,-1.664569965734185e-2 9.810094752110008e-3 -1.9253395020492076e-2c 8.025661089135685e-3,-2.6076953631502275e-3 1.664569965734185e-2,1.784433662974325e-3 1.9253395020492076e-2 9.810094752110006e-3c 2.607695363150228e-3,8.025661089135685e-3 -1.784433662974324e-3,1.664569965734185e-2 -9.810094752110005e-3 1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.093831622618641,2.14296209328371 c 2.874183962866366e-18,8.438679459765123e-3 -6.840901340448036e-3,1.5279580800213168e-2 -1.5279580800213157e-2 1.5279580800213171e-2c -8.438679459765123e-3,3.3909040523379595e-18 -1.5279580800213168e-2,-6.840901340448035e-3 -1.5279580800213171e-2 -1.5279580800213155e-2c -3.9076241418095534e-18,-8.438679459765123e-3 6.840901340448034e-3,-1.5279580800213168e-2 1.5279580800213154e-2 -1.5279580800213171e-2c 8.438679459765123e-3,-4.424344231281147e-18 1.5279580800213168e-2,6.840901340448033e-3 1.5279580800213171e-2 1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1203580135555113,2.101487011630679 c 8.025661089135688e-3,2.6076953631502214e-3 1.241779011526025e-2,1.1227733931356385e-2 9.810094752110029e-3 1.925339502049207e-2c -2.607695363150221e-3,8.025661089135688e-3 -1.1227733931356385e-2,1.241779011526025e-2 -1.925339502049207e-2 9.810094752110029e-3c -8.025661089135688e-3,-2.6076953631502206e-3 -1.241779011526025e-2,-1.1227733931356383e-2 -9.810094752110029e-3 -1.9253395020492066e-2c 2.60769536315022e-3,-8.025661089135688e-3 1.1227733931356381e-2,-1.241779011526025e-2 1.9253395020492066e-2 -9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0891099724844495,2.0634424096025 c 4.960131335273353e-3,-6.827035093032787e-3 1.4515517696841347e-2,-8.340459613994444e-3 2.1342552789874132e-2 -3.3803282787210915e-3c 6.827035093032787e-3,4.960131335273353e-3 8.340459613994444e-3,1.4515517696841347e-2 3.3803282787210932e-3 2.1342552789874132e-2c -4.960131335273352e-3,6.827035093032788e-3 -1.4515517696841347e-2,8.340459613994444e-3 -2.1342552789874132e-2 3.3803282787210932e-3c -6.827035093032788e-3,-4.960131335273352e-3 -8.340459613994445e-3,-1.4515517696841345e-2 -3.380328278721095e-3 -2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8843636365786793,2.11601875651698 l 1.4164950402573082e-2,-4.3595234658903144e-2 h 4.5838742400639496e-2 l 1.4164950402573089e-2,4.359523465890314e-2 l -3.708432160289282e-2,2.6943336766729577e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8890852867128705,2.130550501403281 c -8.025661089135685e-3,2.6076953631502266e-3 -1.664569965734185e-2,-1.7844336629743267e-3 -1.9253395020492076e-2 -9.81009475211001e-3c -2.607695363150227e-3,-8.025661089135685e-3 1.7844336629743258e-3,-1.664569965734185e-2 9.810094752110008e-3 -1.9253395020492076e-2c 8.025661089135685e-3,-2.6076953631502275e-3 1.664569965734185e-2,1.784433662974325e-3 1.9253395020492076e-2 9.810094752110006e-3c 2.607695363150228e-3,8.025661089135685e-3 -1.784433662974324e-3,1.664569965734185e-2 -9.810094752110005e-3 1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367275389817853,2.14296209328371 c 2.874183962866366e-18,8.438679459765123e-3 -6.840901340448036e-3,1.5279580800213168e-2 -1.5279580800213157e-2 1.5279580800213171e-2c -8.438679459765123e-3,3.3909040523379595e-18 -1.5279580800213168e-2,-6.840901340448035e-3 -1.5279580800213171e-2 -1.5279580800213155e-2c -3.9076241418095534e-18,-8.438679459765123e-3 6.840901340448034e-3,-1.5279580800213168e-2 1.5279580800213154e-2 -1.5279580800213171e-2c 8.438679459765123e-3,-4.424344231281147e-18 1.5279580800213168e-2,6.840901340448033e-3 1.5279580800213171e-2 1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9632539299186562,2.101487011630679 c 8.025661089135688e-3,2.6076953631502214e-3 1.241779011526025e-2,1.1227733931356385e-2 9.810094752110029e-3 1.925339502049207e-2c -2.607695363150221e-3,8.025661089135688e-3 -1.1227733931356385e-2,1.241779011526025e-2 -1.925339502049207e-2 9.810094752110029e-3c -8.025661089135688e-3,-2.6076953631502206e-3 -1.241779011526025e-2,-1.1227733931356383e-2 -9.810094752110029e-3 -1.9253395020492066e-2c 2.60769536315022e-3,-8.025661089135688e-3 1.1227733931356381e-2,-1.241779011526025e-2 1.9253395020492066e-2 -9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9320058888475944,2.0634424096025 c 4.960131335273353e-3,-6.827035093032787e-3 1.4515517696841347e-2,-8.340459613994444e-3 2.1342552789874132e-2 -3.3803282787210915e-3c 6.827035093032787e-3,4.960131335273353e-3 8.340459613994444e-3,1.4515517696841347e-2 3.3803282787210932e-3 2.1342552789874132e-2c -4.960131335273352e-3,6.827035093032788e-3 -1.4515517696841347e-2,8.340459613994444e-3 -2.1342552789874132e-2 3.3803282787210932e-3c -6.827035093032788e-3,-4.960131335273352e-3 -8.340459613994445e-3,-1.4515517696841345e-2 -3.380328278721095e-3 -2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.886167146446955,2.0814046341136536 c -4.9601313352733555e-3,-6.827035093032786e-3 -3.4467068143117048e-3,-1.6382421454600782e-2 3.3803282787210794e-3 -2.134255278987414e-2c 6.827035093032786e-3,-4.9601313352733555e-3 1.6382421454600782e-2,-3.4467068143117048e-3 2.1342552789874136e-2 3.3803282787210794e-3c 4.960131335273356e-3,6.827035093032785e-3 3.4467068143117056e-3,1.6382421454600782e-2 -3.3803282787210776e-3 2.1342552789874136e-2c -6.827035093032785e-3,4.960131335273356e-3 -1.6382421454600782e-2,3.4467068143117065e-3 -2.1342552789874132e-2 -3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8729001264520808,2.29237695576312 l -3.708432160289283e-2,-2.694333676672958e-2 l 1.4164950402573085e-2,-4.3595234658903144e-2 l 4.58387424006395e-2,-5.204170427930421e-18 l 1.4164950402573083e-2,4.3595234658903144e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.888179707252294,2.29237695576312 c 2.874183962866366e-18,8.438679459765123e-3 -6.840901340448036e-3,1.5279580800213168e-2 -1.5279580800213157e-2 1.5279580800213171e-2c -8.438679459765123e-3,3.3909040523379595e-18 -1.5279580800213168e-2,-6.840901340448035e-3 -1.5279580800213171e-2 -1.5279580800213155e-2c -3.9076241418095534e-18,-8.438679459765123e-3 6.840901340448034e-3,-1.5279580800213168e-2 1.5279580800213154e-2 -1.5279580800213171e-2c 8.438679459765123e-3,-4.424344231281147e-18 1.5279580800213168e-2,6.840901340448033e-3 1.5279580800213171e-2 1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9147060981891648,2.2509018741100895 c 8.025661089135688e-3,2.6076953631502214e-3 1.241779011526025e-2,1.1227733931356385e-2 9.810094752110029e-3 1.925339502049207e-2c -2.607695363150221e-3,8.025661089135688e-3 -1.1227733931356385e-2,1.241779011526025e-2 -1.925339502049207e-2 9.810094752110029e-3c -8.025661089135688e-3,-2.6076953631502206e-3 -1.241779011526025e-2,-1.1227733931356383e-2 -9.810094752110029e-3 -1.9253395020492066e-2c 2.60769536315022e-3,-8.025661089135688e-3 1.1227733931356381e-2,-1.241779011526025e-2 1.9253395020492066e-2 -9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.883458057118103,2.2128572720819104 c 4.960131335273353e-3,-6.827035093032787e-3 1.4515517696841347e-2,-8.340459613994444e-3 2.1342552789874132e-2 -3.3803282787210915e-3c 6.827035093032787e-3,4.960131335273353e-3 8.340459613994444e-3,1.4515517696841347e-2 3.3803282787210932e-3 2.1342552789874132e-2c -4.960131335273352e-3,6.827035093032788e-3 -1.4515517696841347e-2,8.340459613994444e-3 -2.1342552789874132e-2 3.3803282787210932e-3c -6.827035093032788e-3,-4.960131335273352e-3 -8.340459613994445e-3,-1.4515517696841345e-2 -3.380328278721095e-3 -2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8376193147174635,2.230819496593064 c -4.9601313352733555e-3,-6.827035093032786e-3 -3.4467068143117048e-3,-1.6382421454600782e-2 3.3803282787210794e-3 -2.134255278987414e-2c 6.827035093032786e-3,-4.9601313352733555e-3 1.6382421454600782e-2,-3.4467068143117048e-3 2.1342552789874136e-2 3.3803282787210794e-3c 4.960131335273356e-3,6.827035093032785e-3 3.4467068143117056e-3,1.6382421454600782e-2 -3.3803282787210776e-3 2.1342552789874136e-2c -6.827035093032785e-3,4.960131335273356e-3 -1.6382421454600782e-2,3.4467068143117065e-3 -2.1342552789874132e-2 -3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.840537454983379,2.2799653638826913 c -8.025661089135688e-3,2.607695363150225e-3 -1.6645699657341854e-2,-1.7844336629743328e-3 -1.925339502049208e-2 -9.81009475211002e-3c -2.6076953631502253e-3,-8.025661089135688e-3 1.7844336629743328e-3,-1.6645699657341854e-2 9.810094752110018e-3 -1.925339502049208e-2c 8.025661089135688e-3,-2.6076953631502258e-3 1.6645699657341854e-2,1.7844336629743319e-3 1.925339502049208e-2 9.810094752110017e-3c 2.607695363150226e-3,8.025661089135688e-3 -1.784433662974331e-3,1.6645699657341854e-2 -9.810094752110015e-3 1.925339502049208e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.037084321602893,2.3577770824330573 l -3.7084321602892836e-2,2.6943336766729567e-2 l -3.708432160289282e-2,-2.6943336766729577e-2 l 1.4164950402573078e-2,-4.359523465890315e-2 h 4.58387424006395e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.041805971737084,2.3432453375467563 c 8.025661089135688e-3,2.6076953631502214e-3 1.241779011526025e-2,1.1227733931356385e-2 9.810094752110029e-3 1.925339502049207e-2c -2.607695363150221e-3,8.025661089135688e-3 -1.1227733931356385e-2,1.241779011526025e-2 -1.925339502049207e-2 9.810094752110029e-3c -8.025661089135688e-3,-2.6076953631502206e-3 -1.241779011526025e-2,-1.1227733931356383e-2 -9.810094752110029e-3 -1.9253395020492066e-2c 2.60769536315022e-3,-8.025661089135688e-3 1.1227733931356381e-2,-1.241779011526025e-2 1.9253395020492066e-2 -9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.010557930666022,2.3052007355185773 c 4.960131335273353e-3,-6.827035093032787e-3 1.4515517696841347e-2,-8.340459613994444e-3 2.1342552789874132e-2 -3.3803282787210915e-3c 6.827035093032787e-3,4.960131335273353e-3 8.340459613994444e-3,1.4515517696841347e-2 3.3803282787210932e-3 2.1342552789874132e-2c -4.960131335273352e-3,6.827035093032788e-3 -1.4515517696841347e-2,8.340459613994444e-3 -2.1342552789874132e-2 3.3803282787210932e-3c -6.827035093032788e-3,-4.960131335273352e-3 -8.340459613994445e-3,-1.4515517696841345e-2 -3.380328278721095e-3 -2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9647191882653827,2.3231629600297308 c -4.9601313352733555e-3,-6.827035093032786e-3 -3.4467068143117048e-3,-1.6382421454600782e-2 3.3803282787210794e-3 -2.134255278987414e-2c 6.827035093032786e-3,-4.9601313352733555e-3 1.6382421454600782e-2,-3.4467068143117048e-3 2.1342552789874136e-2 3.3803282787210794e-3c 4.960131335273356e-3,6.827035093032785e-3 3.4467068143117056e-3,1.6382421454600782e-2 -3.3803282787210776e-3 2.1342552789874136e-2c -6.827035093032785e-3,4.960131335273356e-3 -1.6382421454600782e-2,3.4467068143117065e-3 -2.1342552789874132e-2 -3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9676373285312982,2.372308827319358 c -8.025661089135688e-3,2.607695363150225e-3 -1.6645699657341854e-2,-1.7844336629743328e-3 -1.925339502049208e-2 -9.81009475211002e-3c -2.6076953631502253e-3,-8.025661089135688e-3 1.7844336629743328e-3,-1.6645699657341854e-2 9.810094752110018e-3 -1.925339502049208e-2c 8.025661089135688e-3,-2.6076953631502258e-3 1.6645699657341854e-2,1.7844336629743319e-3 1.925339502049208e-2 9.810094752110017e-3c 2.607695363150226e-3,8.025661089135688e-3 -1.784433662974331e-3,1.6645699657341854e-2 -9.810094752110015e-3 1.925339502049208e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0152795808002133,2.384720419199787 c 0.0,8.438679459765126e-3 -6.840901340448043e-3,1.5279580800213171e-2 -1.5279580800213168e-2 1.5279580800213171e-2c -8.438679459765126e-3,5.167200894715939e-19 -1.5279580800213171e-2,-6.840901340448042e-3 -1.5279580800213171e-2 -1.5279580800213166e-2c -1.0334401789431878e-18,-8.438679459765126e-3 6.840901340448041e-3,-1.5279580800213171e-2 1.5279580800213164e-2 -1.5279580800213171e-2c 8.438679459765126e-3,-1.5501602684147815e-18 1.5279580800213171e-2,6.84090134044804e-3 1.5279580800213171e-2 1.5279580800213162e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.127099873547919,1.7466158075138247 l -0.12709987354791918,-9.234346343666686e-2 l -0.12709987354791913,9.234346343666688e-2 l 4.8547831729491425e-2,0.14941486247941016 h 0.15710408363685543 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.150019244748239,1.7781616156625129 l 1.4164950402573082e-2,-4.359523465890314e-2 l -3.7084321602892815e-2,-2.6943336766729567e-2 l -3.708432160289283e-2,2.6943336766729557e-2 l 1.4164950402573064e-2,4.359523465890314e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.137657804213941,1.7871427279180894 c 4.9601313352733494e-3,6.827035093032786e-3 1.451551769684134e-2,8.340459613994445e-3 2.1342552789874125e-2 3.3803282787210967e-3c 6.827035093032786e-3,-4.9601313352733494e-3 8.340459613994445e-3,-1.451551769684134e-2 3.3803282787210984e-3 -2.1342552789874125e-2c -4.960131335273349e-3,-6.827035093032787e-3 -1.4515517696841338e-2,-8.340459613994447e-3 -2.134255278987412e-2 -3.3803282787210984e-3c -6.827035093032787e-3,4.960131335273349e-3 -8.340459613994447e-3,1.4515517696841337e-2 -3.3803282787211e-3 2.1342552789874118e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0918190618133017,1.7691805034069361 c -4.9601313352733555e-3,6.827035093032782e-3 -3.4467068143117074e-3,1.6382421454600775e-2 3.3803282787210724e-3 2.1342552789874132e-2c 6.827035093032782e-3,4.9601313352733555e-3 1.6382421454600775e-2,3.4467068143117082e-3 2.134255278987413e-2 -3.3803282787210724e-3c 4.960131335273356e-3,-6.8270350930327815e-3 3.446706814311709e-3,-1.6382421454600775e-2 -3.3803282787210707e-3 -2.134255278987413e-2c -6.8270350930327815e-3,-4.960131335273356e-3 -1.6382421454600775e-2,-3.446706814311709e-3 -2.1342552789874125e-2 3.380328278721069e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.094737202079217,1.7200346361173087 c -8.025661089135685e-3,-2.6076953631502266e-3 -1.664569965734185e-2,1.7844336629743267e-3 -1.9253395020492076e-2 9.81009475211001e-3c -2.607695363150227e-3,8.025661089135685e-3 1.7844336629743258e-3,1.664569965734185e-2 9.810094752110008e-3 1.9253395020492076e-2c 8.025661089135685e-3,2.6076953631502275e-3 1.664569965734185e-2,-1.784433662974325e-3 1.9253395020492076e-2 -9.810094752110006e-3c 2.607695363150228e-3,-8.025661089135685e-3 -1.784433662974324e-3,-1.664569965734185e-2 -9.810094752110005e-3 -1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1423794543481325,1.70762304423688 c 2.874183962866366e-18,-8.438679459765123e-3 -6.840901340448036e-3,-1.5279580800213168e-2 -1.5279580800213157e-2 -1.5279580800213171e-2c -8.438679459765123e-3,-3.3909040523379595e-18 -1.5279580800213168e-2,6.840901340448035e-3 -1.5279580800213171e-2 1.5279580800213155e-2c -3.9076241418095534e-18,8.438679459765123e-3 6.840901340448034e-3,1.5279580800213168e-2 1.5279580800213154e-2 1.5279580800213171e-2c 8.438679459765123e-3,4.424344231281147e-18 1.5279580800213168e-2,-6.840901340448033e-3 1.5279580800213171e-2 -1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.168905845285003,1.7490981258899108 c 8.025661089135688e-3,-2.6076953631502214e-3 1.241779011526025e-2,-1.1227733931356385e-2 9.810094752110029e-3 -1.925339502049207e-2c -2.607695363150221e-3,-8.025661089135688e-3 -1.1227733931356385e-2,-1.241779011526025e-2 -1.925339502049207e-2 -9.810094752110029e-3c -8.025661089135688e-3,2.6076953631502206e-3 -1.241779011526025e-2,1.1227733931356383e-2 -9.810094752110029e-3 1.9253395020492066e-2c 2.60769536315022e-3,8.025661089135688e-3 1.1227733931356381e-2,1.241779011526025e-2 1.9253395020492066e-2 9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.055632670618108,1.9275764781419227 l 4.5838742400639496e-2,3.469446951953614e-18 l 1.4164950402573078e-2,-4.359523465890314e-2 l -3.7084321602892815e-2,-2.6943336766729577e-2 l -3.708432160289283e-2,2.694333676672956e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.04327123008381,1.9185953658863462 c -4.9601313352733555e-3,6.827035093032782e-3 -3.4467068143117074e-3,1.6382421454600775e-2 3.3803282787210724e-3 2.1342552789874132e-2c 6.827035093032782e-3,4.9601313352733555e-3 1.6382421454600775e-2,3.4467068143117082e-3 2.134255278987413e-2 -3.3803282787210724e-3c 4.960131335273356e-3,-6.8270350930327815e-3 3.446706814311709e-3,-1.6382421454600775e-2 -3.3803282787210707e-3 -2.134255278987413e-2c -6.8270350930327815e-3,-4.960131335273356e-3 -1.6382421454600775e-2,-3.446706814311709e-3 -2.1342552789874125e-2 3.380328278721069e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0461893703497256,1.8694494985967185 c -8.025661089135685e-3,-2.6076953631502266e-3 -1.664569965734185e-2,1.7844336629743267e-3 -1.9253395020492076e-2 9.81009475211001e-3c -2.607695363150227e-3,8.025661089135685e-3 1.7844336629743258e-3,1.664569965734185e-2 9.810094752110008e-3 1.9253395020492076e-2c 8.025661089135685e-3,2.6076953631502275e-3 1.664569965734185e-2,-1.784433662974325e-3 1.9253395020492076e-2 -9.810094752110006e-3c 2.607695363150228e-3,-8.025661089135685e-3 -1.784433662974324e-3,-1.664569965734185e-2 -9.810094752110005e-3 -1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.093831622618641,1.85703790671629 c 2.874183962866366e-18,-8.438679459765123e-3 -6.840901340448036e-3,-1.5279580800213168e-2 -1.5279580800213157e-2 -1.5279580800213171e-2c -8.438679459765123e-3,-3.3909040523379595e-18 -1.5279580800213168e-2,6.840901340448035e-3 -1.5279580800213171e-2 1.5279580800213155e-2c -3.9076241418095534e-18,8.438679459765123e-3 6.840901340448034e-3,1.5279580800213168e-2 1.5279580800213154e-2 1.5279580800213171e-2c 8.438679459765123e-3,4.424344231281147e-18 1.5279580800213168e-2,-6.840901340448033e-3 1.5279580800213171e-2 -1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1203580135555113,1.8985129883693208 c 8.025661089135688e-3,-2.6076953631502214e-3 1.241779011526025e-2,-1.1227733931356385e-2 9.810094752110029e-3 -1.925339502049207e-2c -2.607695363150221e-3,-8.025661089135688e-3 -1.1227733931356385e-2,-1.241779011526025e-2 -1.925339502049207e-2 -9.810094752110029e-3c -8.025661089135688e-3,2.6076953631502206e-3 -1.241779011526025e-2,1.1227733931356383e-2 -9.810094752110029e-3 1.9253395020492066e-2c 2.60769536315022e-3,8.025661089135688e-3 1.1227733931356381e-2,1.241779011526025e-2 1.9253395020492066e-2 9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0891099724844495,1.9365575903974994 c 4.960131335273353e-3,6.827035093032787e-3 1.4515517696841347e-2,8.340459613994444e-3 2.1342552789874132e-2 3.3803282787210915e-3c 6.827035093032787e-3,-4.960131335273353e-3 8.340459613994444e-3,-1.4515517696841347e-2 3.3803282787210932e-3 -2.1342552789874132e-2c -4.960131335273352e-3,-6.827035093032788e-3 -1.4515517696841347e-2,-8.340459613994444e-3 -2.1342552789874132e-2 -3.3803282787210932e-3c -6.827035093032788e-3,4.960131335273352e-3 -8.340459613994445e-3,1.4515517696841345e-2 -3.380328278721095e-3 2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8843636365786793,1.8839812434830197 l 1.4164950402573082e-2,4.3595234658903144e-2 h 4.5838742400639496e-2 l 1.4164950402573089e-2,-4.359523465890314e-2 l -3.708432160289282e-2,-2.6943336766729577e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8890852867128705,1.8694494985967185 c -8.025661089135685e-3,-2.6076953631502266e-3 -1.664569965734185e-2,1.7844336629743267e-3 -1.9253395020492076e-2 9.81009475211001e-3c -2.607695363150227e-3,8.025661089135685e-3 1.7844336629743258e-3,1.664569965734185e-2 9.810094752110008e-3 1.9253395020492076e-2c 8.025661089135685e-3,2.6076953631502275e-3 1.664569965734185e-2,-1.784433662974325e-3 1.9253395020492076e-2 -9.810094752110006e-3c 2.607695363150228e-3,-8.025661089135685e-3 -1.784433662974324e-3,-1.664569965734185e-2 -9.810094752110005e-3 -1.9253395020492076e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367275389817853,1.85703790671629 c 2.874183962866366e-18,-8.438679459765123e-3 -6.840901340448036e-3,-1.5279580800213168e-2 -1.5279580800213157e-2 -1.5279580800213171e-2c -8.438679459765123e-3,-3.3909040523379595e-18 -1.5279580800213168e-2,6.840901340448035e-3 -1.5279580800213171e-2 1.5279580800213155e-2c -3.9076241418095534e-18,8.438679459765123e-3 6.840901340448034e-3,1.5279580800213168e-2 1.5279580800213154e-2 1.5279580800213171e-2c 8.438679459765123e-3,4.424344231281147e-18 1.5279580800213168e-2,-6.840901340448033e-3 1.5279580800213171e-2 -1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9632539299186562,1.8985129883693208 c 8.025661089135688e-3,-2.6076953631502214e-3 1.241779011526025e-2,-1.1227733931356385e-2 9.810094752110029e-3 -1.925339502049207e-2c -2.607695363150221e-3,-8.025661089135688e-3 -1.1227733931356385e-2,-1.241779011526025e-2 -1.925339502049207e-2 -9.810094752110029e-3c -8.025661089135688e-3,2.6076953631502206e-3 -1.241779011526025e-2,1.1227733931356383e-2 -9.810094752110029e-3 1.9253395020492066e-2c 2.60769536315022e-3,8.025661089135688e-3 1.1227733931356381e-2,1.241779011526025e-2 1.9253395020492066e-2 9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9320058888475944,1.9365575903974994 c 4.960131335273353e-3,6.827035093032787e-3 1.4515517696841347e-2,8.340459613994444e-3 2.1342552789874132e-2 3.3803282787210915e-3c 6.827035093032787e-3,-4.960131335273353e-3 8.340459613994444e-3,-1.4515517696841347e-2 3.3803282787210932e-3 -2.1342552789874132e-2c -4.960131335273352e-3,-6.827035093032788e-3 -1.4515517696841347e-2,-8.340459613994444e-3 -2.1342552789874132e-2 -3.3803282787210932e-3c -6.827035093032788e-3,4.960131335273352e-3 -8.340459613994445e-3,1.4515517696841345e-2 -3.380328278721095e-3 2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.886167146446955,1.9185953658863464 c -4.9601313352733555e-3,6.827035093032786e-3 -3.4467068143117048e-3,1.6382421454600782e-2 3.3803282787210794e-3 2.134255278987414e-2c 6.827035093032786e-3,4.9601313352733555e-3 1.6382421454600782e-2,3.4467068143117048e-3 2.1342552789874136e-2 -3.3803282787210794e-3c 4.960131335273356e-3,-6.827035093032785e-3 3.4467068143117056e-3,-1.6382421454600782e-2 -3.3803282787210776e-3 -2.1342552789874136e-2c -6.827035093032785e-3,-4.960131335273356e-3 -1.6382421454600782e-2,-3.4467068143117065e-3 -2.1342552789874132e-2 3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8729001264520808,1.70762304423688 l -3.708432160289283e-2,2.694333676672958e-2 l 1.4164950402573085e-2,4.3595234658903144e-2 l 4.58387424006395e-2,5.204170427930421e-18 l 1.4164950402573083e-2,-4.3595234658903144e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.888179707252294,1.70762304423688 c 2.874183962866366e-18,-8.438679459765123e-3 -6.840901340448036e-3,-1.5279580800213168e-2 -1.5279580800213157e-2 -1.5279580800213171e-2c -8.438679459765123e-3,-3.3909040523379595e-18 -1.5279580800213168e-2,6.840901340448035e-3 -1.5279580800213171e-2 1.5279580800213155e-2c -3.9076241418095534e-18,8.438679459765123e-3 6.840901340448034e-3,1.5279580800213168e-2 1.5279580800213154e-2 1.5279580800213171e-2c 8.438679459765123e-3,4.424344231281147e-18 1.5279580800213168e-2,-6.840901340448033e-3 1.5279580800213171e-2 -1.5279580800213152e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9147060981891648,1.7490981258899108 c 8.025661089135688e-3,-2.6076953631502214e-3 1.241779011526025e-2,-1.1227733931356385e-2 9.810094752110029e-3 -1.925339502049207e-2c -2.607695363150221e-3,-8.025661089135688e-3 -1.1227733931356385e-2,-1.241779011526025e-2 -1.925339502049207e-2 -9.810094752110029e-3c -8.025661089135688e-3,2.6076953631502206e-3 -1.241779011526025e-2,1.1227733931356383e-2 -9.810094752110029e-3 1.9253395020492066e-2c 2.60769536315022e-3,8.025661089135688e-3 1.1227733931356381e-2,1.241779011526025e-2 1.9253395020492066e-2 9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.883458057118103,1.7871427279180894 c 4.960131335273353e-3,6.827035093032787e-3 1.4515517696841347e-2,8.340459613994444e-3 2.1342552789874132e-2 3.3803282787210915e-3c 6.827035093032787e-3,-4.960131335273353e-3 8.340459613994444e-3,-1.4515517696841347e-2 3.3803282787210932e-3 -2.1342552789874132e-2c -4.960131335273352e-3,-6.827035093032788e-3 -1.4515517696841347e-2,-8.340459613994444e-3 -2.1342552789874132e-2 -3.3803282787210932e-3c -6.827035093032788e-3,4.960131335273352e-3 -8.340459613994445e-3,1.4515517696841345e-2 -3.380328278721095e-3 2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8376193147174635,1.7691805034069363 c -4.9601313352733555e-3,6.827035093032786e-3 -3.4467068143117048e-3,1.6382421454600782e-2 3.3803282787210794e-3 2.134255278987414e-2c 6.827035093032786e-3,4.9601313352733555e-3 1.6382421454600782e-2,3.4467068143117048e-3 2.1342552789874136e-2 -3.3803282787210794e-3c 4.960131335273356e-3,-6.827035093032785e-3 3.4467068143117056e-3,-1.6382421454600782e-2 -3.3803282787210776e-3 -2.1342552789874136e-2c -6.827035093032785e-3,-4.960131335273356e-3 -1.6382421454600782e-2,-3.4467068143117065e-3 -2.1342552789874132e-2 3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.840537454983379,1.7200346361173084 c -8.025661089135688e-3,-2.607695363150225e-3 -1.6645699657341854e-2,1.7844336629743328e-3 -1.925339502049208e-2 9.81009475211002e-3c -2.6076953631502253e-3,8.025661089135688e-3 1.7844336629743328e-3,1.6645699657341854e-2 9.810094752110018e-3 1.925339502049208e-2c 8.025661089135688e-3,2.6076953631502258e-3 1.6645699657341854e-2,-1.7844336629743319e-3 1.925339502049208e-2 -9.810094752110017e-3c 2.607695363150226e-3,-8.025661089135688e-3 -1.784433662974331e-3,-1.6645699657341854e-2 -9.810094752110015e-3 -1.925339502049208e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.037084321602893,1.6422229175669427 l -3.7084321602892836e-2,-2.6943336766729567e-2 l -3.708432160289282e-2,2.6943336766729577e-2 l 1.4164950402573078e-2,4.359523465890315e-2 h 4.58387424006395e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.041805971737084,1.6567546624532439 c 8.025661089135688e-3,-2.6076953631502214e-3 1.241779011526025e-2,-1.1227733931356385e-2 9.810094752110029e-3 -1.925339502049207e-2c -2.607695363150221e-3,-8.025661089135688e-3 -1.1227733931356385e-2,-1.241779011526025e-2 -1.925339502049207e-2 -9.810094752110029e-3c -8.025661089135688e-3,2.6076953631502206e-3 -1.241779011526025e-2,1.1227733931356383e-2 -9.810094752110029e-3 1.9253395020492066e-2c 2.60769536315022e-3,8.025661089135688e-3 1.1227733931356381e-2,1.241779011526025e-2 1.9253395020492066e-2 9.81009475211003e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.010557930666022,1.6947992644814225 c 4.960131335273353e-3,6.827035093032787e-3 1.4515517696841347e-2,8.340459613994444e-3 2.1342552789874132e-2 3.3803282787210915e-3c 6.827035093032787e-3,-4.960131335273353e-3 8.340459613994444e-3,-1.4515517696841347e-2 3.3803282787210932e-3 -2.1342552789874132e-2c -4.960131335273352e-3,-6.827035093032788e-3 -1.4515517696841347e-2,-8.340459613994444e-3 -2.1342552789874132e-2 -3.3803282787210932e-3c -6.827035093032788e-3,4.960131335273352e-3 -8.340459613994445e-3,1.4515517696841345e-2 -3.380328278721095e-3 2.134255278987413e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9647191882653827,1.6768370399702694 c -4.9601313352733555e-3,6.827035093032786e-3 -3.4467068143117048e-3,1.6382421454600782e-2 3.3803282787210794e-3 2.134255278987414e-2c 6.827035093032786e-3,4.9601313352733555e-3 1.6382421454600782e-2,3.4467068143117048e-3 2.1342552789874136e-2 -3.3803282787210794e-3c 4.960131335273356e-3,-6.827035093032785e-3 3.4467068143117056e-3,-1.6382421454600782e-2 -3.3803282787210776e-3 -2.1342552789874136e-2c -6.827035093032785e-3,-4.960131335273356e-3 -1.6382421454600782e-2,-3.4467068143117065e-3 -2.1342552789874132e-2 3.380328278721076e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9676373285312982,1.6276911726806416 c -8.025661089135688e-3,-2.607695363150225e-3 -1.6645699657341854e-2,1.7844336629743328e-3 -1.925339502049208e-2 9.81009475211002e-3c -2.6076953631502253e-3,8.025661089135688e-3 1.7844336629743328e-3,1.6645699657341854e-2 9.810094752110018e-3 1.925339502049208e-2c 8.025661089135688e-3,2.6076953631502258e-3 1.6645699657341854e-2,-1.7844336629743319e-3 1.925339502049208e-2 -9.810094752110017e-3c 2.607695363150226e-3,-8.025661089135688e-3 -1.784433662974331e-3,-1.6645699657341854e-2 -9.810094752110015e-3 -1.925339502049208e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0152795808002133,1.6152795808002132 c 0.0,-8.438679459765126e-3 -6.840901340448043e-3,-1.5279580800213171e-2 -1.5279580800213168e-2 -1.5279580800213171e-2c -8.438679459765126e-3,-5.167200894715939e-19 -1.5279580800213171e-2,6.840901340448042e-3 -1.5279580800213171e-2 1.5279580800213166e-2c -1.0334401789431878e-18,8.438679459765126e-3 6.840901340448041e-3,1.5279580800213171e-2 1.5279580800213164e-2 1.5279580800213171e-2c 8.438679459765126e-3,1.5501602684147815e-18 1.5279580800213171e-2,-6.84090134044804e-3 1.5279580800213171e-2 -1.5279580800213162e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1257643257781649,2.256809116880829 l -0.12576432577816482,9.137313118375762e-2 l -0.1257643257781648,-9.137313118375766e-2 l 4.803769787504439e-2,-0.14784483191382278 h 0.15545325580624084 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.141776891736513,2.2075275062428883 c 2.721748200243378e-2,8.843495984455376e-3 4.211254066404819e-2,3.807669459385528e-2 3.326904467959281e-2 6.529417659628906e-2c -8.843495984455375e-3,2.721748200243378e-2 -3.807669459385528e-2,4.211254066404819e-2 -6.529417659628906e-2 3.326904467959282e-2c -2.721748200243378e-2,-8.843495984455373e-3 -4.211254066404819e-2,-3.807669459385528e-2 -3.326904467959282e-2 -6.529417659628906e-2c 8.843495984455371e-3,-2.721748200243378e-2 3.807669459385528e-2,-4.211254066404819e-2 6.529417659628904e-2 -3.3269044679592824e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0358051859770654,2.0785065745724203 c 1.6821328965692623e-2,-2.3152573066677395e-2 4.922657925396344e-2,-2.8285060497161695e-2 7.237915232064082e-2 -1.1463731531469075e-2c 2.3152573066677395e-2,1.6821328965692623e-2 2.8285060497161695e-2,4.922657925396343e-2 1.1463731531469078e-2 7.237915232064082e-2c -1.682132896569262e-2,2.31525730666774e-2 -4.9226579253963426e-2,2.8285060497161695e-2 -7.237915232064082e-2 1.1463731531469082e-2c -2.31525730666774e-2,-1.682132896569262e-2 -2.8285060497161698e-2,-4.9226579253963426e-2 -1.1463731531469085e-2 -7.237915232064082e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8803519301708246,2.1394219953615923 c -1.6821328965692627e-2,-2.3152573066677392e-2 -1.1688841535208341e-2,-5.55578233549482e-2 1.1463731531469047e-2 -7.237915232064082e-2c 2.3152573066677392e-2,-1.6821328965692627e-2 5.55578233549482e-2,-1.1688841535208345e-2 7.237915232064082e-2 1.146373153146904e-2c 1.682132896569263e-2,2.315257306667739e-2 1.1688841535208345e-2,5.55578233549482e-2 -1.1463731531469033e-2 7.237915232064082e-2c -2.315257306667739e-2,1.682132896569263e-2 -5.55578233549482e-2,1.1688841535208348e-2 -7.237915232064082e-2 -1.1463731531469033e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8902482401801832,2.30609072751877 c -2.721748200243378e-2,8.84349598445538e-3 -5.64506806118337e-2,-6.051562677159016e-3 -6.529417659628907e-2 -3.326904467959279e-2c -8.843495984455382e-3,-2.721748200243378e-2 6.051562677159013e-3,-5.645068061183369e-2 3.326904467959279e-2 -6.529417659628907e-2c 2.721748200243378e-2,-8.843495984455383e-3 5.645068061183369e-2,6.051562677159013e-3 6.529417659628907e-2 3.326904467959278e-2c 8.843495984455385e-3,2.721748200243378e-2 -6.051562677159009e-3,5.645068061183369e-2 -3.3269044679592776e-2 6.529417659628907e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0518177519354137,2.3481822480645866 c 0.0,2.861815416444403e-2 -2.3199597770969596e-2,5.181775193541363e-2 -5.181775193541362e-2 5.181775193541363e-2c -2.861815416444403e-2,1.752356544749594e-18 -5.181775193541363e-2,-2.3199597770969593e-2 -5.181775193541363e-2 -5.181775193541362e-2c -3.504713089499188e-18,-2.861815416444403e-2 2.319959777096959e-2,-5.181775193541363e-2 5.181775193541361e-2 -5.181775193541363e-2c 2.861815416444403e-2,-5.2570696342487816e-18 5.181775193541363e-2,2.3199597770969586e-2 5.181775193541363e-2 5.18177519354136e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1257643257781649,1.7431908831191711 l -0.12576432577816482,-9.137313118375762e-2 l -0.1257643257781648,9.137313118375766e-2 l 4.803769787504439e-2,0.14784483191382278 h 0.15545325580624084 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.141776891736513,1.7924724937571122 c 2.721748200243378e-2,-8.843495984455376e-3 4.211254066404819e-2,-3.807669459385528e-2 3.326904467959281e-2 -6.529417659628906e-2c -8.843495984455375e-3,-2.721748200243378e-2 -3.807669459385528e-2,-4.211254066404819e-2 -6.529417659628906e-2 -3.326904467959282e-2c -2.721748200243378e-2,8.843495984455373e-3 -4.211254066404819e-2,3.807669459385528e-2 -3.326904467959282e-2 6.529417659628906e-2c 8.843495984455371e-3,2.721748200243378e-2 3.807669459385528e-2,4.211254066404819e-2 6.529417659628904e-2 3.3269044679592824e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0358051859770654,1.9214934254275797 c 1.6821328965692623e-2,2.3152573066677395e-2 4.922657925396344e-2,2.8285060497161695e-2 7.237915232064082e-2 1.1463731531469075e-2c 2.3152573066677395e-2,-1.6821328965692623e-2 2.8285060497161695e-2,-4.922657925396343e-2 1.1463731531469078e-2 -7.237915232064082e-2c -1.682132896569262e-2,-2.31525730666774e-2 -4.9226579253963426e-2,-2.8285060497161695e-2 -7.237915232064082e-2 -1.1463731531469082e-2c -2.31525730666774e-2,1.682132896569262e-2 -2.8285060497161698e-2,4.9226579253963426e-2 -1.1463731531469085e-2 7.237915232064082e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8803519301708246,1.8605780046384082 c -1.6821328965692627e-2,2.3152573066677392e-2 -1.1688841535208341e-2,5.55578233549482e-2 1.1463731531469047e-2 7.237915232064082e-2c 2.3152573066677392e-2,1.6821328965692627e-2 5.55578233549482e-2,1.1688841535208345e-2 7.237915232064082e-2 -1.146373153146904e-2c 1.682132896569263e-2,-2.315257306667739e-2 1.1688841535208345e-2,-5.55578233549482e-2 -1.1463731531469033e-2 -7.237915232064082e-2c -2.315257306667739e-2,-1.682132896569263e-2 -5.55578233549482e-2,-1.1688841535208348e-2 -7.237915232064082e-2 1.1463731531469033e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8902482401801832,1.6939092724812301 c -2.721748200243378e-2,-8.84349598445538e-3 -5.64506806118337e-2,6.051562677159016e-3 -6.529417659628907e-2 3.326904467959279e-2c -8.843495984455382e-3,2.721748200243378e-2 6.051562677159013e-3,5.645068061183369e-2 3.326904467959279e-2 6.529417659628907e-2c 2.721748200243378e-2,8.843495984455383e-3 5.645068061183369e-2,-6.051562677159013e-3 6.529417659628907e-2 -3.326904467959278e-2c 8.843495984455385e-3,-2.721748200243378e-2 -6.051562677159009e-3,-5.645068061183369e-2 -3.3269044679592776e-2 -6.529417659628907e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0518177519354137,1.6518177519354134 c 0.0,-2.861815416444403e-2 -2.3199597770969596e-2,-5.181775193541363e-2 -5.181775193541362e-2 -5.181775193541363e-2c -2.861815416444403e-2,-1.752356544749594e-18 -5.181775193541363e-2,2.3199597770969593e-2 -5.181775193541363e-2 5.181775193541362e-2c -3.504713089499188e-18,2.861815416444403e-2 2.319959777096959e-2,5.181775193541363e-2 5.181775193541361e-2 5.181775193541363e-2c 2.861815416444403e-2,5.2570696342487816e-18 5.181775193541363e-2,-2.3199597770969586e-2 5.181775193541363e-2 -5.18177519354136e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5000000000000001,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4,2.0 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.4000000000000001 -0.39999999999999986Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.5,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.15702446090732,1.1199782032202106 l -5.447137437767964e-2,-3.957577004428579e-2 l -5.447137437767961e-2,3.95757700442858e-2 l 2.0806213598353464e-2,6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.1668470485646,1.1334978352839342 l 6.070693029674177e-3,-1.8683671996672774e-2 l -1.5893280686954066e-2,-1.1547144328598385e-2 l -1.5893280686954073e-2,1.1547144328598383e-2 l 6.070693029674173e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1615492883356153,1.137346883393467 c 2.125770572260008e-3,2.925872182728337e-3 6.220936155789148e-3,3.5744826917119047e-3 9.146808338517484e-3 1.4487121194518972e-3c 2.925872182728337e-3,-2.125770572260008e-3 3.574482691711905e-3,-6.220936155789147e-3 1.4487121194518976e-3 -9.146808338517484e-3c -2.1257705722600075e-3,-2.9258721827283376e-3 -6.220936155789147e-3,-3.574482691711905e-3 -9.146808338517482e-3 -1.448712119451898e-3c -2.9258721827283376e-3,2.1257705722600075e-3 -3.574482691711905e-3,6.220936155789147e-3 -1.4487121194518985e-3 9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1419041130210554,1.1296487871744014 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.143154744563591,1.108586272621704 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1635728526788403,1.103267018958663 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1749413059374993,1.121042053952819 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.126395659651687,1.1975327763465384 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674174e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.154714432859839e-2 l -1.589328068695407e-2,1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1210978994227023,1.1936837282370056 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1223485309652377,1.1726212136843082 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.142766639080487,1.1673019600212673 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1541350923391462,1.1850769950154232 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.140743074737262,1.2013818244560712 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.05299464506336,1.1788491043498657 l 6.0706930296741774e-3,1.868367199667277e-2 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674179e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.055018209406585,1.1726212136843082 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0754363175218344,1.1673019600212673 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0868047707804935,1.1850769950154232 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0734127531786095,1.2013818244560712 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0537675778640496,1.1936837282370056 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.048081712151961,1.103267018958663 l -1.5893280686954066e-2,1.1547144328598389e-2 l 6.070693029674178e-3,1.868367199667277e-2 l 1.9645175314559785e-2,1.734723475976807e-18 l 6.070693029674177e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0546301039234813,1.103267018958663 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0659985571821404,1.121042053952819 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0526065395802564,1.137346883393467 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0329613642656965,1.1296487871744014 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.034211995808232,1.108586272621704 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.118446367216595,1.0752383932429757 l -1.589328068695407e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.1547144328598389e-2 l 6.070693029674176e-3,1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.12046993155982,1.0814662839085332 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.107077913957936,1.0977711133491812 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.087432738643376,1.0900730171301156 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0886833701859113,1.0690105025774181 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.109101478301161,1.0636912489143773 c 0.0,-3.6165769113279105e-3 -2.931814860192018e-3,-6.548391771519929e-3 -6.548391771519928e-3 -6.548391771519929e-3c -3.6165769113279105e-3,-2.2145146691639735e-19 -6.548391771519929e-3,2.931814860192018e-3 -6.548391771519929e-3 6.548391771519927e-3c -4.429029338327947e-19,3.6165769113279105e-3 2.9318148601920175e-3,6.548391771519929e-3 6.548391771519927e-3 6.548391771519929e-3c 3.6165769113279105e-3,6.64354400749192e-19 6.548391771519929e-3,-2.931814860192017e-3 6.548391771519929e-3 -6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.15702446090732,1.3371646539226467 l -5.447137437767964e-2,3.957577004428579e-2 l -5.447137437767961e-2,-3.95757700442858e-2 l 2.0806213598353464e-2,-6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.1668470485646,1.323645021858923 l 6.070693029674177e-3,1.8683671996672774e-2 l -1.5893280686954066e-2,1.1547144328598385e-2 l -1.5893280686954073e-2,-1.1547144328598383e-2 l 6.070693029674173e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1615492883356153,1.3197959737493903 c 2.125770572260008e-3,-2.925872182728337e-3 6.220936155789148e-3,-3.5744826917119047e-3 9.146808338517484e-3 -1.4487121194518972e-3c 2.925872182728337e-3,2.125770572260008e-3 3.574482691711905e-3,6.220936155789147e-3 1.4487121194518976e-3 9.146808338517484e-3c -2.1257705722600075e-3,2.9258721827283376e-3 -6.220936155789147e-3,3.574482691711905e-3 -9.146808338517482e-3 1.448712119451898e-3c -2.9258721827283376e-3,-2.1257705722600075e-3 -3.574482691711905e-3,-6.220936155789147e-3 -1.4487121194518985e-3 -9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1419041130210554,1.3274940699684559 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.143154744563591,1.3485565845211533 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1635728526788403,1.3538758381841942 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1749413059374993,1.3361008031900383 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.126395659651687,1.2596100807963189 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674174e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.154714432859839e-2 l -1.589328068695407e-2,-1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1210978994227023,1.2634591289058517 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1223485309652377,1.2845216434585491 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.142766639080487,1.28984089712159 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1541350923391462,1.272065862127434 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.140743074737262,1.255761032686786 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.05299464506336,1.2782937527929916 l 6.0706930296741774e-3,-1.868367199667277e-2 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674179e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.055018209406585,1.2845216434585491 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0754363175218344,1.28984089712159 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0868047707804935,1.272065862127434 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0734127531786095,1.255761032686786 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0537675778640496,1.2634591289058517 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.048081712151961,1.3538758381841942 l -1.5893280686954066e-2,-1.1547144328598389e-2 l 6.070693029674178e-3,-1.868367199667277e-2 l 1.9645175314559785e-2,-1.734723475976807e-18 l 6.070693029674177e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0546301039234813,1.3538758381841942 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0659985571821404,1.3361008031900383 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0526065395802564,1.3197959737493903 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0329613642656965,1.3274940699684559 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.034211995808232,1.3485565845211533 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.118446367216595,1.3819044638998816 l -1.589328068695407e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.1547144328598389e-2 l 6.070693029674176e-3,-1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.12046993155982,1.3756765732343241 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.107077913957936,1.359371743793676 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.087432738643376,1.3670698400127417 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0886833701859113,1.3881323545654392 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.109101478301161,1.39345160822848 c 0.0,3.6165769113279105e-3 -2.931814860192018e-3,6.548391771519929e-3 -6.548391771519928e-3 6.548391771519929e-3c -3.6165769113279105e-3,2.2145146691639735e-19 -6.548391771519929e-3,-2.931814860192018e-3 -6.548391771519929e-3 -6.548391771519927e-3c -4.429029338327947e-19,-3.6165769113279105e-3 2.9318148601920175e-3,-6.548391771519929e-3 6.548391771519927e-3 -6.548391771519929e-3c 3.6165769113279105e-3,-6.64354400749192e-19 6.548391771519929e-3,2.931814860192017e-3 6.548391771519929e-3 6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9519182878480392,1.1199782032202106 l -5.447137437767964e-2,-3.957577004428579e-2 l -5.447137437767961e-2,3.95757700442858e-2 l 2.0806213598353464e-2,6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9617408755053192,1.1334978352839342 l 6.070693029674177e-3,-1.8683671996672774e-2 l -1.5893280686954066e-2,-1.1547144328598385e-2 l -1.5893280686954073e-2,1.1547144328598383e-2 l 6.070693029674173e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9564431152763344,1.137346883393467 c 2.125770572260008e-3,2.925872182728337e-3 6.220936155789148e-3,3.5744826917119047e-3 9.146808338517484e-3 1.4487121194518972e-3c 2.925872182728337e-3,-2.125770572260008e-3 3.574482691711905e-3,-6.220936155789147e-3 1.4487121194518976e-3 -9.146808338517484e-3c -2.1257705722600075e-3,-2.9258721827283376e-3 -6.220936155789147e-3,-3.574482691711905e-3 -9.146808338517482e-3 -1.448712119451898e-3c -2.9258721827283376e-3,2.1257705722600075e-3 -3.574482691711905e-3,6.220936155789147e-3 -1.4487121194518985e-3 9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367979399617745,1.1296487871744014 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9380485715043099,1.108586272621704 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9584666796195591,1.103267018958663 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.969835132878218,1.121042053952819 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9212894865924057,1.1975327763465384 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674174e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.154714432859839e-2 l -1.589328068695407e-2,1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.915991726363421,1.1936837282370056 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9172423579059563,1.1726212136843082 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9376604660212056,1.1673019600212673 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9490289192798644,1.1850769950154232 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9356369016779809,1.2013818244560712 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8478884720040794,1.1788491043498657 l 6.0706930296741774e-3,1.868367199667277e-2 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674179e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.849912036347304,1.1726212136843082 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8703301444625533,1.1673019600212673 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8816985977212122,1.1850769950154232 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8683065801193286,1.2013818244560712 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8486614048047687,1.1936837282370056 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8429755390926799,1.103267018958663 l -1.5893280686954066e-2,1.1547144328598389e-2 l 6.070693029674178e-3,1.868367199667277e-2 l 1.9645175314559785e-2,1.734723475976807e-18 l 6.070693029674177e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8495239308641997,1.103267018958663 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8608923841228586,1.121042053952819 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.847500366520975,1.137346883393467 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8278551912064152,1.1296487871744014 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8291058227489505,1.108586272621704 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9133401941573136,1.0752383932429757 l -1.589328068695407e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.1547144328598389e-2 l 6.070693029674176e-3,1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9153637585005383,1.0814662839085332 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9019717408986547,1.0977711133491812 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8823265655840948,1.0900730171301156 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8835771971266302,1.0690105025774181 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9039953052418794,1.0636912489143773 c 0.0,-3.6165769113279105e-3 -2.931814860192018e-3,-6.548391771519929e-3 -6.548391771519928e-3 -6.548391771519929e-3c -3.6165769113279105e-3,-2.2145146691639735e-19 -6.548391771519929e-3,2.931814860192018e-3 -6.548391771519929e-3 6.548391771519927e-3c -4.429029338327947e-19,3.6165769113279105e-3 2.9318148601920175e-3,6.548391771519929e-3 6.548391771519927e-3 6.548391771519929e-3c 3.6165769113279105e-3,6.64354400749192e-19 6.548391771519929e-3,-2.931814860192017e-3 6.548391771519929e-3 -6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9519182878480392,1.3371646539226467 l -5.447137437767964e-2,3.957577004428579e-2 l -5.447137437767961e-2,-3.95757700442858e-2 l 2.0806213598353464e-2,-6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9617408755053192,1.323645021858923 l 6.070693029674177e-3,1.8683671996672774e-2 l -1.5893280686954066e-2,1.1547144328598385e-2 l -1.5893280686954073e-2,-1.1547144328598383e-2 l 6.070693029674173e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9564431152763344,1.3197959737493903 c 2.125770572260008e-3,-2.925872182728337e-3 6.220936155789148e-3,-3.5744826917119047e-3 9.146808338517484e-3 -1.4487121194518972e-3c 2.925872182728337e-3,2.125770572260008e-3 3.574482691711905e-3,6.220936155789147e-3 1.4487121194518976e-3 9.146808338517484e-3c -2.1257705722600075e-3,2.9258721827283376e-3 -6.220936155789147e-3,3.574482691711905e-3 -9.146808338517482e-3 1.448712119451898e-3c -2.9258721827283376e-3,-2.1257705722600075e-3 -3.574482691711905e-3,-6.220936155789147e-3 -1.4487121194518985e-3 -9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367979399617745,1.3274940699684559 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9380485715043099,1.3485565845211533 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9584666796195591,1.3538758381841942 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.969835132878218,1.3361008031900383 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9212894865924057,1.2596100807963189 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674174e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.154714432859839e-2 l -1.589328068695407e-2,-1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.915991726363421,1.2634591289058517 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9172423579059563,1.2845216434585491 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9376604660212056,1.28984089712159 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9490289192798644,1.272065862127434 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9356369016779809,1.255761032686786 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8478884720040794,1.2782937527929916 l 6.0706930296741774e-3,-1.868367199667277e-2 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674179e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.849912036347304,1.2845216434585491 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8703301444625533,1.28984089712159 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8816985977212122,1.272065862127434 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8683065801193286,1.255761032686786 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8486614048047687,1.2634591289058517 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8429755390926799,1.3538758381841942 l -1.5893280686954066e-2,-1.1547144328598389e-2 l 6.070693029674178e-3,-1.868367199667277e-2 l 1.9645175314559785e-2,-1.734723475976807e-18 l 6.070693029674177e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8495239308641997,1.3538758381841942 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8608923841228586,1.3361008031900383 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.847500366520975,1.3197959737493903 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8278551912064152,1.3274940699684559 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8291058227489505,1.3485565845211533 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9133401941573136,1.3819044638998816 l -1.589328068695407e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.1547144328598389e-2 l 6.070693029674176e-3,-1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9153637585005383,1.3756765732343241 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9019717408986547,1.359371743793676 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8823265655840948,1.3670698400127417 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8835771971266302,1.3881323545654392 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9039953052418794,1.39345160822848 c 0.0,3.6165769113279105e-3 -2.931814860192018e-3,6.548391771519929e-3 -6.548391771519928e-3 6.548391771519929e-3c -3.6165769113279105e-3,2.2145146691639735e-19 -6.548391771519929e-3,-2.931814860192018e-3 -6.548391771519929e-3 -6.548391771519927e-3c -4.429029338327947e-19,-3.6165769113279105e-3 2.9318148601920175e-3,-6.548391771519929e-3 6.548391771519927e-3 -6.548391771519929e-3c 3.6165769113279105e-3,-6.64354400749192e-19 6.548391771519929e-3,2.931814860192017e-3 6.548391771519929e-3 6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.15702446090732,0.8800217967797894 l -5.447137437767964e-2,3.957577004428579e-2 l -5.447137437767961e-2,-3.95757700442858e-2 l 2.0806213598353464e-2,-6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.1668470485646,0.8665021647160661 l 6.070693029674177e-3,1.8683671996672774e-2 l -1.5893280686954066e-2,1.1547144328598385e-2 l -1.5893280686954073e-2,-1.1547144328598383e-2 l 6.070693029674173e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1615492883356153,0.8626531166065333 c 2.125770572260008e-3,-2.925872182728337e-3 6.220936155789148e-3,-3.5744826917119047e-3 9.146808338517484e-3 -1.4487121194518972e-3c 2.925872182728337e-3,2.125770572260008e-3 3.574482691711905e-3,6.220936155789147e-3 1.4487121194518976e-3 9.146808338517484e-3c -2.1257705722600075e-3,2.9258721827283376e-3 -6.220936155789147e-3,3.574482691711905e-3 -9.146808338517482e-3 1.448712119451898e-3c -2.9258721827283376e-3,-2.1257705722600075e-3 -3.574482691711905e-3,-6.220936155789147e-3 -1.4487121194518985e-3 -9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1419041130210554,0.8703512128255989 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.143154744563591,0.8914137273782965 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1635728526788403,0.8967329810413373 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1749413059374993,0.8789579460471812 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.126395659651687,0.8024672236534618 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674174e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.154714432859839e-2 l -1.589328068695407e-2,-1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1210978994227023,0.8063162717629946 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1223485309652377,0.8273787863156922 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.142766639080487,0.8326980399787329 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1541350923391462,0.8149230049845769 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.140743074737262,0.798618175543929 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.05299464506336,0.8211508956501345 l 6.0706930296741774e-3,-1.868367199667277e-2 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674179e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.055018209406585,0.8273787863156922 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0754363175218344,0.8326980399787329 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0868047707804935,0.8149230049845769 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0734127531786095,0.798618175543929 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0537675778640496,0.8063162717629946 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.048081712151961,0.8967329810413373 l -1.5893280686954066e-2,-1.1547144328598389e-2 l 6.070693029674178e-3,-1.868367199667277e-2 l 1.9645175314559785e-2,-1.734723475976807e-18 l 6.070693029674177e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0546301039234813,0.8967329810413373 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0659985571821404,0.8789579460471812 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0526065395802564,0.8626531166065333 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0329613642656965,0.8703512128255989 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.034211995808232,0.8914137273782965 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.118446367216595,0.9247616067570247 l -1.589328068695407e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.1547144328598389e-2 l 6.070693029674176e-3,-1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.12046993155982,0.9185337160914671 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.107077913957936,0.9022288866508191 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.087432738643376,0.9099269828698847 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0886833701859113,0.9309894974225823 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.109101478301161,0.9363087510856231 c 0.0,3.6165769113279105e-3 -2.931814860192018e-3,6.548391771519929e-3 -6.548391771519928e-3 6.548391771519929e-3c -3.6165769113279105e-3,2.2145146691639735e-19 -6.548391771519929e-3,-2.931814860192018e-3 -6.548391771519929e-3 -6.548391771519927e-3c -4.429029338327947e-19,-3.6165769113279105e-3 2.9318148601920175e-3,-6.548391771519929e-3 6.548391771519927e-3 -6.548391771519929e-3c 3.6165769113279105e-3,-6.64354400749192e-19 6.548391771519929e-3,2.931814860192017e-3 6.548391771519929e-3 6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.15702446090732,0.6628353460773536 l -5.447137437767964e-2,-3.957577004428579e-2 l -5.447137437767961e-2,3.95757700442858e-2 l 2.0806213598353464e-2,6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.1668470485646,0.6763549781410769 l 6.070693029674177e-3,-1.8683671996672774e-2 l -1.5893280686954066e-2,-1.1547144328598385e-2 l -1.5893280686954073e-2,1.1547144328598383e-2 l 6.070693029674173e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1615492883356153,0.6802040262506097 c 2.125770572260008e-3,2.925872182728337e-3 6.220936155789148e-3,3.5744826917119047e-3 9.146808338517484e-3 1.4487121194518972e-3c 2.925872182728337e-3,-2.125770572260008e-3 3.574482691711905e-3,-6.220936155789147e-3 1.4487121194518976e-3 -9.146808338517484e-3c -2.1257705722600075e-3,-2.9258721827283376e-3 -6.220936155789147e-3,-3.574482691711905e-3 -9.146808338517482e-3 -1.448712119451898e-3c -2.9258721827283376e-3,2.1257705722600075e-3 -3.574482691711905e-3,6.220936155789147e-3 -1.4487121194518985e-3 9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1419041130210554,0.6725059300315441 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.143154744563591,0.6514434154788465 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1635728526788403,0.6461241618158058 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1749413059374993,0.6638991968099618 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.126395659651687,0.7403899192036812 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674174e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.154714432859839e-2 l -1.589328068695407e-2,1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1210978994227023,0.7365408710941485 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1223485309652377,0.7154783565414509 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.142766639080487,0.7101591028784101 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.1541350923391462,0.7279341378725661 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.140743074737262,0.744238967313214 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.05299464506336,0.7217062472070085 l 6.0706930296741774e-3,1.868367199667277e-2 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674179e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.055018209406585,0.7154783565414509 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0754363175218344,0.7101591028784101 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0868047707804935,0.7279341378725661 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0734127531786095,0.744238967313214 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0537675778640496,0.7365408710941485 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.048081712151961,0.6461241618158058 l -1.5893280686954066e-2,1.1547144328598389e-2 l 6.070693029674178e-3,1.868367199667277e-2 l 1.9645175314559785e-2,1.734723475976807e-18 l 6.070693029674177e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0546301039234813,0.6461241618158058 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0659985571821404,0.6638991968099618 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0526065395802564,0.6802040262506097 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0329613642656965,0.6725059300315441 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.034211995808232,0.6514434154788465 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.118446367216595,0.6180955361001184 l -1.589328068695407e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.1547144328598389e-2 l 6.070693029674176e-3,1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.12046993155982,0.624323426765676 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.107077913957936,0.6406282562063239 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.087432738643376,0.6329301599872583 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.0886833701859113,0.6118676454345607 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.109101478301161,0.60654839177152 c 0.0,-3.6165769113279105e-3 -2.931814860192018e-3,-6.548391771519929e-3 -6.548391771519928e-3 -6.548391771519929e-3c -3.6165769113279105e-3,-2.2145146691639735e-19 -6.548391771519929e-3,2.931814860192018e-3 -6.548391771519929e-3 6.548391771519927e-3c -4.429029338327947e-19,3.6165769113279105e-3 2.9318148601920175e-3,6.548391771519929e-3 6.548391771519927e-3 6.548391771519929e-3c 3.6165769113279105e-3,6.64354400749192e-19 6.548391771519929e-3,-2.931814860192017e-3 6.548391771519929e-3 -6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9519182878480392,0.8800217967797894 l -5.447137437767964e-2,3.957577004428579e-2 l -5.447137437767961e-2,-3.95757700442858e-2 l 2.0806213598353464e-2,-6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9617408755053192,0.8665021647160661 l 6.070693029674177e-3,1.8683671996672774e-2 l -1.5893280686954066e-2,1.1547144328598385e-2 l -1.5893280686954073e-2,-1.1547144328598383e-2 l 6.070693029674173e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9564431152763344,0.8626531166065333 c 2.125770572260008e-3,-2.925872182728337e-3 6.220936155789148e-3,-3.5744826917119047e-3 9.146808338517484e-3 -1.4487121194518972e-3c 2.925872182728337e-3,2.125770572260008e-3 3.574482691711905e-3,6.220936155789147e-3 1.4487121194518976e-3 9.146808338517484e-3c -2.1257705722600075e-3,2.9258721827283376e-3 -6.220936155789147e-3,3.574482691711905e-3 -9.146808338517482e-3 1.448712119451898e-3c -2.9258721827283376e-3,-2.1257705722600075e-3 -3.574482691711905e-3,-6.220936155789147e-3 -1.4487121194518985e-3 -9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367979399617745,0.8703512128255989 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9380485715043099,0.8914137273782965 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9584666796195591,0.8967329810413373 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.969835132878218,0.8789579460471812 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9212894865924057,0.8024672236534618 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674174e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.154714432859839e-2 l -1.589328068695407e-2,-1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.915991726363421,0.8063162717629946 c -2.1257705722600097e-3,-2.9258721827283363e-3 -1.4771600632764452e-3,-7.021037766257477e-3 1.4487121194518907e-3 -9.146808338517486e-3c 2.9258721827283363e-3,-2.1257705722600097e-3 7.021037766257477e-3,-1.4771600632764456e-3 9.146808338517486e-3 1.4487121194518898e-3c 2.12577057226001e-3,2.925872182728336e-3 1.4771600632764456e-3,7.021037766257477e-3 -1.448712119451889e-3 9.146808338517484e-3c -2.925872182728336e-3,2.12577057226001e-3 -7.021037766257476e-3,1.477160063276446e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9172423579059563,0.8273787863156922 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9376604660212056,0.8326980399787329 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9490289192798644,0.8149230049845769 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9356369016779809,0.798618175543929 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8478884720040794,0.8211508956501345 l 6.0706930296741774e-3,-1.868367199667277e-2 l 1.9645175314559782e-2,1.734723475976807e-18 l 6.070693029674179e-3,1.868367199667277e-2 l -1.5893280686954066e-2,1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.849912036347304,0.8273787863156922 c -3.4395690382010087e-3,1.1175837270643823e-3 -7.133871281717937e-3,-7.647572841318561e-4 -8.25145500878232e-3 -4.204326322332863e-3c -1.1175837270643826e-3,-3.4395690382010087e-3 7.647572841318557e-4,-7.133871281717937e-3 4.204326322332863e-3 -8.251455008782318e-3c 3.4395690382010087e-3,-1.1175837270643828e-3 7.133871281717937e-3,7.647572841318552e-4 8.251455008782318e-3 4.204326322332863e-3c 1.117583727064383e-3,3.4395690382010087e-3 -7.647572841318548e-4,7.133871281717936e-3 -4.204326322332861e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8703301444625533,0.8326980399787329 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8816985977212122,0.8149230049845769 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8683065801193286,0.798618175543929 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8486614048047687,0.8063162717629946 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8429755390926799,0.8967329810413373 l -1.5893280686954066e-2,-1.1547144328598389e-2 l 6.070693029674178e-3,-1.868367199667277e-2 l 1.9645175314559785e-2,-1.734723475976807e-18 l 6.070693029674177e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8495239308641997,0.8967329810413373 c 7.185459907165915e-19,3.61657691132791e-3 -2.931814860192016e-3,6.548391771519929e-3 -6.548391771519925e-3 6.548391771519929e-3c -3.61657691132791e-3,9.399974576329887e-19 -6.548391771519929e-3,-2.931814860192016e-3 -6.548391771519929e-3 -6.548391771519925e-3c -1.1614489245493862e-18,-3.61657691132791e-3 2.9318148601920157e-3,-6.548391771519929e-3 6.548391771519925e-3 -6.548391771519929e-3c 3.61657691132791e-3,-1.3829003914657833e-18 6.548391771519929e-3,2.9318148601920153e-3 6.548391771519929e-3 6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8608923841228586,0.8789579460471812 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.847500366520975,0.8626531166065333 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8278551912064152,0.8703512128255989 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8291058227489505,0.8914137273782965 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9133401941573136,0.9247616067570247 l -1.589328068695407e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.1547144328598389e-2 l 6.070693029674176e-3,-1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9153637585005383,0.9185337160914671 c 3.439569038201009e-3,1.117583727064381e-3 5.321910049397249e-3,4.811885970581308e-3 4.204326322332868e-3 8.251455008782316e-3c -1.1175837270643808e-3,3.439569038201009e-3 -4.811885970581308e-3,5.321910049397249e-3 -8.251455008782316e-3 4.204326322332869e-3c -3.439569038201009e-3,-1.1175837270643806e-3 -5.321910049397249e-3,-4.811885970581308e-3 -4.204326322332869e-3 -8.251455008782316e-3c 1.1175837270643804e-3,-3.439569038201009e-3 4.811885970581307e-3,-5.32191004939725e-3 8.251455008782315e-3 -4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9019717408986547,0.9022288866508191 c 2.125770572260009e-3,-2.925872182728337e-3 6.220936155789149e-3,-3.5744826917119043e-3 9.146808338517486e-3 -1.4487121194518959e-3c 2.925872182728337e-3,2.125770572260009e-3 3.5744826917119043e-3,6.220936155789149e-3 1.4487121194518963e-3 9.146808338517484e-3c -2.1257705722600084e-3,2.9258721827283376e-3 -6.220936155789149e-3,3.5744826917119043e-3 -9.146808338517484e-3 1.4487121194518967e-3c -2.9258721827283376e-3,-2.1257705722600084e-3 -3.5744826917119047e-3,-6.220936155789149e-3 -1.4487121194518972e-3 -9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8823265655840948,0.9099269828698847 c -2.1257705722600093e-3,-2.9258721827283367e-3 -1.4771600632764443e-3,-7.0210377662574775e-3 1.448712119451892e-3 -9.146808338517486e-3c 2.9258721827283367e-3,-2.1257705722600093e-3 7.021037766257477e-3,-1.4771600632764448e-3 9.146808338517486e-3 1.448712119451891e-3c 2.1257705722600097e-3,2.9258721827283363e-3 1.4771600632764448e-3,7.021037766257477e-3 -1.4487121194518902e-3 9.146808338517486e-3c -2.9258721827283363e-3,2.1257705722600097e-3 -7.021037766257477e-3,1.4771600632764452e-3 -9.146808338517484e-3 -1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8835771971266302,0.9309894974225823 c -3.439569038201009e-3,1.1175837270643817e-3 -7.133871281717937e-3,-7.647572841318574e-4 -8.25145500878232e-3 -4.204326322332865e-3c -1.117583727064382e-3,-3.439569038201009e-3 7.64757284131857e-4,-7.133871281717937e-3 4.204326322332865e-3 -8.251455008782318e-3c 3.439569038201009e-3,-1.1175837270643821e-3 7.133871281717937e-3,7.647572841318565e-4 8.251455008782318e-3 4.204326322332865e-3c 1.1175837270643823e-3,3.439569038201009e-3 -7.647572841318561e-4,7.133871281717937e-3 -4.204326322332863e-3 8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9039953052418794,0.9363087510856231 c 0.0,3.6165769113279105e-3 -2.931814860192018e-3,6.548391771519929e-3 -6.548391771519928e-3 6.548391771519929e-3c -3.6165769113279105e-3,2.2145146691639735e-19 -6.548391771519929e-3,-2.931814860192018e-3 -6.548391771519929e-3 -6.548391771519927e-3c -4.429029338327947e-19,-3.6165769113279105e-3 2.9318148601920175e-3,-6.548391771519929e-3 6.548391771519927e-3 -6.548391771519929e-3c 3.6165769113279105e-3,-6.64354400749192e-19 6.548391771519929e-3,2.931814860192017e-3 6.548391771519929e-3 6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9519182878480392,0.6628353460773536 l -5.447137437767964e-2,-3.957577004428579e-2 l -5.447137437767961e-2,3.95757700442858e-2 l 2.0806213598353464e-2,6.403494106260435e-2 h 6.733032155865232e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9617408755053192,0.6763549781410769 l 6.070693029674177e-3,-1.8683671996672774e-2 l -1.5893280686954066e-2,-1.1547144328598385e-2 l -1.5893280686954073e-2,1.1547144328598383e-2 l 6.070693029674173e-3,1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9564431152763344,0.6802040262506097 c 2.125770572260008e-3,2.925872182728337e-3 6.220936155789148e-3,3.5744826917119047e-3 9.146808338517484e-3 1.4487121194518972e-3c 2.925872182728337e-3,-2.125770572260008e-3 3.574482691711905e-3,-6.220936155789147e-3 1.4487121194518976e-3 -9.146808338517484e-3c -2.1257705722600075e-3,-2.9258721827283376e-3 -6.220936155789147e-3,-3.574482691711905e-3 -9.146808338517482e-3 -1.448712119451898e-3c -2.9258721827283376e-3,2.1257705722600075e-3 -3.574482691711905e-3,6.220936155789147e-3 -1.4487121194518985e-3 9.146808338517482e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9367979399617745,0.6725059300315441 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9380485715043099,0.6514434154788465 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9584666796195591,0.6461241618158058 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.969835132878218,0.6638991968099618 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9212894865924057,0.7403899192036812 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674174e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.154714432859839e-2 l -1.589328068695407e-2,1.1547144328598385e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.915991726363421,0.7365408710941485 c -2.1257705722600097e-3,2.9258721827283363e-3 -1.4771600632764452e-3,7.021037766257477e-3 1.4487121194518907e-3 9.146808338517486e-3c 2.9258721827283363e-3,2.1257705722600097e-3 7.021037766257477e-3,1.4771600632764456e-3 9.146808338517486e-3 -1.4487121194518898e-3c 2.12577057226001e-3,-2.925872182728336e-3 1.4771600632764456e-3,-7.021037766257477e-3 -1.448712119451889e-3 -9.146808338517484e-3c -2.925872182728336e-3,-2.12577057226001e-3 -7.021037766257476e-3,-1.477160063276446e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9172423579059563,0.7154783565414509 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9376604660212056,0.7101591028784101 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9490289192798644,0.7279341378725661 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9356369016779809,0.744238967313214 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8478884720040794,0.7217062472070085 l 6.0706930296741774e-3,1.868367199667277e-2 l 1.9645175314559782e-2,-1.734723475976807e-18 l 6.070693029674179e-3,-1.868367199667277e-2 l -1.5893280686954066e-2,-1.1547144328598389e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.849912036347304,0.7154783565414509 c -3.4395690382010087e-3,-1.1175837270643823e-3 -7.133871281717937e-3,7.647572841318561e-4 -8.25145500878232e-3 4.204326322332863e-3c -1.1175837270643826e-3,3.4395690382010087e-3 7.647572841318557e-4,7.133871281717937e-3 4.204326322332863e-3 8.251455008782318e-3c 3.4395690382010087e-3,1.1175837270643828e-3 7.133871281717937e-3,-7.647572841318552e-4 8.251455008782318e-3 -4.204326322332863e-3c 1.117583727064383e-3,-3.4395690382010087e-3 -7.647572841318548e-4,-7.133871281717936e-3 -4.204326322332861e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8703301444625533,0.7101591028784101 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8816985977212122,0.7279341378725661 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8683065801193286,0.744238967313214 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8486614048047687,0.7365408710941485 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8429755390926799,0.6461241618158058 l -1.5893280686954066e-2,1.1547144328598389e-2 l 6.070693029674178e-3,1.868367199667277e-2 l 1.9645175314559785e-2,1.734723475976807e-18 l 6.070693029674177e-3,-1.8683671996672774e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8495239308641997,0.6461241618158058 c 7.185459907165915e-19,-3.61657691132791e-3 -2.931814860192016e-3,-6.548391771519929e-3 -6.548391771519925e-3 -6.548391771519929e-3c -3.61657691132791e-3,-9.399974576329887e-19 -6.548391771519929e-3,2.931814860192016e-3 -6.548391771519929e-3 6.548391771519925e-3c -1.1614489245493862e-18,3.61657691132791e-3 2.9318148601920157e-3,6.548391771519929e-3 6.548391771519925e-3 6.548391771519929e-3c 3.61657691132791e-3,1.3829003914657833e-18 6.548391771519929e-3,-2.9318148601920153e-3 6.548391771519929e-3 -6.548391771519923e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8608923841228586,0.6638991968099618 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.847500366520975,0.6802040262506097 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8278551912064152,0.6725059300315441 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8291058227489505,0.6514434154788465 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.9133401941573136,0.6180955361001184 l -1.589328068695407e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.1547144328598389e-2 l 6.070693029674176e-3,1.8683671996672774e-2 h 1.9645175314559782e-2 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9153637585005383,0.624323426765676 c 3.439569038201009e-3,-1.117583727064381e-3 5.321910049397249e-3,-4.811885970581308e-3 4.204326322332868e-3 -8.251455008782316e-3c -1.1175837270643808e-3,-3.439569038201009e-3 -4.811885970581308e-3,-5.321910049397249e-3 -8.251455008782316e-3 -4.204326322332869e-3c -3.439569038201009e-3,1.1175837270643806e-3 -5.321910049397249e-3,4.811885970581308e-3 -4.204326322332869e-3 8.251455008782316e-3c 1.1175837270643804e-3,3.439569038201009e-3 4.811885970581307e-3,5.32191004939725e-3 8.251455008782315e-3 4.20432632233287e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9019717408986547,0.6406282562063239 c 2.125770572260009e-3,2.925872182728337e-3 6.220936155789149e-3,3.5744826917119043e-3 9.146808338517486e-3 1.4487121194518959e-3c 2.925872182728337e-3,-2.125770572260009e-3 3.5744826917119043e-3,-6.220936155789149e-3 1.4487121194518963e-3 -9.146808338517484e-3c -2.1257705722600084e-3,-2.9258721827283376e-3 -6.220936155789149e-3,-3.5744826917119043e-3 -9.146808338517484e-3 -1.4487121194518967e-3c -2.9258721827283376e-3,2.1257705722600084e-3 -3.5744826917119047e-3,6.220936155789149e-3 -1.4487121194518972e-3 9.146808338517484e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8823265655840948,0.6329301599872583 c -2.1257705722600093e-3,2.9258721827283367e-3 -1.4771600632764443e-3,7.0210377662574775e-3 1.448712119451892e-3 9.146808338517486e-3c 2.9258721827283367e-3,2.1257705722600093e-3 7.021037766257477e-3,1.4771600632764448e-3 9.146808338517486e-3 -1.448712119451891e-3c 2.1257705722600097e-3,-2.9258721827283363e-3 1.4771600632764448e-3,-7.021037766257477e-3 -1.4487121194518902e-3 -9.146808338517486e-3c -2.9258721827283363e-3,-2.1257705722600097e-3 -7.021037766257477e-3,-1.4771600632764452e-3 -9.146808338517484e-3 1.4487121194518902e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8835771971266302,0.6118676454345607 c -3.439569038201009e-3,-1.1175837270643817e-3 -7.133871281717937e-3,7.647572841318574e-4 -8.25145500878232e-3 4.204326322332865e-3c -1.117583727064382e-3,3.439569038201009e-3 7.64757284131857e-4,7.133871281717937e-3 4.204326322332865e-3 8.251455008782318e-3c 3.439569038201009e-3,1.1175837270643821e-3 7.133871281717937e-3,-7.647572841318565e-4 8.251455008782318e-3 -4.204326322332865e-3c 1.1175837270643823e-3,-3.439569038201009e-3 -7.647572841318561e-4,-7.133871281717937e-3 -4.204326322332863e-3 -8.251455008782318e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9039953052418794,0.60654839177152 c 0.0,-3.6165769113279105e-3 -2.931814860192018e-3,-6.548391771519929e-3 -6.548391771519928e-3 -6.548391771519929e-3c -3.6165769113279105e-3,-2.2145146691639735e-19 -6.548391771519929e-3,2.931814860192018e-3 -6.548391771519929e-3 6.548391771519927e-3c -4.429029338327947e-19,3.6165769113279105e-3 2.9318148601920175e-3,6.548391771519929e-3 6.548391771519927e-3 6.548391771519929e-3c 3.6165769113279105e-3,6.64354400749192e-19 6.548391771519929e-3,-2.931814860192017e-3 6.548391771519929e-3 -6.548391771519926e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(177,98,98)" stroke-opacity="1.0" fill="rgb(177,98,98)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip338)"><clipPath id="myClip338"><path d="M 1.3603240504292669,1.0323197983663244 l -9.828700801013883e-3,-0.11861477889739928 l -4.7810310428932246e-2,-0.10899652906860802 l -8.061093106847358e-2,-8.756681405982837e-2 l -0.10467610651927528,-5.664787600855055e-2 l -0.11739800161157182,-1.9590261609385217e-2 l -0.11739800161157173,1.9590261609385217e-2 l -0.10467610651927521,5.6647876008550646e-2 l -8.061093106847358e-2,8.756681405982852e-2 l -4.781031042893214e-2,0.10899652906860802 l -9.828700801013883e-3,0.1186147788973993 l 2.9218001066700708e-2,0.11537927693472969 l 6.509847915483992e-2,9.964064002223996e-2 l 9.392452691957329e-2,7.310439367951241e-2 l 0.11257239480337573,3.864615195006715e-2 h 0.11902129696955405 l 0.11257239480337572,-3.8646151950067216e-2 l 9.392452691957334e-2,-7.31043936795123e-2 l 6.509847915483996e-2,-9.964064002224017e-2 Z" /></clipPath><path d="M 1.3603240504292669,1.3615558574150863 l -4.000400571127678e-17,-0.7181867222303208 h -0.3603240504292666 l -4.000400571127678e-17,0.7181867222303208 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(255,89,89)" stroke-opacity="1.0" fill="rgb(255,89,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip339)"><clipPath id="myClip339"><path d="M 1.3603240504292669,1.0323197983663244 l -9.828700801013883e-3,-0.11861477889739928 l -4.7810310428932246e-2,-0.10899652906860802 l -8.061093106847358e-2,-8.756681405982837e-2 l -0.10467610651927528,-5.664787600855055e-2 l -0.11739800161157182,-1.9590261609385217e-2 l -0.11739800161157173,1.9590261609385217e-2 l -0.10467610651927521,5.6647876008550646e-2 l -8.061093106847358e-2,8.756681405982852e-2 l -4.781031042893214e-2,0.10899652906860802 l -9.828700801013883e-3,0.1186147788973993 l 2.9218001066700708e-2,0.11537927693472969 l 6.509847915483992e-2,9.964064002223996e-2 l 9.392452691957329e-2,7.310439367951241e-2 l 0.11257239480337573,3.864615195006715e-2 h 0.11902129696955405 l 0.11257239480337572,-3.8646151950067216e-2 l 9.392452691957334e-2,-7.31043936795123e-2 l 6.509847915483996e-2,-9.964064002224017e-2 Z" /></clipPath><path d="M 1.0,1.3615558574150863 l -4.000400571127678e-17,-0.7181867222303208 h -0.3603240504292666 l -4.000400571127678e-17,0.7181867222303208 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.154922133212697,0.6733758509819605 c 7.114560120555241e-3,-2.0724005633945216e-2 -3.918075317157588e-3,-4.32916221305924e-2 -2.4642080951102804e-2 -5.040618225114764e-2c -2.0724005633945216e-2,-7.114560120555242e-3 -4.32916221305924e-2,3.918075317157588e-3 -5.040618225114764e-2 2.4642080951102797e-2c -7.1145601205552435e-3,2.0724005633945216e-2 3.918075317157585e-3,4.32916221305924e-2 2.4642080951102797e-2 5.040618225114764e-2c 2.0724005633945216e-2,7.114560120555244e-3 4.32916221305924e-2,-3.918075317157585e-3 5.040618225114764e-2 -2.464208095110279e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2533822837707047,0.7415098075669929 c 1.3458147258273776e-2,-1.7291027950917384e-2 1.0350983537563752e-2,-4.22181596080881e-2 -6.9400444133536285e-3 -5.567630686636187e-2c -1.7291027950917384e-2,-1.3458147258273778e-2 -4.22181596080881e-2,-1.0350983537563753e-2 -5.567630686636187e-2 6.9400444133536215e-3c -1.3458147258273778e-2,1.7291027950917384e-2 -1.0350983537563755e-2,4.22181596080881e-2 6.9400444133536215e-3 5.5676306866361866e-2c 1.729102795091738e-2,1.345814725827378e-2 4.22181596080881e-2,1.0350983537563757e-2 5.5676306866361866e-2 -6.940044413353615e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3243845322509338,0.8379220370743973 c 1.834333531588768e-2,-1.1984299091465294e-2 2.349835271393204e-2,-3.656970440980567e-2 1.1514053622466745e-2 -5.491303972569334e-2c -1.1984299091465292e-2,-1.834333531588768e-2 -3.656970440980566e-2,-2.349835271393204e-2 -5.4913039725693336e-2 -1.1514053622466748e-2c -1.834333531588768e-2,1.1984299091465292e-2 -2.349835271393204e-2,3.656970440980566e-2 -1.1514053622466752e-2 5.4913039725693336e-2c 1.198429909146529e-2,1.8343335315887683e-2 3.6569704409805656e-2,2.3498352713932042e-2 5.491303972569333e-2 1.1514053622466752e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.360234683317153,0.9521647784471684 c 2.1240738365851677e-2,-5.378885469892873e-3 3.40993107592359e-2,-2.6958354301291766e-2 2.8720425289343023e-2 -4.819909266714344e-2c -5.378885469892872e-3,-2.1240738365851677e-2 -2.695835430129176e-2,-3.40993107592359e-2 -4.819909266714343e-2 -2.8720425289343023e-2c -2.1240738365851677e-2,5.37888546989287e-3 -3.40993107592359e-2,2.695835430129176e-2 -2.8720425289343023e-2 4.819909266714343e-2c 5.378885469892869e-3,2.1240738365851677e-2 2.695835430129176e-2,3.40993107592359e-2 4.819909266714342e-2 2.8720425289343026e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3570478168289286,1.0718580579987909 c 2.183637782986168e-2,1.8094138543498957e-3 4.10050793784545e-2,-1.4425648202266772e-2 4.2814493232804396e-2 -3.626202603212845e-2c 1.809413854349897e-3,-2.183637782986168e-2 -1.4425648202266769e-2,-4.10050793784545e-2 -3.626202603212844e-2 -4.2814493232804396e-2c -2.183637782986168e-2,-1.8094138543498983e-3 -4.10050793784545e-2,1.4425648202266769e-2 -4.2814493232804396e-2 3.6262026032128435e-2c -1.8094138543498996e-3,2.183637782986168e-2 1.4425648202266765e-2,4.10050793784545e-2 3.6262026032128435e-2 4.2814493232804396e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3151692792195884,1.1840312516572566 c 2.0065706929693655e-2,8.801635111525138e-3 4.346731138765493e-2,-3.2969928353158984e-4 5.226894649918007e-2 -2.039540621322524e-2c 8.80163511152514e-3,-2.0065706929693655e-2 -3.2969928353158637e-4,-4.346731138765493e-2 -2.0395406213225234e-2 -5.226894649918006e-2c -2.0065706929693655e-2,-8.80163511152514e-3 -4.346731138765493e-2,3.2969928353158637e-4 -5.226894649918006e-2 2.0395406213225234e-2c -8.801635111525142e-3,2.0065706929693655e-2 3.296992835315829e-4,4.346731138765493e-2 2.0395406213225227e-2 5.2268946499180055e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.239137259851568,1.276528653343237 c 1.612060533217065e-2,1.4840062632926433e-2 4.121918574317425e-2,1.3801977668385725e-2 5.605924837610068e-2 -2.3186276637849196e-3c 1.4840062632926435e-2,-1.612060533217065e-2 1.3801977668385727e-2,-4.121918574317425e-2 -2.318627663784916e-3 -5.605924837610067e-2c -1.6120605332170645e-2,-1.4840062632926435e-2 -4.121918574317425e-2,-1.3801977668385729e-2 -5.605924837610067e-2 2.3186276637849126e-3c -1.4840062632926436e-2,1.6120605332170645e-2 -1.3801977668385729e-2,4.121918574317424e-2 2.318627663784909e-3 5.605924837610067e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1371910077817275,1.33932673433899 c 1.0428586009942717e-2,1.9270339100753136e-2 3.4504321741855457e-2,2.6437996180184276e-2 5.377466084260859e-2 1.6009410170241562e-2c 1.9270339100753136e-2,-1.0428586009942715e-2 2.643799618018428e-2,-3.4504321741855457e-2 1.6009410170241566e-2 -5.377466084260858e-2c -1.0428586009942715e-2,-1.9270339100753136e-2 -3.450432174185545e-2,-2.643799618018428e-2 -5.377466084260858e-2 -1.6009410170241566e-2c -1.927033910075314e-2,1.0428586009942713e-2 -2.6437996180184282e-2,3.450432174185545e-2 -1.600941017024157e-2 5.3774660842608575e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0203779812809197,1.365620348156002 c 3.6064675773530464e-3,2.161237531689401e-2 2.405037909009168e-2,3.6209047578081896e-2 4.566275440698569e-2 3.2602580000728854e-2c 2.161237531689401e-2,-3.606467577353045e-3 3.6209047578081896e-2,-2.405037909009168e-2 3.2602580000728854e-2 -4.566275440698568e-2c -3.6064675773530438e-3,-2.161237531689401e-2 -2.405037909009168e-2,-3.62090475780819e-2 -4.5662754406985674e-2 -3.2602580000728854e-2c -2.161237531689401e-2,3.6064675773530425e-3 -3.62090475780819e-2,2.4050379090091674e-2 -3.2602580000728854e-2 4.5662754406985674e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9013566843113656,1.3525601737497452 c -3.60646757735306e-3,2.161237531689401e-2 1.0990204683834813e-2,4.205628682963266e-2 3.260258000072882e-2 4.566275440698572e-2c 2.161237531689401e-2,3.606467577353061e-3 4.205628682963266e-2,-1.099020468383481e-2 4.5662754406985716e-2 -3.260258000072881e-2c 3.6064675773530624e-3,-2.161237531689401e-2 -1.099020468383481e-2,-4.205628682963266e-2 -3.2602580000728805e-2 -4.5662754406985716e-2c -2.161237531689401e-2,-3.6064675773530637e-3 -4.205628682963266e-2,1.0990204683834806e-2 -4.5662754406985716e-2 3.2602580000728805e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7930249212054221,1.3015614836666227 c -1.0428586009942729e-2,1.9270339100753132e-2 -3.260928930511605e-3,4.334607483266588e-2 1.6009410170241524e-2 5.377466084260861e-2c 1.9270339100753132e-2,1.042858600994273e-2 4.334607483266588e-2,3.2609289305116067e-3 5.37746608426086e-2 -1.6009410170241517e-2c 1.042858600994273e-2,-1.9270339100753132e-2 3.26092893051161e-3,-4.334607483266588e-2 -1.6009410170241517e-2 -5.37746608426086e-2c -1.927033910075313e-2,-1.0428586009942733e-2 -4.334607483266588e-2,-3.260928930511612e-3 -5.3774660842608596e-2 1.600941017024151e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7071221194361161,1.218150777303351 c -1.612060533217066e-2,1.4840062632926424e-2 -1.7158690296711385e-2,3.993864304393003e-2 -2.3186276637849647e-3 5.6059248376100684e-2c 1.4840062632926422e-2,1.612060533217066e-2 3.993864304393002e-2,1.715869029671139e-2 5.605924837610068e-2 2.318627663784968e-3c 1.6120605332170662e-2,-1.4840062632926422e-2 1.715869029671139e-2,-3.993864304393002e-2 2.318627663784968e-3 -5.605924837610067e-2c -1.484006263292642e-2,-1.6120605332170662e-2 -3.993864304393002e-2,-1.715869029671139e-2 -5.605924837610067e-2 -2.3186276637849716e-3Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6529571804944567,1.1113668989448513 c -2.006570692969366e-2,8.801635111525128e-3 -2.9197041324750407e-2,3.22032395694864e-2 -2.0395406213225283e-2 5.2268946499180055e-2c 8.801635111525126e-3,2.006570692969366e-2 3.22032395694864e-2,2.919704132475041e-2 5.2268946499180055e-2 2.0395406213225286e-2c 2.006570692969366e-2,-8.801635111525126e-3 2.919704132475041e-2,-3.22032395694864e-2 2.0395406213225286e-2 -5.2268946499180055e-2c -8.801635111525125e-3,-2.006570692969366e-2 -3.22032395694864e-2,-2.919704132475041e-2 -5.226894649918004e-2 -2.039540621322529e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6363997159703955,0.9927815387338577 c -2.1836377829861683e-2,1.809413854349885e-3 -3.807143988647837e-2,2.09781154029427e-2 -3.626202603212848e-2 4.2814493232804375e-2c 1.8094138543498838e-3,2.1836377829861683e-2 2.097811540294269e-2,3.807143988647837e-2 4.281449323280437e-2 3.626202603212848e-2c 2.1836377829861683e-2,-1.8094138543498825e-3 3.807143988647837e-2,-2.097811540294269e-2 3.626202603212848e-2 -4.281449323280436e-2c -1.8094138543498812e-3,-2.1836377829861683e-2 -2.097811540294269e-2,-3.807143988647837e-2 -4.281449323280436e-2 -3.626202603212848e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6592439840606474,0.8752452604906817 c -2.1240738365851677e-2,-5.378885469892884e-3 -4.282020719725058e-2,7.479686923491319e-3 -4.8199092667143464e-2 2.8720425289342995e-2c -5.378885469892885e-3,2.1240738365851677e-2 7.479686923491316e-3,4.282020719725058e-2 2.8720425289342988e-2 4.8199092667143464e-2c 2.1240738365851677e-2,5.378885469892887e-3 4.282020719725058e-2,-7.479686923491316e-3 4.8199092667143464e-2 -2.8720425289342988e-2c 5.3788854698928875e-3,-2.1240738365851677e-2 -7.479686923491312e-3,-4.2820207197250576e-2 -2.872042528934298e-2 -4.8199092667143464e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7190144538522928,0.771494943726237 c -1.8343335315887676e-2,-1.1984299091465306e-2 -4.292874063422805e-2,-6.829281693420966e-3 -5.491303972569336e-2 1.1514053622466706e-2c -1.1984299091465308e-2,1.8343335315887676e-2 -6.829281693420968e-3,4.292874063422805e-2 1.15140536224667e-2 5.4913039725693356e-2c 1.8343335315887676e-2,1.1984299091465308e-2 4.292874063422805e-2,6.8292816934209695e-3 5.491303972569335e-2 -1.15140536224667e-2c 1.198429909146531e-2,-1.8343335315887672e-2 6.829281693420971e-3,-4.292874063422805e-2 -1.1514053622466693e-2 -5.491303972569335e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8092340675090107,0.6927735451139845 c -1.3458147258273767e-2,-1.729102795091739e-2 -3.8385278915444486e-2,-2.0398191671627434e-2 -5.567630686636187e-2 -6.94004441335367e-3c -1.729102795091739e-2,1.3458147258273765e-2 -2.0398191671627437e-2,3.8385278915444486e-2 -6.94004441335367e-3 5.5676306866361866e-2c 1.3458147258273765e-2,1.729102795091739e-2 3.838527891544448e-2,2.0398191671627437e-2 5.5676306866361866e-2 6.940044413353674e-3c 1.7291027950917394e-2,-1.3458147258273764e-2 2.0398191671627437e-2,-3.838527891544448e-2 6.940044413353677e-3 -5.567630686636186e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9201261299895535,0.6476117496819156 c -7.114560120555232e-3,-2.0724005633945226e-2 -2.9682176617202412e-2,-3.175664107165807e-2 -5.040618225114764e-2 -2.4642080951102846e-2c -2.0724005633945226e-2,7.114560120555231e-3 -3.175664107165808e-2,2.9682176617202412e-2 -2.4642080951102846e-2 5.040618225114763e-2c 7.11456012055523e-3,2.0724005633945226e-2 2.9682176617202412e-2,3.175664107165808e-2 5.040618225114763e-2 2.4642080951102846e-2c 2.0724005633945226e-2,-7.114560120555229e-3 3.175664107165808e-2,-2.9682176617202405e-2 2.4642080951102846e-2 -5.0406182251147624e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.039673765656518,0.6409035387225526 c 0.0,-2.191121574045558e-2 -1.7762549916062437e-2,-3.967376565651802e-2 -3.967376565651801e-2 -3.967376565651802e-2c -2.191121574045558e-2,-1.3416750110988013e-18 -3.967376565651802e-2,1.7762549916062433e-2 -3.967376565651802e-2 3.9673765656518006e-2c -2.6833500221976026e-18,2.191121574045558e-2 1.7762549916062433e-2,3.967376565651802e-2 3.9673765656518e-2 3.967376565651802e-2c 2.191121574045558e-2,4.025025033296404e-18 3.967376565651802e-2,-1.776254991606243e-2 3.967376565651802e-2 -3.9673765656518e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5000000000000001,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4,1.2285714285714286 c 0.0,9.467738568527889e-2 -7.675118574329254e-2,0.17142857142857146 -0.17142857142857143 0.17142857142857146c -9.467738568527889e-2,5.797317866555811e-18 -0.17142857142857146,-7.675118574329254e-2 -0.17142857142857146 -0.1714285714285714c -1.1594635733111623e-17,-9.467738568527889e-2 7.675118574329252e-2,-0.17142857142857146 0.17142857142857137 -0.17142857142857146c 9.467738568527889e-2,-1.7391953599667434e-17 0.17142857142857146,7.675118574329251e-2 0.17142857142857146 0.17142857142857137Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4,0.7714285714285716 c 0.0,-9.467738568527889e-2 -7.675118574329254e-2,-0.17142857142857146 -0.17142857142857143 -0.17142857142857146c -9.467738568527889e-2,-5.797317866555811e-18 -0.17142857142857146,7.675118574329254e-2 -0.17142857142857146 0.1714285714285714c -1.1594635733111623e-17,9.467738568527889e-2 7.675118574329252e-2,0.17142857142857146 0.17142857142857137 0.17142857142857146c 9.467738568527889e-2,1.7391953599667434e-17 0.17142857142857146,-7.675118574329251e-2 0.17142857142857146 -0.17142857142857137Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -5.7142857142857134e-2,1.2285714285714286 c 0.0,9.467738568527889e-2 -7.675118574329254e-2,0.17142857142857146 -0.17142857142857143 0.17142857142857146c -9.467738568527889e-2,5.797317866555811e-18 -0.17142857142857146,-7.675118574329254e-2 -0.17142857142857146 -0.1714285714285714c -1.1594635733111623e-17,-9.467738568527889e-2 7.675118574329252e-2,-0.17142857142857146 0.17142857142857137 -0.17142857142857146c 9.467738568527889e-2,-1.7391953599667434e-17 0.17142857142857146,7.675118574329251e-2 0.17142857142857146 0.17142857142857137Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -5.7142857142857134e-2,0.7714285714285716 c 0.0,-9.467738568527889e-2 -7.675118574329254e-2,-0.17142857142857146 -0.17142857142857143 -0.17142857142857146c -9.467738568527889e-2,-5.797317866555811e-18 -0.17142857142857146,7.675118574329254e-2 -0.17142857142857146 0.1714285714285714c -1.1594635733111623e-17,9.467738568527889e-2 7.675118574329252e-2,0.17142857142857146 0.17142857142857137 0.17142857142857146c 9.467738568527889e-2,1.7391953599667434e-17 0.17142857142857146,-7.675118574329251e-2 0.17142857142857146 -0.17142857142857137Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.283259256496066,-6.359980500191308e-2 l -0.28325925649606576,-0.2057998962955705 l -0.28325925649606565,0.20579989629557058 l 0.10819540835347265,0.3329912270874367 h 0.35012769628518614 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.3193243926138902,4.739727069389926e-2 c 6.1301992182611315e-2,-1.991822467844606e-2 9.485016425643411e-2,-8.576021963102515e-2 7.493193957798805e-2 -0.14706221181363643c -1.9918224678446058e-2,-6.1301992182611315e-2 -8.576021963102515e-2,-9.485016425643411e-2 -0.14706221181363643 -7.493193957798805e-2c -6.1301992182611315e-2,1.9918224678446055e-2 -9.485016425643411e-2,8.576021963102513e-2 -7.493193957798805e-2 0.14706221181363643c 1.991822467844605e-2,6.130199218261132e-2 8.576021963102512e-2,9.485016425643411e-2 0.14706221181363643 7.493193957798805e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.080644095977238,0.33799138751738056 c 3.788671474693414e-2,5.214658920372875e-2 0.11087312839348336,6.370650148043255e-2 0.1630197175972121 2.5819786733498426e-2c 5.214658920372875e-2,-3.788671474693414e-2 6.370650148043257e-2,-0.11087312839348334 2.581978673349844e-2 -0.1630197175972121c -3.7886714746934134e-2,-5.2146589203728756e-2 -0.11087312839348334,-6.370650148043257e-2 -0.16301971759721207 -2.581978673349844e-2c -5.2146589203728756e-2,3.7886714746934134e-2 -6.370650148043258e-2,0.11087312839348334 -2.5819786733498454e-2 0.16301971759721207Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7305163996920516,0.20079145665366682 c -3.788671474693415e-2,5.214658920372875e-2 -2.6326802470230365e-2,0.12513300285027798 2.581978673349837e-2 0.16301971759721212c 5.214658920372875e-2,3.788671474693415e-2 0.12513300285027798,2.6326802470230372e-2 0.16301971759721212 -2.581978673349837e-2c 3.7886714746934155e-2,-5.214658920372874e-2 2.6326802470230372e-2,-0.12513300285027798 -2.5819786733498357e-2 -0.16301971759721212c -5.214658920372874e-2,-3.7886714746934155e-2 -0.12513300285027795,-2.632680247023038e-2 -0.1630197175972121 2.5819786733498343e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7528058796217583,-0.17459688069772528 c -6.130199218261132e-2,-1.9918224678446072e-2 -0.12714398713519043,1.36299473953767e-2 -0.1470622118136365 7.493193957798801e-2c -1.9918224678446075e-2,6.130199218261132e-2 1.3629947395376693e-2,0.12714398713519043 7.4931939577988e-2 0.1470622118136365c 6.130199218261132e-2,1.991822467844608e-2 0.12714398713519043,-1.3629947395376686e-2 0.1470622118136365 -7.493193957798798e-2c 1.9918224678446082e-2,-6.1301992182611315e-2 -1.362994739537668e-2,-0.12714398713519043 -7.493193957798798e-2 -0.1470622118136365Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.116709232095062,-0.2693997012974836 c 0.0,-6.445672905056538e-2 -5.22525030444967e-2,-0.11670923209506208 -0.11670923209506205 -0.11670923209506208c -6.445672905056538e-2,-3.946836345764155e-18 -0.11670923209506208,5.225250304449669e-2 -0.11670923209506208 0.11670923209506204c -7.89367269152831e-18,6.445672905056538e-2 5.225250304449668e-2,0.11670923209506208 0.11670923209506202 0.11670923209506208c 6.445672905056538e-2,1.1840509037292464e-17 0.11670923209506208,-5.2252503044496676e-2 0.11670923209506208 -0.11670923209506201Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1118439572277492,0.131717945410145 l -0.1118439572277493,0.1937194164380221 l -0.1118439572277493,-0.1937194164380221 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0745626381518327,6.71448065974709e-2 c 3.566275981494677e-2,-2.0589903979204505e-2 8.126455390938597e-2,-8.370940078189209e-3 0.10185445788859047 2.729181973675756e-2c 2.058990397920451e-2,3.566275981494677e-2 8.370940078189212e-3,8.126455390938597e-2 -2.7291819736757546e-2 0.10185445788859046c -3.566275981494677e-2,2.058990397920451e-2 -8.126455390938597e-2,8.370940078189216e-3 -0.10185445788859046 -2.7291819736757546e-2c -2.0589903979204512e-2,-3.5662759814946765e-2 -8.37094007818922e-3,-8.126455390938597e-2 2.7291819736757532e-2 -0.10185445788859046Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8508747236963343,0.19629108422281905 c -3.566275981494679e-2,-2.0589903979204488e-2 -4.7881723715962124e-2,-6.619169807364368e-2 -2.7291819736757643e-2 -0.10185445788859046c 2.0589903979204485e-2,-3.566275981494679e-2 6.619169807364367e-2,-4.788172371596213e-2 0.10185445788859045 -2.729181973675765e-2c 3.566275981494679e-2,2.0589903979204485e-2 4.788172371596213e-2,6.619169807364367e-2 2.729181973675765e-2 0.10185445788859045c -2.058990397920448e-2,3.56627598149468e-2 -6.619169807364367e-2,4.788172371596214e-2 -0.10185445788859043 2.7291819736757657e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.074562638151833,0.3254373618481671 c 0.0,4.117980795840899e-2 -3.338283019342387e-2,7.456263815183287e-2 -7.456263815183285e-2 7.456263815183287e-2c -4.117980795840899e-2,2.5215360002884136e-18 -7.456263815183287e-2,-3.338283019342386e-2 -7.456263815183287e-2 -7.456263815183284e-2c -5.043072000576827e-18,-4.117980795840899e-2 3.338283019342386e-2,-7.456263815183287e-2 7.456263815183284e-2 -7.456263815183287e-2c 4.117980795840899e-2,-7.56460800086524e-18 7.456263815183287e-2,3.3382830193423856e-2 7.456263815183287e-2 7.456263815183282e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.1118439572277492,-0.13171794541014506 l -0.1118439572277493,-0.1937194164380221 l -0.1118439572277493,0.1937194164380221 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0745626381518327,-6.714480659747095e-2 c 3.566275981494677e-2,2.0589903979204505e-2 8.126455390938597e-2,8.370940078189209e-3 0.10185445788859047 -2.729181973675756e-2c 2.058990397920451e-2,-3.566275981494677e-2 8.370940078189212e-3,-8.126455390938597e-2 -2.7291819736757546e-2 -0.10185445788859046c -3.566275981494677e-2,-2.058990397920451e-2 -8.126455390938597e-2,-8.370940078189216e-3 -0.10185445788859046 2.7291819736757546e-2c -2.0589903979204512e-2,3.5662759814946765e-2 -8.37094007818922e-3,8.126455390938597e-2 2.7291819736757532e-2 0.10185445788859046Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8508747236963343,-0.1962910842228191 c -3.566275981494679e-2,2.0589903979204488e-2 -4.7881723715962124e-2,6.619169807364368e-2 -2.7291819736757643e-2 0.10185445788859046c 2.0589903979204485e-2,3.566275981494679e-2 6.619169807364367e-2,4.788172371596213e-2 0.10185445788859045 2.729181973675765e-2c 3.566275981494679e-2,-2.0589903979204485e-2 4.788172371596213e-2,-6.619169807364367e-2 2.729181973675765e-2 -0.10185445788859045c -2.058990397920448e-2,-3.56627598149468e-2 -6.619169807364367e-2,-4.788172371596214e-2 -0.10185445788859043 -2.7291819736757657e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.074562638151833,-0.3254373618481672 c 0.0,-4.117980795840899e-2 -3.338283019342387e-2,-7.456263815183287e-2 -7.456263815183285e-2 -7.456263815183287e-2c -4.117980795840899e-2,-2.5215360002884136e-18 -7.456263815183287e-2,3.338283019342386e-2 -7.456263815183287e-2 7.456263815183284e-2c -5.043072000576827e-18,4.117980795840899e-2 3.338283019342386e-2,7.456263815183287e-2 7.456263815183284e-2 7.456263815183287e-2c 4.117980795840899e-2,7.56460800086524e-18 7.456263815183287e-2,-3.3382830193423856e-2 7.456263815183287e-2 -7.456263815183282e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.30846115979107186,8.606013521095947e-2 l -6.109451572448527e-2,-0.26767256276537765 l -0.24736664406658662,-0.1191254973220641 l -0.24736664406658654,0.11912549732206407 l -6.1094515724485314e-2,0.2676725627653777 l 0.17118302905915728,0.21465672892114546 h 0.274556261463829 Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3044276537529725,-0.11006018458070298 c 3.9517212610570444e-2,-3.1513925459738065e-2 4.600515874706747e-2,-8.909604004953053e-2 1.449123328732941e-2 -0.12861325266010099c -3.1513925459738065e-2,-3.9517212610570444e-2 -8.909604004953053e-2,-4.600515874706747e-2 -0.12861325266010096 -1.4491233287329416e-2c -3.951721261057045e-2,3.151392545973806e-2 -4.600515874706747e-2,8.909604004953053e-2 -1.4491233287329423e-2 0.12861325266010096c 3.151392545973806e-2,3.951721261057045e-2 8.909604004953053e-2,4.6005158747067475e-2 0.12861325266010096 1.449123328732943e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2880963212162435,0.1752843227994188 c 4.927715812114801e-2,1.1247189777643624e-2 9.834183638564409e-2,-1.958219089248279e-2 0.10958902616328771 -6.88593490136308e-2c 1.1247189777643628e-2,-4.927715812114801e-2 -1.958219089248279e-2,-9.834183638564409e-2 -6.885934901363078e-2 -0.10958902616328771c -4.927715812114801e-2,-1.124718977764363e-2 -9.834183638564409e-2,1.958219089248278e-2 -0.10958902616328771 6.885934901363078e-2c -1.1247189777643633e-2,4.927715812114801e-2 1.9582190892482775e-2,9.834183638564409e-2 6.885934901363075e-2 0.10958902616328771Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 5.48225827097189e-2,0.3404253632394597 c 2.1930398495661668e-2,4.553894171159926e-2 7.662510541795099e-2,6.467744741050255e-2 0.12216404712955024 4.2747048914840886e-2c 4.553894171159926e-2,-2.1930398495661665e-2 6.467744741050255e-2,-7.662510541795098e-2 4.274704891484089e-2 -0.12216404712955023c -2.193039849566166e-2,-4.553894171159926e-2 -7.662510541795098e-2,-6.467744741050256e-2 -0.12216404712955022 -4.27470489148409e-2c -4.5538941711599265e-2,2.193039849566166e-2 -6.467744741050256e-2,7.662510541795098e-2 -4.27470489148409e-2 0.12216404712955022Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2197336787541101,0.2610083650247503 c -2.1930398495661682e-2,4.5538941711599244e-2 -2.7918927967584134e-3,0.10023364863388858 4.274704891484083e-2 0.12216404712955026c 4.5538941711599244e-2,2.1930398495661686e-2 0.10023364863388858,2.7918927967584134e-3 0.12216404712955026 -4.274704891484082e-2c 2.193039849566169e-2,-4.5538941711599244e-2 2.7918927967584203e-3,-0.10023364863388858 -4.27470489148408e-2 -0.12216404712955024c -4.553894171159924e-2,-2.193039849566169e-2 -0.10023364863388858,-2.7918927967584273e-3 -0.12216404712955024 4.27470489148408e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3288259983659003,-3.164052377499796e-3 c -4.9277158121148e-2,1.1247189777643609e-2 -8.010653879127444e-2,6.0311868042139664e-2 -6.885934901363083e-2 0.10958902616328767c 1.1247189777643605e-2,4.9277158121148e-2 6.031186804213966e-2,8.010653879127444e-2 0.10958902616328764 6.885934901363083e-2c 4.9277158121148e-2,-1.1247189777643603e-2 8.010653879127444e-2,-6.031186804213965e-2 6.885934901363083e-2 -0.10958902616328764c -1.12471897776436e-2,-4.9277158121148e-2 -6.0311868042139644e-2,-8.010653879127444e-2 -0.10958902616328761 -6.885934901363083e-2Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.19030563438020076,-0.25316467052813335 c -3.9517212610570424e-2,-3.1513925459738065e-2 -9.709932720036288e-2,-2.5025979323241083e-2 -0.12861325266010093 1.4491233287329333e-2c -3.1513925459738065e-2,3.9517212610570424e-2 -2.5025979323241083e-2,9.709932720036288e-2 1.449123328732932e-2 0.12861325266010093c 3.951721261057042e-2,3.151392545973807e-2 9.709932720036288e-2,2.502597932324109e-2 0.12861325266010093 -1.449123328732932e-2c 3.151392545973807e-2,-3.951721261057042e-2 2.5025979323241097e-2,-9.709932720036288e-2 -1.4491233287329305e-2 -0.12861325266010093Z" /></g></g><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.151875382127635e-2,-0.3007379248764822 c 0.0,-5.054441205900958e-2 -4.0974341762266754e-2,-9.151875382127635e-2 -9.151875382127633e-2 -9.151875382127635e-2c -5.054441205900958e-2,-3.094952622142548e-18 -9.151875382127635e-2,4.0974341762266754e-2 -9.151875382127635e-2 9.151875382127632e-2c -6.189905244285096e-18,5.054441205900958e-2 4.097434176226675e-2,9.151875382127635e-2 9.15187538212763e-2 9.151875382127635e-2c 5.054441205900958e-2,9.284857866427644e-18 9.151875382127635e-2,-4.097434176226674e-2 9.151875382127635e-2 -9.151875382127629e-2Z" /></g></g></g></svg>
− diagrams/fdMultTableEx.svg

file too large to diff

− diagrams/grid100.svg

file too large to diff

− diagrams/grid100Big.svg

file too large to diff

− diagrams/iterTrailEx.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="470.94010767584865" font-size="1" viewBox="0 0 200 471"><g><g transform="matrix(199.9999999999993,0.0,0.0,199.9999999999993,0.0,0.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,2.3547005383792516 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 " /></g></g><g transform="matrix(199.9999999999993,0.0,0.0,199.9999999999993,0.0,0.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,1.7660254037844387 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.8518518518518493e-2,-3.207501495497922e-2 l -3.7037037037037035e-2,-3.122502256758253e-17 l 1.8518518518518535e-2,-3.207501495497919e-2 l -1.8518518518518493e-2,-3.207501495497922e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.8518518518518493e-2,3.207501495497922e-2 l 1.8518518518518535e-2,3.207501495497919e-2 l -3.7037037037037035e-2,3.122502256758253e-17 l -1.8518518518518493e-2,3.207501495497922e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 " /></g></g><g transform="matrix(199.9999999999993,0.0,0.0,199.9999999999993,0.0,0.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,1.1773502691896258 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l -5.5555555555555525e-2,-9.622504486493764e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l -5.5555555555555525e-2,9.622504486493764e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 " /></g></g><g transform="matrix(199.9999999999993,0.0,0.0,199.9999999999993,0.0,0.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.5886751345948129 h 0.3333333333333333 l 0.16666666666666669,-0.28867513459481287 l 0.16666666666666669,0.28867513459481287 h 0.3333333333333333 " /></g></g><g transform="matrix(199.9999999999993,0.0,0.0,199.9999999999993,0.0,0.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/kochD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="52.48638810814773" font-size="1" viewBox="0 0 400 52"><g><g transform="matrix(165.2892561983468,0.0,0.0,165.2892561983468,200.0,26.24319405407386)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.999999999999809e-2,0.14433756729740646 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 " /></g></g><g transform="matrix(165.2892561983468,0.0,0.0,165.2892561983468,200.0,26.24319405407386)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1000000000000019,0.14433756729740646 h 0.3333333333333333 l 0.16666666666666669,-0.28867513459481287 l 0.16666666666666669,0.28867513459481287 h 0.3333333333333333 " /></g></g></g></svg>
− diagrams/levyD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="151.39442231075705" font-size="1" viewBox="0 0 400 151"><g><g transform="matrix(115.9000362187613,0.0,0.0,115.9000362187613,200.0,75.69721115537853)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.999999999999942e-2,0.37500000000000044 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.1249999999999934e-2,3.125000000000003e-2 l -3.125000000000003e-2,-3.1249999999999934e-2 l -3.1250000000000014e-2,-3.124999999999995e-2 l 3.124999999999995e-2,-3.1250000000000014e-2 l -3.125000000000001e-2,-3.1249999999999965e-2 l 3.1249999999999965e-2,-3.125000000000001e-2 l 3.1249999999999962e-2,-3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999962e-2 l -3.125e-2,-3.1249999999999962e-2 l 3.1249999999999962e-2,-3.125e-2 l 3.1249999999999955e-2,-3.125e-2 l 3.125e-2,3.1249999999999955e-2 l 3.1249999999999955e-2,-3.125e-2 l 3.125e-2,3.1249999999999955e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.125000000000001e-2,-3.1249999999999944e-2 l 3.1249999999999944e-2,-3.125000000000001e-2 l 3.124999999999994e-2,-3.125000000000002e-2 l 3.125000000000002e-2,3.124999999999994e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.1250000000000035e-2,3.124999999999992e-2 l -3.124999999999992e-2,3.1250000000000035e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.125000000000001e-2,-3.1249999999999944e-2 l 3.1249999999999944e-2,-3.125000000000001e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 " /></g></g><g transform="matrix(115.9000362187613,0.0,0.0,115.9000362187613,200.0,75.69721115537853)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.56875,0.37500000000000044 l 0.4999999999999999,-0.5 l 0.5,0.4999999999999999 " /></g></g></g></svg>
− diagrams/plExample.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="101.8159535455558" font-size="1" viewBox="0 0 400 102"><g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M 1.9307627368790152,-4.320178357976168e-2 l -7.364818725667803e-2,-0.1941943099082857 l -0.15545882687829055,-0.13772450265866157 l -0.20165572274404525,-4.97036716101213e-2 l -0.20165572274404522,4.97036716101213e-2 l -0.15545882687829055,0.13772450265866157 l -7.364818725667789e-2,0.19419430990828587 l 2.503436450856772e-2,0.20617654105305527 l 0.11798184506169819,0.17092621133924255 l 0.18390110674656077,9.65187464917577e-2 h 0.20769084112437397 l 0.1839011067465605,-9.651874649175733e-2 l 0.11798184506169837,-0.17092621133924235 Z" /></clipPath><path d="M 1.9307627368790148,0.43672427376089906 l -4.782427086336291e-17,-0.8552439830611239 h -0.43076273687901373 l -4.782427086336291e-17,0.8552439830611239 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip2)"><clipPath id="myClip2"><path d="M 1.9307627368790152,-4.320178357976168e-2 l -7.364818725667803e-2,-0.1941943099082857 l -0.15545882687829055,-0.13772450265866157 l -0.20165572274404525,-4.97036716101213e-2 l -0.20165572274404522,4.97036716101213e-2 l -0.15545882687829055,0.13772450265866157 l -7.364818725667789e-2,0.19419430990828587 l 2.503436450856772e-2,0.20617654105305527 l 0.11798184506169819,0.17092621133924255 l 0.18390110674656077,9.65187464917577e-2 h 0.20769084112437397 l 0.1839011067465605,-9.651874649175733e-2 l 0.11798184506169837,-0.17092621133924235 Z" /></clipPath><path d="M 1.5000000000000009,0.43672427376089906 l -4.782427086336291e-17,-0.8552439830611239 h -0.43076273687901373 l -4.782427086336291e-17,0.8552439830611239 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7629560916595663,-0.34294768064945647 c 1.7768610586727355e-2,-3.385525891104342e-2 4.727805492775728e-3,-7.570467382604534e-2 -2.9127453418267682e-2 -9.34732844127727e-2c -3.385525891104342e-2,-1.776861058672736e-2 -7.570467382604533e-2,-4.7278054927757315e-3 -9.347328441277268e-2 2.9127453418267675e-2c -1.776861058672736e-2,3.385525891104342e-2 -4.727805492775735e-3,7.570467382604533e-2 2.9127453418267668e-2 9.347328441277268e-2c 3.385525891104342e-2,1.7768610586727362e-2 7.570467382604533e-2,4.7278054927757385e-3 9.347328441277267e-2 -2.912745341826766e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8964418313095694,-0.18042068970829983 c 3.1466646623006314e-2,-2.1719857928158504e-2 3.9367980020673266e-2,-6.4836038843974e-2 1.7648122092514762e-2 -9.630268546698031e-2c -2.17198579281585e-2,-3.1466646623006314e-2 -6.4836038843974e-2,-3.9367980020673266e-2 -9.63026854669803e-2 -1.764812209251477e-2c -3.1466646623006314e-2,2.17198579281585e-2 -3.9367980020673266e-2,6.4836038843974e-2 -1.7648122092514776e-2 9.630268546698029e-2c 2.1719857928158497e-2,3.146664662300632e-2 6.483603884397399e-2,3.9367980020673266e-2 9.630268546698029e-2 1.7648122092514776e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.9391075250485372,2.552373010459015e-2 c 3.7956053132154985e-2,-4.608699246595758e-3 6.498942476142491e-2,-3.911424872171937e-2 6.0380725514829155e-2 -7.707030185387435e-2c -4.608699246595755e-3,-3.7956053132154985e-2 -3.911424872171937e-2,-6.498942476142491e-2 -7.707030185387434e-2 -6.0380725514829155e-2c -3.7956053132154985e-2,4.608699246595753e-3 -6.498942476142491e-2,3.911424872171937e-2 -6.0380725514829155e-2 7.707030185387434e-2c 4.608699246595751e-3,3.7956053132154985e-2 3.911424872171936e-2,6.498942476142491e-2 7.707030185387433e-2 6.0380725514829155e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.881178976618221,0.22770619410938897 c 3.575018528875373e-2,1.355825689151526e-2 7.572257549680597e-2,-4.431855595115563e-3 8.928083238832121e-2 -4.0182040883869286e-2c 1.3558256891515262e-2,-3.575018528875373e-2 -4.431855595115559e-3,-7.572257549680596e-2 -4.018204088386927e-2 -8.928083238832121e-2c -3.575018528875373e-2,-1.3558256891515266e-2 -7.572257549680596e-2,4.431855595115556e-3 -8.928083238832121e-2 4.018204088386927e-2c -1.3558256891515267e-2,3.575018528875373e-2 4.4318555951155525e-3,7.572257549680596e-2 4.018204088386926e-2 8.928083238832121e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7359269183493184,0.3798091363654236 c 2.5354380832136477e-2,2.861917977048845e-2 6.910859674182898e-2,3.126582223867944e-2 9.772777651231743e-2 5.911441406542969e-3c 2.861917977048845e-2,-2.5354380832136474e-2 3.126582223867945e-2,-6.910859674182898e-2 5.911441406542976e-3 -9.772777651231743e-2c -2.5354380832136474e-2,-2.8619179770488452e-2 -6.910859674182897e-2,-3.126582223867945e-2 -9.772777651231741e-2 -5.911441406542983e-3c -2.8619179770488452e-2,2.535438083213647e-2 -3.126582223867945e-2,6.910859674182897e-2 -5.91144140654299e-3 9.77277765123174e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5366268463141728,0.44698760584100106 c 9.150193280289242e-3,3.7123793462547634e-2 4.666267132217454e-2,5.980087699159726e-2 8.378646478472217e-2 5.0650683711308014e-2c 3.7123793462547634e-2,-9.15019328028924e-3 5.980087699159726e-2,-4.666267132217454e-2 5.065068371130802e-2 -8.378646478472215e-2c -9.150193280289237e-3,-3.7123793462547634e-2 -4.666267132217453e-2,-5.980087699159726e-2 -8.378646478472215e-2 -5.065068371130802e-2c -3.7123793462547634e-2,9.150193280289235e-3 -5.980087699159726e-2,4.6662671322174526e-2 -5.065068371130803e-2 8.378646478472214e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3289360051897987,0.41385182476758686 c -9.150193280289235e-3,3.7123793462547634e-2 1.3526890248760384e-2,7.463627150443293e-2 5.0650683711308014e-2 8.378646478472217e-2c 3.7123793462547634e-2,9.150193280289237e-3 7.463627150443293e-2,-1.352689024876038e-2 8.378646478472217e-2 -5.0650683711308e-2c 9.15019328028924e-3,-3.7123793462547634e-2 -1.3526890248760377e-2,-7.463627150443293e-2 -5.0650683711308e-2 -8.378646478472217e-2c -3.7123793462547634e-2,-9.150193280289242e-3 -7.463627150443293e-2,1.3526890248760373e-2 -8.378646478472215e-2 5.065068371130799e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.160433863731823,0.2879928012596492 c -2.535438083213647e-2,2.8619179770488452e-2 -2.2707738363945476e-2,7.237339568018095e-2 5.911441406542969e-3 9.772777651231743e-2c 2.8619179770488452e-2,2.5354380832136474e-2 7.237339568018095e-2,2.270773836394548e-2 9.772777651231741e-2 -5.911441406542969e-3c 2.5354380832136474e-2,-2.861917977048845e-2 2.2707738363945483e-2,-7.237339568018095e-2 -5.911441406542962e-3 -9.77277765123174e-2c -2.861917977048845e-2,-2.5354380832136477e-2 -7.237339568018095e-2,-2.2707738363945486e-2 -9.77277765123174e-2 5.9114414065429555e-3Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0697222318773287,9.824332083719853e-2 c -3.575018528875373e-2,1.3558256891515267e-2 -5.3740297775384555e-2,5.353064709956751e-2 -4.018204088386929e-2 8.928083238832123e-2c 1.3558256891515266e-2,3.575018528875373e-2 5.35306470995675e-2,5.3740297775384555e-2 8.928083238832121e-2 4.018204088386929e-2c 3.575018528875373e-2,-1.3558256891515262e-2 5.3740297775384555e-2,-5.3530647099567494e-2 4.01820408838693e-2 -8.928083238832121e-2c -1.355825689151526e-2,-3.575018528875373e-2 -5.3530647099567494e-2,-5.374029777538456e-2 -8.92808323883212e-2 -4.01820408838693e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0775820512905097,-0.1119272972641133 c -3.795605313215499e-2,-4.60869924659575e-3 -7.246160260727862e-2,2.242467238267418e-2 -7.707030185387437e-2 6.038072551482916e-2c -4.6086992465957525e-3,3.795605313215499e-2 2.2424672382674177e-2,7.246160260727862e-2 6.038072551482915e-2 7.707030185387437e-2c 3.795605313215499e-2,4.608699246595754e-3 7.246160260727862e-2,-2.2424672382674173e-2 7.707030185387437e-2 -6.038072551482915e-2c 4.608699246595757e-3,-3.795605313215499e-2 -2.242467238267417e-2,-7.246160260727862e-2 -6.0380725514829134e-2 -7.707030185387435e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1822127320648979,-0.2943714972677949 c -3.146664662300632e-2,-2.17198579281585e-2 -7.458282753882182e-2,-1.3818524530491552e-2 -9.630268546698031e-2 1.7648122092514762e-2c -2.1719857928158504e-2,3.146664662300632e-2 -1.3818524530491556e-2,7.458282753882182e-2 1.7648122092514755e-2 9.630268546698031e-2c 3.146664662300632e-2,2.1719857928158504e-2 7.458282753882182e-2,1.3818524530491559e-2 9.630268546698031e-2 -1.7648122092514748e-2c 2.1719857928158507e-2,-3.1466646623006314e-2 1.3818524530491559e-2,-7.458282753882181e-2 -1.764812209251474e-2 -9.630268546698031e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.359644646171476,-0.40729351164396144 c -1.7768610586727362e-2,-3.385525891104342e-2 -5.961802550172929e-2,-4.689606400499505e-2 -9.34732844127727e-2 -2.912745341826769e-2c -3.385525891104342e-2,1.776861058672736e-2 -4.689606400499505e-2,5.961802550172928e-2 -2.9127453418267696e-2 9.34732844127727e-2c 1.776861058672736e-2,3.385525891104342e-2 5.9618025501729274e-2,4.689606400499505e-2 9.347328441277268e-2 2.9127453418267696e-2c 3.385525891104342e-2,-1.7768610586727355e-2 4.6896064004995054e-2,-5.9618025501729274e-2 2.9127453418267703e-2 -9.347328441277267e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5692302803747922,-0.42482426775683013 c 0.0,-3.8234828077507346e-2 -3.0995452297284027e-2,-6.923028037479138e-2 -6.923028037479137e-2 -6.923028037479138e-2c -3.8234828077507346e-2,-2.3412079910534363e-18 -6.923028037479138e-2,3.0995452297284024e-2 -6.923028037479138e-2 6.923028037479136e-2c -4.6824159821068726e-18,3.8234828077507346e-2 3.099545229728402e-2,6.923028037479138e-2 6.923028037479136e-2 6.923028037479138e-2c 3.8234828077507346e-2,7.023623973160309e-18 6.923028037479138e-2,-3.0995452297284017e-2 6.923028037479138e-2 -6.923028037479134e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,255,89)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip16)"><clipPath id="myClip16"><path d="M 0.48988828547771046,1.6573878170719536e-2 l -4.5571012860801027e-4,-2.987943343828237e-2 l -2.2764314549423353e-3,-2.979607481103866e-2 l -4.088684306747355e-3,-2.9601872828485372e-2 l -5.885726984385914e-3,-2.929754993475282e-2 l -7.660874371066636e-3,-2.8884238230993696e-2 l -9.407522801919215e-3,-2.836347526389231e-2 l -1.1119174630060541e-2,-2.7737198305890283e-2 l -1.2789462398268248e-2,-2.700773714840516e-2 l -1.441217252633981e-2,-2.6177805434854134e-2 l -1.5981268426018862e-2,-2.525049056572163e-2 l -1.7490912957499938e-2,-2.4229242213227035e-2 l -1.8935490143972535e-2,-2.3117859488317363e-2 l -2.0309626063422098e-2,-2.1920476807725475e-2 l -2.160820883997541e-2,-2.0641548513667087e-2 l -2.2826407660412256e-2,-1.9285832303396606e-2 l -2.3959690745109154e-2,-1.78583715302599e-2 l -2.500384220655638e-2,-1.636447644208906e-2 l -2.595497773273785e-2,-1.4809704426731298e-2 l -2.6809559037025e-2,-1.3199839338201654e-2 l -2.7564407020836883e-2,-1.154086998036551e-2 l -2.8216713600095113e-2,-9.838967828195776e-3 l -2.8764052151481267e-2,-8.100464069479523e-3 l -2.9204386539634895e-2,-6.331826052384769e-3 l -2.9536078691710703e-2,-4.539633226499161e-3 l -2.9757894691117476e-2,-2.7305526668472526e-3 l -2.9869009367768432e-2,-9.113142719312263e-4 l -2.9869009367768304e-2,9.11314271931651e-4 l -2.975789469111743e-2,2.730552666847819e-3 l -2.9536078691710835e-2,4.539633226499798e-3 l -2.9204386539634666e-2,6.331826052385123e-3 l -2.876405215148114e-2,8.100464069480019e-3 l -2.8216713600094975e-2,9.83896782819627e-3 l -2.756440702083656e-2,1.1540869980365935e-2 l -2.680955903702465e-2,1.3199839338202008e-2 l -2.595497773273757e-2,1.4809704426731721e-2 l -2.500384220655613e-2,1.6364476442089413e-2 l -2.3959690745108696e-2,1.785837153026018e-2 l -2.282640766041183e-2,1.928583230339689e-2 l -2.1608208839975055e-2,2.06415485136673e-2 l -2.0309626063421814e-2,2.1920476807725686e-2 l -1.8935490143971972e-2,2.3117859488317714e-2 l -1.749091295749951e-2,2.4229242213227104e-2 l -1.5981268426018505e-2,2.5250490565721772e-2 l -1.4412172526339457e-2,2.617780543485424e-2 l -1.2789462398267752e-2,2.70077371484053e-2 l -1.1119174630060116e-2,2.773719830589035e-2 l -9.40752280191879e-3,2.8363475263892345e-2 l -7.660874371066212e-3,2.8884238230993717e-2 l -5.885726984385489e-3,2.9297549934752802e-2 l -4.088684306747002e-3,2.9601872828485327e-2 l -2.2764314549418405e-3,2.97960748110386e-2 l -4.5571012860765633e-4,2.987943343828207e-2 l 1.3667064693359684e-3,2.985163861064825e-2 l 3.1840388294481644e-3,2.9712793726720213e-2 l 4.989526355986359e-3,2.9463415298586364e-2 l 6.776452516767284e-3,2.910443103037825e-2 l 8.538169829106945e-3,2.863717636715251e-2 l 1.0268124588893512e-2,2.806338952694453e-2 l 1.1959881250796674e-2,2.7385205034487072e-2 l 1.3607146368919694e-2,2.6605145780635546e-2 l 1.520379200882935e-2,2.5726113637047597e-2 l 1.674387854387875e-2,2.475137866103438e-2 l 1.8221676751002853e-2,2.3684566930725494e-2 l 1.963168912381e-2,2.2529647055827495e-2 l 2.0968670323662394e-2,2.129091541412883e-2 l 2.2227646692685028e-2,1.997298016869919e-2 l 2.3403934756093595e-2,1.858074412521127e-2 l 2.4493158645034204e-2,1.711938649319065e-2 l 2.5491266375099603e-2,1.559434361901062e-2 l 2.639454491997768e-2,1.4011288762327948e-2 l 2.7199634024154214e-2,1.2376110991184894e-2 l 2.7903538703283232e-2,1.0694893274289201e-2 l 2.850364038572552e-2,8.973889851970146e-3 l 2.8997706653807825e-2,7.219502969994897e-3 l 2.9383899548562478e-2,5.438259062792828e-3 l 2.9660782407055677e-2,3.6367844746910405e-3 l 2.9827325206868163e-2,1.8217808094784709e-3 l 2.988290839784604e-2,7.077694495158021e-17 l 2.9827325206868153e-2,-1.8217808094786122e-3 l 2.9660782407055677e-2,-3.636784474690969e-3 l 2.9383899548562478e-2,-5.438259062792758e-3 l 2.8997706653807846e-2,-7.219502969994966e-3 l 2.8503640385725542e-2,-8.973889851970217e-3 l 2.7903538703283163e-2,-1.0694893274289201e-2 l 2.7199634024154214e-2,-1.2376110991184967e-2 l 2.639454491997768e-2,-1.4011288762327876e-2 l 2.5491266375099568e-2,-1.5594343619010692e-2 l 2.449315864503424e-2,-1.711938649319072e-2 l 2.3403934756093633e-2,-1.858074412521127e-2 l 2.2227646692684705e-2,-1.9972980168698837e-2 l 2.096867032366261e-2,-2.129091541412925e-2 l 1.9631689123809793e-2,-2.252964705582721e-2 l 1.8221676751002922e-2,-2.3684566930725525e-2 l 1.674387854387861e-2,-2.4751378661034208e-2 l 1.5203792008829632e-2,-2.5726113637047947e-2 l 1.3607146368919484e-2,-2.6605145780635366e-2 l 1.1959881250796814e-2,-2.7385205034487107e-2 l 1.026812458889344e-2,-2.8063389526944496e-2 l 8.538169829106945e-3,-2.863717636715228e-2 l 6.776452516767212e-3,-2.9104431030378474e-2 l 4.989526355986429e-3,-2.9463415298586374e-2 l 3.1840388294481644e-3,-2.9712793726720203e-2 Z" /></clipPath><path d="M 0.4898882854777104,0.4989336006297363 l -3.625901693543288e-17,-0.9796626367987984 h -0.32659219031847203 l -3.625901693543288e-17,0.9796626367987984 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(89,89,89)" stroke-opacity="1.0" fill="rgb(89,89,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip17)"><clipPath id="myClip17"><path d="M 0.48988828547771046,1.6573878170719536e-2 l -4.5571012860801027e-4,-2.987943343828237e-2 l -2.2764314549423353e-3,-2.979607481103866e-2 l -4.088684306747355e-3,-2.9601872828485372e-2 l -5.885726984385914e-3,-2.929754993475282e-2 l -7.660874371066636e-3,-2.8884238230993696e-2 l -9.407522801919215e-3,-2.836347526389231e-2 l -1.1119174630060541e-2,-2.7737198305890283e-2 l -1.2789462398268248e-2,-2.700773714840516e-2 l -1.441217252633981e-2,-2.6177805434854134e-2 l -1.5981268426018862e-2,-2.525049056572163e-2 l -1.7490912957499938e-2,-2.4229242213227035e-2 l -1.8935490143972535e-2,-2.3117859488317363e-2 l -2.0309626063422098e-2,-2.1920476807725475e-2 l -2.160820883997541e-2,-2.0641548513667087e-2 l -2.2826407660412256e-2,-1.9285832303396606e-2 l -2.3959690745109154e-2,-1.78583715302599e-2 l -2.500384220655638e-2,-1.636447644208906e-2 l -2.595497773273785e-2,-1.4809704426731298e-2 l -2.6809559037025e-2,-1.3199839338201654e-2 l -2.7564407020836883e-2,-1.154086998036551e-2 l -2.8216713600095113e-2,-9.838967828195776e-3 l -2.8764052151481267e-2,-8.100464069479523e-3 l -2.9204386539634895e-2,-6.331826052384769e-3 l -2.9536078691710703e-2,-4.539633226499161e-3 l -2.9757894691117476e-2,-2.7305526668472526e-3 l -2.9869009367768432e-2,-9.113142719312263e-4 l -2.9869009367768304e-2,9.11314271931651e-4 l -2.975789469111743e-2,2.730552666847819e-3 l -2.9536078691710835e-2,4.539633226499798e-3 l -2.9204386539634666e-2,6.331826052385123e-3 l -2.876405215148114e-2,8.100464069480019e-3 l -2.8216713600094975e-2,9.83896782819627e-3 l -2.756440702083656e-2,1.1540869980365935e-2 l -2.680955903702465e-2,1.3199839338202008e-2 l -2.595497773273757e-2,1.4809704426731721e-2 l -2.500384220655613e-2,1.6364476442089413e-2 l -2.3959690745108696e-2,1.785837153026018e-2 l -2.282640766041183e-2,1.928583230339689e-2 l -2.1608208839975055e-2,2.06415485136673e-2 l -2.0309626063421814e-2,2.1920476807725686e-2 l -1.8935490143971972e-2,2.3117859488317714e-2 l -1.749091295749951e-2,2.4229242213227104e-2 l -1.5981268426018505e-2,2.5250490565721772e-2 l -1.4412172526339457e-2,2.617780543485424e-2 l -1.2789462398267752e-2,2.70077371484053e-2 l -1.1119174630060116e-2,2.773719830589035e-2 l -9.40752280191879e-3,2.8363475263892345e-2 l -7.660874371066212e-3,2.8884238230993717e-2 l -5.885726984385489e-3,2.9297549934752802e-2 l -4.088684306747002e-3,2.9601872828485327e-2 l -2.2764314549418405e-3,2.97960748110386e-2 l -4.5571012860765633e-4,2.987943343828207e-2 l 1.3667064693359684e-3,2.985163861064825e-2 l 3.1840388294481644e-3,2.9712793726720213e-2 l 4.989526355986359e-3,2.9463415298586364e-2 l 6.776452516767284e-3,2.910443103037825e-2 l 8.538169829106945e-3,2.863717636715251e-2 l 1.0268124588893512e-2,2.806338952694453e-2 l 1.1959881250796674e-2,2.7385205034487072e-2 l 1.3607146368919694e-2,2.6605145780635546e-2 l 1.520379200882935e-2,2.5726113637047597e-2 l 1.674387854387875e-2,2.475137866103438e-2 l 1.8221676751002853e-2,2.3684566930725494e-2 l 1.963168912381e-2,2.2529647055827495e-2 l 2.0968670323662394e-2,2.129091541412883e-2 l 2.2227646692685028e-2,1.997298016869919e-2 l 2.3403934756093595e-2,1.858074412521127e-2 l 2.4493158645034204e-2,1.711938649319065e-2 l 2.5491266375099603e-2,1.559434361901062e-2 l 2.639454491997768e-2,1.4011288762327948e-2 l 2.7199634024154214e-2,1.2376110991184894e-2 l 2.7903538703283232e-2,1.0694893274289201e-2 l 2.850364038572552e-2,8.973889851970146e-3 l 2.8997706653807825e-2,7.219502969994897e-3 l 2.9383899548562478e-2,5.438259062792828e-3 l 2.9660782407055677e-2,3.6367844746910405e-3 l 2.9827325206868163e-2,1.8217808094784709e-3 l 2.988290839784604e-2,7.077694495158021e-17 l 2.9827325206868153e-2,-1.8217808094786122e-3 l 2.9660782407055677e-2,-3.636784474690969e-3 l 2.9383899548562478e-2,-5.438259062792758e-3 l 2.8997706653807846e-2,-7.219502969994966e-3 l 2.8503640385725542e-2,-8.973889851970217e-3 l 2.7903538703283163e-2,-1.0694893274289201e-2 l 2.7199634024154214e-2,-1.2376110991184967e-2 l 2.639454491997768e-2,-1.4011288762327876e-2 l 2.5491266375099568e-2,-1.5594343619010692e-2 l 2.449315864503424e-2,-1.711938649319072e-2 l 2.3403934756093633e-2,-1.858074412521127e-2 l 2.2227646692684705e-2,-1.9972980168698837e-2 l 2.096867032366261e-2,-2.129091541412925e-2 l 1.9631689123809793e-2,-2.252964705582721e-2 l 1.8221676751002922e-2,-2.3684566930725525e-2 l 1.674387854387861e-2,-2.4751378661034208e-2 l 1.5203792008829632e-2,-2.5726113637047947e-2 l 1.3607146368919484e-2,-2.6605145780635366e-2 l 1.1959881250796814e-2,-2.7385205034487107e-2 l 1.026812458889344e-2,-2.8063389526944496e-2 l 8.538169829106945e-3,-2.863717636715228e-2 l 6.776452516767212e-3,-2.9104431030378474e-2 l 4.989526355986429e-3,-2.9463415298586374e-2 l 3.1840388294481644e-3,-2.9712793726720203e-2 Z" /></clipPath><path d="M 0.16329609515923826,0.4989336006297363 l -3.625901693543288e-17,-0.9796626367987984 h -0.32659219031847203 l -3.625901693543288e-17,0.9796626367987984 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(255,89,89)" stroke-opacity="1.0" fill="rgb(255,89,89)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em" clip-path="url(#myClip18)"><clipPath id="myClip18"><path d="M 0.48988828547771046,1.6573878170719536e-2 l -4.5571012860801027e-4,-2.987943343828237e-2 l -2.2764314549423353e-3,-2.979607481103866e-2 l -4.088684306747355e-3,-2.9601872828485372e-2 l -5.885726984385914e-3,-2.929754993475282e-2 l -7.660874371066636e-3,-2.8884238230993696e-2 l -9.407522801919215e-3,-2.836347526389231e-2 l -1.1119174630060541e-2,-2.7737198305890283e-2 l -1.2789462398268248e-2,-2.700773714840516e-2 l -1.441217252633981e-2,-2.6177805434854134e-2 l -1.5981268426018862e-2,-2.525049056572163e-2 l -1.7490912957499938e-2,-2.4229242213227035e-2 l -1.8935490143972535e-2,-2.3117859488317363e-2 l -2.0309626063422098e-2,-2.1920476807725475e-2 l -2.160820883997541e-2,-2.0641548513667087e-2 l -2.2826407660412256e-2,-1.9285832303396606e-2 l -2.3959690745109154e-2,-1.78583715302599e-2 l -2.500384220655638e-2,-1.636447644208906e-2 l -2.595497773273785e-2,-1.4809704426731298e-2 l -2.6809559037025e-2,-1.3199839338201654e-2 l -2.7564407020836883e-2,-1.154086998036551e-2 l -2.8216713600095113e-2,-9.838967828195776e-3 l -2.8764052151481267e-2,-8.100464069479523e-3 l -2.9204386539634895e-2,-6.331826052384769e-3 l -2.9536078691710703e-2,-4.539633226499161e-3 l -2.9757894691117476e-2,-2.7305526668472526e-3 l -2.9869009367768432e-2,-9.113142719312263e-4 l -2.9869009367768304e-2,9.11314271931651e-4 l -2.975789469111743e-2,2.730552666847819e-3 l -2.9536078691710835e-2,4.539633226499798e-3 l -2.9204386539634666e-2,6.331826052385123e-3 l -2.876405215148114e-2,8.100464069480019e-3 l -2.8216713600094975e-2,9.83896782819627e-3 l -2.756440702083656e-2,1.1540869980365935e-2 l -2.680955903702465e-2,1.3199839338202008e-2 l -2.595497773273757e-2,1.4809704426731721e-2 l -2.500384220655613e-2,1.6364476442089413e-2 l -2.3959690745108696e-2,1.785837153026018e-2 l -2.282640766041183e-2,1.928583230339689e-2 l -2.1608208839975055e-2,2.06415485136673e-2 l -2.0309626063421814e-2,2.1920476807725686e-2 l -1.8935490143971972e-2,2.3117859488317714e-2 l -1.749091295749951e-2,2.4229242213227104e-2 l -1.5981268426018505e-2,2.5250490565721772e-2 l -1.4412172526339457e-2,2.617780543485424e-2 l -1.2789462398267752e-2,2.70077371484053e-2 l -1.1119174630060116e-2,2.773719830589035e-2 l -9.40752280191879e-3,2.8363475263892345e-2 l -7.660874371066212e-3,2.8884238230993717e-2 l -5.885726984385489e-3,2.9297549934752802e-2 l -4.088684306747002e-3,2.9601872828485327e-2 l -2.2764314549418405e-3,2.97960748110386e-2 l -4.5571012860765633e-4,2.987943343828207e-2 l 1.3667064693359684e-3,2.985163861064825e-2 l 3.1840388294481644e-3,2.9712793726720213e-2 l 4.989526355986359e-3,2.9463415298586364e-2 l 6.776452516767284e-3,2.910443103037825e-2 l 8.538169829106945e-3,2.863717636715251e-2 l 1.0268124588893512e-2,2.806338952694453e-2 l 1.1959881250796674e-2,2.7385205034487072e-2 l 1.3607146368919694e-2,2.6605145780635546e-2 l 1.520379200882935e-2,2.5726113637047597e-2 l 1.674387854387875e-2,2.475137866103438e-2 l 1.8221676751002853e-2,2.3684566930725494e-2 l 1.963168912381e-2,2.2529647055827495e-2 l 2.0968670323662394e-2,2.129091541412883e-2 l 2.2227646692685028e-2,1.997298016869919e-2 l 2.3403934756093595e-2,1.858074412521127e-2 l 2.4493158645034204e-2,1.711938649319065e-2 l 2.5491266375099603e-2,1.559434361901062e-2 l 2.639454491997768e-2,1.4011288762327948e-2 l 2.7199634024154214e-2,1.2376110991184894e-2 l 2.7903538703283232e-2,1.0694893274289201e-2 l 2.850364038572552e-2,8.973889851970146e-3 l 2.8997706653807825e-2,7.219502969994897e-3 l 2.9383899548562478e-2,5.438259062792828e-3 l 2.9660782407055677e-2,3.6367844746910405e-3 l 2.9827325206868163e-2,1.8217808094784709e-3 l 2.988290839784604e-2,7.077694495158021e-17 l 2.9827325206868153e-2,-1.8217808094786122e-3 l 2.9660782407055677e-2,-3.636784474690969e-3 l 2.9383899548562478e-2,-5.438259062792758e-3 l 2.8997706653807846e-2,-7.219502969994966e-3 l 2.8503640385725542e-2,-8.973889851970217e-3 l 2.7903538703283163e-2,-1.0694893274289201e-2 l 2.7199634024154214e-2,-1.2376110991184967e-2 l 2.639454491997768e-2,-1.4011288762327876e-2 l 2.5491266375099568e-2,-1.5594343619010692e-2 l 2.449315864503424e-2,-1.711938649319072e-2 l 2.3403934756093633e-2,-1.858074412521127e-2 l 2.2227646692684705e-2,-1.9972980168698837e-2 l 2.096867032366261e-2,-2.129091541412925e-2 l 1.9631689123809793e-2,-2.252964705582721e-2 l 1.8221676751002922e-2,-2.3684566930725525e-2 l 1.674387854387861e-2,-2.4751378661034208e-2 l 1.5203792008829632e-2,-2.5726113637047947e-2 l 1.3607146368919484e-2,-2.6605145780635366e-2 l 1.1959881250796814e-2,-2.7385205034487107e-2 l 1.026812458889344e-2,-2.8063389526944496e-2 l 8.538169829106945e-3,-2.863717636715228e-2 l 6.776452516767212e-3,-2.9104431030378474e-2 l 4.989526355986429e-3,-2.9463415298586374e-2 l 3.1840388294481644e-3,-2.9712793726720203e-2 Z" /></clipPath><path d="M -0.16329609515923388,0.4989336006297363 l -3.625901693543288e-17,-0.9796626367987984 h -0.32659219031847203 l -3.625901693543288e-17,0.9796626367987984 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.920419083356727e-2,-0.46938196067353516 l 1.2145205396524104e-3,-1.9884883471245503e-2 l -1.9884883471245503e-2,-1.2145205396524126e-3 l -1.2145205396524147e-3,1.9884883471245503e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 6.830157003634307e-2,-0.4661019210515544 l 2.4245229831273453e-3,-1.9773854938037183e-2 l -1.9773854938037183e-2,-2.4245229831273475e-3 l -2.4245229831273496e-3,1.9773854938037183e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.714486291252208e-2,-0.46105409058185204 l 3.625506041861862e-3,-1.9589266365708374e-2 l -1.9589266365708374e-2,-3.6255060418618644e-3 l -3.6255060418618665e-3,1.9589266365708374e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.12562677051817128,-0.454257247525318 l 4.813001979996646e-3,-1.9331804435871958e-2 l -1.9331804435871958e-2,-4.813001979996648e-3 l -4.81300197999665e-3,1.9331804435871958e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.15364133828629992,-0.4457366765845405 l 5.982593234646851e-3,-1.9002426923817074e-2 l -1.9002426923817074e-2,-5.982593234646853e-3 l -5.9825932346468545e-3,1.9002426923817074e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.18108435018480784,-0.43552407484305233 l 7.129928849526176e-3,-1.860235913552216e-2 l -1.860235913552216e-2,-7.1299288495261775e-3 l -7.129928849526179e-3,1.860235913552216e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.2078537164069697,-0.4236574338500976 l 8.250740660790023e-3,-1.81330893494362e-2 l -1.81330893494362e-2,-8.250740660790025e-3 l -8.250740660790026e-3,1.81330893494362e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.23384985315222143,-0.4101808982895737 l 9.340859174885332e-3,-1.7596363279985185e-2 l -1.7596363279985185e-2,-9.340859174885334e-3 l -9.340859174885335e-3,1.7596363279985185e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.2589760530844389,-0.3951446017589073 l 1.0396229079340454e-2,-1.6994177583399744e-2 l -1.6994177583399744e-2,-1.0396229079340456e-2 l -1.0396229079340458e-2,1.6994177583399744e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.28313884508958004,-0.3786044802687797 l 1.1412924328793896e-2,-1.6328772430022863e-2 l -1.6328772430022863e-2,-1.1412924328793898e-2 l -1.14129243287939e-2,1.6328772430022863e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.30624834199436857,-0.360622064157493 l 1.238716275014093e-2,-1.560262317072906e-2 l -1.5602623170729059e-2,-1.2387162750140932e-2 l -1.2387162750140934e-2,1.5602623170729057e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.32821857495248186,-0.3412642491940699 l 1.3315320112465962e-2,-1.481843112845654e-2 l -1.4818431128456539e-2,-1.3315320112465964e-2 l -1.3315320112465966e-2,1.4818431128456537e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3489678132543063,-0.3206030477216 l 1.4193943609419567e-2,-1.3979113549108461e-2 l -1.397911354910846e-2,-1.419394360941957e-2 l -1.4193943609419571e-2,1.3979113549108458e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.36841886837054466,-0.2987153207665927 l 1.5019764703884903e-2,-1.3087792749206552e-2 l -1.308779274920655e-2,-1.5019764703884905e-2 l -1.5019764703884907e-2,1.3087792749206548e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.38649938109861504,-0.27568249211091134 l 1.5789711287150454e-2,-1.2147784500668588e-2 l -1.2147784500668586e-2,-1.5789711287150454e-2 l -1.5789711287150454e-2,1.2147784500668585e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4031420907436372,-0.251590245389956 l 1.6500919107356214e-2,-1.116258569591907e-2 l -1.1162585695919068e-2,-1.6500919107356214e-2 l -1.6500919107356214e-2,1.1162585695919066e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4182850853326349,-0.2265282053439127 l 1.7150742424698735e-2,-1.0135861339219735e-2 l -1.0135861339219733e-2,-1.7150742424698735e-2 l -1.7150742424698735e-2,1.0135861339219732e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.431872031931142,-0.20058960440783266 l 1.7736763853756974e-2,-9.071430912612978e-3 l -9.071430912612977e-3,-1.7736763853756974e-2 l -1.7736763853756974e-2,9.071430912612975e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4438523862054185,-0.1738709358808511 l 1.8256803356324822e-2,-7.973254167197795e-3 l -7.973254167197793e-3,-1.8256803356324822e-2 l -1.8256803356324822e-2,7.973254167197791e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4541815804506919,-0.14647159496477605 l 1.870892635129642e-2,-6.845416392595606e-3 l -6.8454163925956045e-3,-1.870892635129642e-2 l -1.870892635129642e-2,6.845416392595603e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4628211893859461,-0.11849350900740986 l 1.909145091143494e-2,-5.692113219404561e-3 l -5.692113219404559e-3,-1.909145091143494e-2 l -1.909145091143494e-2,5.692113219404557e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4697390730984905,-9.004075832612063e-2 l 1.9402954020252373e-2,-4.517635011178125e-3 l -4.517635011178123e-3,-1.9402954020252373e-2 l -1.9402954020252373e-2,4.517635011178122e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4749094966065466,-6.1219189022225416e-2 l 1.964227686572433e-2,-3.3263509039908813e-3 l -3.326350903990879e-3,-1.964227686572433e-2 l -1.964227686572433e-2,3.326350903990877e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4783132255950697,-3.213601922654151e-2 l 1.9808529151146875e-2,-2.122692552965357e-3 l -2.1226925529653547e-3,-1.9808529151146875e-2 l -1.9808529151146875e-2,2.1226925529653526e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.47993759796866503,-2.8994402408976123e-3 l 1.9901092407098753e-2,-9.111376462239039e-4 l -9.111376462239018e-4,-1.9901092407098753e-2 l -1.9901092407098753e-2,9.111376462238996e-4 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.47977657095541354,2.6381785940614952e-2 l 1.991962229218825e-2,3.0380675240521577e-4 l 3.03806752405218e-4,-1.991962229218825e-2 l -1.991962229218825e-2,-3.038067524052202e-4 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.47783074358638084,5.55987312334038e-2 l 1.9864049874025784e-2,1.517620969961296e-3 l 1.5176209699612983e-3,-1.9864049874025784e-2 l -1.9864049874025784e-2,-1.5176209699613004e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4741073544671823,8.464270668200462e-2 l 1.973458188565693e-2,2.725789537831453e-3 l 2.7257895378314553e-3,-1.973458188565693e-2 l -1.973458188565693e-2,-2.7257895378314575e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.46862025484989395,0.1134056667901341 l 1.9531699956501905e-2,3.923817989590441e-3 l 3.923817989590444e-3,-1.9531699956501905e-2 l -1.9531699956501905e-2,-3.9238179895904465e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.46138985710548625,0.14178061145703272 l 1.9256158820662492e-2,5.107249580710955e-3 l 5.107249580710957e-3,-1.9256158820662492e-2 l -1.9256158820662492e-2,-5.107249580710959e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4524430587884623,0.16966198402486715 l 1.8908983509261613e-2,6.271681867945987e-3 l 6.271681867945989e-3,-1.8908983509261613e-2 l -1.8908983509261613e-2,-6.2716818679459906e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4418131425761891,0.1969460639564307 l 1.8491465537260228e-2,7.412783086706863e-3 l 7.412783086706865e-3,-1.8491465537260228e-2 l -1.8491465537260228e-2,-7.4127830867068666e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.42953965245515147,0.22353135268235363 l 1.8005158098936852e-2,8.526308265512022e-3 l 8.526308265512024e-3,-1.8005158098936852e-2 l -1.8005158098936852e-2,-8.526308265512025e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.4156682466147252,0.2493189511824482 l 1.7451870289902825e-2,9.608115017559739e-3 l 9.60811501755974e-3,-1.7451870289902825e-2 l -1.7451870289902825e-2,-9.608115017559742e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.40025052759571333,0.27421292789655916 l 1.6833660377147813e-2,1.06541789506791e-2 l 1.0654178950679102e-2,-1.6833660377147813e-2 l -1.6833660377147813e-2,-1.0654178950679103e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.38334385032550594,0.2981206755962682 l 1.6152828142151427e-2,1.1660608638333198e-2 l 1.16606086383332e-2,-1.6152828142151427e-2 l -1.6152828142151427e-2,-1.1660608638333202e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3650111087539822,0.32095325588986656 l 1.5411906325545056e-2,1.2623660095981445e-2 l 1.2623660095981447e-2,-1.5411906325545054e-2 l -1.5411906325545052e-2,-1.2623660095981449e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.34532050188388647,0.3426257300790133 l 1.4613651205150376e-2,1.3539750708947968e-2 l 1.353975070894797e-2,-1.4613651205150374e-2 l -1.4613651205150372e-2,-1.3539750708947971e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3243452800660588,0.36305747513627207 l 1.3761032342444822e-2,1.4405472559983501e-2 l 1.4405472559983503e-2,-1.376103234244482e-2 l -1.3761032342444818e-2,-1.4405472559983505e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3021634725033185,0.3821724836280686 l 1.2857221535597846e-2,1.52176051069414e-2 l 1.5217605106941402e-2,-1.2857221535597844e-2 l -1.2857221535597842e-2,-1.5217605106941404e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.2788575969767048,0.3998996464673355 l 1.1905581020173406e-2,1.5973127163405945e-2 l 1.5973127163405945e-2,-1.1905581020173405e-2 l -1.1905581020173403e-2,-1.5973127163405945e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.25451435287391166,0.416173017443987 l 1.0909650961392832e-2,1.6669228137704235e-2 l 1.6669228137704235e-2,-1.090965096139283e-2 l -1.0909650961392828e-2,-1.6669228137704235e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.22922429866187086,0.4309320585491513 l 9.873136284487685e-3,1.730331848849182e-2 l 1.730331848849182e-2,-9.873136284487683e-3 l -9.873136284487681e-3,-1.730331848849182e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.20308151500330726,0.4441218651805404 l 8.799892892134556e-3,1.7873039358016585e-2 l 1.7873039358016585e-2,-8.799892892134554e-3 l -8.799892892134552e-3,-1.7873039358016585e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.17618325477049435,0.455693370391176 l 7.693913320243852e-3,1.8376271347224506e-2 l 1.8376271347224506e-2,-7.693913320243851e-3 l -7.693913320243849e-3,-1.8376271347224506e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.14862958125818163,0.465603527421656 l 6.559311885463982e-3,1.881114240006335e-2 l 1.881114240006335e-2,-6.55931188546398e-3 l -6.559311885463978e-3,-1.881114240006335e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.12052299594156601,0.47381546983692546 l 5.400309379653188e-3,1.917603476765413e-2 l 1.917603476765413e-2,-5.400309379653186e-3 l -5.400309379653185e-3,-1.917603476765413e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.196805716407182e-2,0.48029864867183764 l 4.221217368256617e-3,1.9469591026423202e-2 l 1.9469591026423202e-2,-4.2212173682566155e-3 l -4.221217368256614e-3,-1.9469591026423202e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 6.307099117344579e-2,0.48502894607530994 l 3.02642215099968e-3,1.9690719127807104e-2 l 1.9690719127807104e-2,-3.026422150999678e-3 l -3.026422150999676e-3,-1.9690719127807104e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.3939296953138444e-2,0.48798876503031463 l 1.820368444564974e-3,1.9838596460744953e-2 l 1.9838596460744953e-2,-1.8203684445649718e-3 l -1.8203684445649696e-3,-1.9838596460744953e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.6813463190252015e-3,0.48916709481593756 l 6.075428479543003e-4,1.9912672911845602e-2 l 1.9912672911845602e-2,-6.075428479542981e-4 l -6.07542847954296e-4,-1.9912672911845602e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.459401923086662e-2,0.4885595519679833 l -6.075428479543066e-4,1.9912672911845602e-2 l 1.9912672911845602e-2,6.075428479543087e-4 l 6.075428479543109e-4,-1.9912672911845602e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.377789341387921e-2,0.4861683965857497 l -1.8203684445649803e-3,1.9838596460744953e-2 l 1.9838596460744953e-2,1.8203684445649824e-3 l 1.8203684445649846e-3,-1.9838596460744953e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -8.27617103012487e-2,0.48200252392431014 l -3.0264221509996862e-3,1.96907191278071e-2 l 1.96907191278071e-2,3.0264221509996884e-3 l 3.0264221509996906e-3,-1.96907191278071e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.11143764819049082,0.4760774313035808 l -4.221217368256624e-3,1.9469591026423195e-2 l 1.9469591026423195e-2,4.221217368256626e-3 l 4.221217368256628e-3,-1.9469591026423195e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.13969903070921594,0.46841516045727205 l -5.400309379653194e-3,1.9176034767654122e-2 l 1.9176034767654122e-2,5.400309379653196e-3 l 5.400309379653198e-3,-1.9176034767654122e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.16744072365824075,0.45904421553619185 l -6.559311885463987e-3,1.8811142400063343e-2 l 1.8811142400063343e-2,6.5593118854639886e-3 l 6.55931188546399e-3,-1.8811142400063343e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.1945595261177146,0.44799945707093203 l -7.693913320243857e-3,1.83762713472245e-2 l 1.83762713472245e-2,7.6939133202438585e-3 l 7.69391332024386e-3,-1.83762713472245e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.22095455436131958,0.4353219722884057 l -8.799892892134559e-3,1.787303935801658e-2 l 1.787303935801658e-2,8.79989289213456e-3 l 8.799892892134563e-3,-1.787303935801658e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.24652761715035842,0.42105892226466346 l -9.873136284487688e-3,1.7303318488491815e-2 l 1.7303318488491815e-2,9.87313628448769e-3 l 9.873136284487691e-3,-1.7303318488491815e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.2711835810116116,0.405263366482594 l -1.0909650961392833e-2,1.6669228137704228e-2 l 1.6669228137704228e-2,1.0909650961392835e-2 l 1.0909650961392837e-2,-1.6669228137704228e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.29483072414010647,0.38799406544716203 l -1.1905581020173406e-2,1.597312716340594e-2 l 1.597312716340594e-2,1.1905581020173408e-2 l 1.190558102017341e-2,-1.597312716340594e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.3173810776102556,0.36931526209247073 l -1.2857221535597846e-2,1.5217605106941402e-2 l 1.52176051069414e-2,1.2857221535597848e-2 l 1.285722153559785e-2,-1.5217605106941399e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.33875075262603793,0.34929644279382727 l -1.376103234244482e-2,1.4405472559983503e-2 l 1.4405472559983501e-2,1.3761032342444822e-2 l 1.3761032342444824e-2,-1.44054725599835e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.35886025259283005,0.3280120788738629 l -1.4613651205150374e-2,1.353975070894797e-2 l 1.3539750708947968e-2,1.4613651205150376e-2 l 1.4613651205150378e-2,-1.3539750708947966e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.37763476884995917,0.3055413495643215 l -1.5411906325545054e-2,1.2623660095981449e-2 l 1.2623660095981447e-2,1.5411906325545056e-2 l 1.5411906325545057e-2,-1.2623660095981445e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.39500445896383485,0.28196784745411674 l -1.615282814215143e-2,1.1660608638333202e-2 l 1.16606086383332e-2,1.615282814215143e-2 l 1.615282814215143e-2,-1.1660608638333198e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.41090470654638817,0.2573792675194113 l -1.683366037714782e-2,1.0654178950679103e-2 l 1.0654178950679102e-2,1.683366037714782e-2 l 1.683366037714782e-2,-1.06541789506791e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.42527636163228066,0.23186708089254537 l -1.7451870289902832e-2,9.608115017559742e-3 l 9.60811501755974e-3,1.7451870289902832e-2 l 1.7451870289902832e-2,-9.608115017559739e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.43806596072065923,0.20552619458341678 l -1.800515809893686e-2,8.526308265512025e-3 l 8.526308265512024e-3,1.800515809893686e-2 l 1.800515809893686e-2,-8.526308265512022e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.44922592566289166,0.17845459841917044 l -1.849146553726023e-2,7.4127830867068666e-3 l 7.412783086706865e-3,1.849146553726023e-2 l 1.849146553726023e-2,-7.412783086706863e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.45871474065640394,0.15075300051560558 l -1.8908983509261616e-2,6.271681867945991e-3 l 6.27168186794599e-3,1.8908983509261616e-2 l 1.8908983509261616e-2,-6.271681867945988e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.46649710668619276,0.12252445263637024 l -1.9256158820662492e-2,5.10724958071096e-3 l 5.107249580710958e-3,1.9256158820662492e-2 l 1.9256158820662492e-2,-5.107249580710956e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.47254407283947997,9.387396683363225e-2 l -1.9531699956501905e-2,3.923817989590448e-3 l 3.923817989590446e-3,1.9531699956501905e-2 l 1.9531699956501905e-2,-3.923817989590443e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.47683314400500926,6.490812479634774e-2 l -1.973458188565693e-2,2.7257895378314597e-3 l 2.7257895378314575e-3,1.973458188565693e-2 l 1.973458188565693e-2,-2.7257895378314553e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.4793483645563377,3.573468135937807e-2 l -1.9864049874025784e-2,1.5176209699613026e-3 l 1.5176209699613004e-3,1.9864049874025784e-2 l 1.9864049874025784e-2,-1.5176209699612983e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.48008037770781437,6.462163648426746e-3 l -1.991962229218825e-2,3.0380675240522227e-4 l 3.0380675240522005e-4,1.991962229218825e-2 l 1.991962229218825e-2,-3.038067524052178e-4 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.47902646032243673,-2.2800532647996325e-2 l -1.9901092407098756e-2,-9.111376462238978e-4 l -9.111376462238999e-4,1.9901092407098756e-2 l 1.9901092407098756e-2,9.111376462239021e-4 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.47619053304209996,-5.194454837768833e-2 l -1.9808529151146875e-2,-2.1226925529653504e-3 l -2.1226925529653526e-3,1.9808529151146875e-2 l 1.9808529151146875e-2,2.1226925529653547e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.4715831457025513,-8.086146588794968e-2 l -1.964227686572433e-2,-3.3263509039908744e-3 l -3.3263509039908766e-3,1.964227686572433e-2 l 1.964227686572433e-2,3.3263509039908787e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.465221438087308,-0.10944371234637293 l -1.9402954020252373e-2,-4.517635011178119e-3 l -4.517635011178121e-3,1.9402954020252373e-2 l 1.9402954020252373e-2,4.5176350111781225e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.4571290761665371,-0.13758495991884473 l -1.909145091143494e-2,-5.692113219404554e-3 l -5.692113219404556e-3,1.909145091143494e-2 l 1.909145091143494e-2,5.692113219404557e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.44733616405809185,-0.1651805213160724 l -1.870892635129642e-2,-6.845416392595599e-3 l -6.845416392595601e-3,1.870892635129642e-2 l 1.870892635129642e-2,6.845416392595603e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.43587913203821627,-0.19212773923717585 l -1.8256803356324822e-2,-7.973254167197788e-3 l -7.97325416719779e-3,1.8256803356324822e-2 l 1.8256803356324822e-2,7.973254167197791e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.42280060101852457,-0.21832636826158963 l -1.7736763853756974e-2,-9.071430912612973e-3 l -9.071430912612975e-3,1.7736763853756974e-2 l 1.7736763853756974e-2,9.071430912612977e-3 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.40814922399341075,-0.24367894776861135 l -1.7150742424698735e-2,-1.013586133921973e-2 l -1.0135861339219732e-2,1.7150742424698735e-2 l 1.7150742424698735e-2,1.0135861339219733e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.3919795050477136,-0.2680911644973122 l -1.650091910735621e-2,-1.1162585695919065e-2 l -1.1162585695919066e-2,1.650091910735621e-2 l 1.650091910735621e-2,1.1162585695919068e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.374351596597942,-0.2914722033980617 l -1.578971128715045e-2,-1.2147784500668581e-2 l -1.2147784500668583e-2,1.578971128715045e-2 l 1.578971128715045e-2,1.2147784500668585e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.35533107562133354,-0.31373508547047746 l -1.5019764703884903e-2,-1.3087792749206545e-2 l -1.3087792749206547e-2,1.5019764703884901e-2 l 1.50197647038849e-2,1.3087792749206548e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.3349886997051933,-0.3347969913310194 l -1.4193943609419567e-2,-1.3979113549108454e-2 l -1.3979113549108456e-2,1.4193943609419566e-2 l 1.4193943609419564e-2,1.3979113549108458e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.31340014382402076,-0.35457956930653584 l -1.331532011246596e-2,-1.4818431128456534e-2 l -1.4818431128456535e-2,1.3315320112465959e-2 l 1.3315320112465957e-2,1.4818431128456537e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.29064571882363494,-0.37300922690763383 l -1.2387162750140929e-2,-1.5602623170729052e-2 l -1.5602623170729054e-2,1.2387162750140927e-2 l 1.2387162750140925e-2,1.5602623170729055e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.2668100726595526,-0.39001740459757345 l -1.1412924328793893e-2,-1.6328772430022856e-2 l -1.6328772430022856e-2,1.1412924328793891e-2 l 1.141292432879389e-2,1.6328772430022856e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.24198187550103456,-0.40554083083824755 l -1.039622907934045e-2,-1.6994177583399734e-2 l -1.6994177583399734e-2,1.0396229079340449e-2 l 1.0396229079340447e-2,1.6994177583399734e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.2162534898722316,-0.41952175746445874 l -9.340859174885328e-3,-1.7596363279985174e-2 l -1.7596363279985174e-2,9.340859174885327e-3 l 9.340859174885325e-3,1.7596363279985174e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.1897206270575289,-0.4319081745108875 l -8.25074066079002e-3,-1.8133089349436193e-2 l -1.8133089349436193e-2,8.250740660790018e-3 l 8.250740660790016e-3,1.8133089349436193e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.1624819910492811,-0.44265400369257835 l -7.129928849526174e-3,-1.860235913552215e-2 l -1.860235913552215e-2,7.129928849526172e-3 l 7.1299288495261706e-3,1.860235913552215e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.1346389113624783,-0.45171926981918725 l -5.98259323464685e-3,-1.900242692381707e-2 l -1.900242692381707e-2,5.982593234646848e-3 l 5.982593234646847e-3,1.900242692381707e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.10629496608229476,-0.45907024950531455 l -4.813001979996645e-3,-1.9331804435871954e-2 l -1.9331804435871954e-2,4.813001979996644e-3 l 4.813001979996642e-3,1.9331804435871954e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -7.755559654680916e-2,-0.46467959662371383 l -3.625506041861862e-3,-1.958926636570837e-2 l -1.958926636570837e-2,3.62550604186186e-3 l 3.625506041861858e-3,1.958926636570837e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.852771509830135e-2,-0.46852644403468174 l -2.4245229831273457e-3,-1.9773854938037183e-2 l -1.9773854938037183e-2,2.4245229831273436e-3 l 2.4245229831273414e-3,1.9773854938037183e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.931930736231723e-2,-0.4705964812131876 l -1.2145205396524108e-3,-1.9884883471245503e-2 l -1.9884883471245503e-2,1.2145205396524087e-3 l 1.2145205396524065e-3,1.9884883471245503e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.960969465950932e-3,-0.47088200748496684 l -2.2117795297368815e-18,-1.992193893189742e-2 h -1.992193893189742e-2 l -2.2117795297368815e-18,1.992193893189742e-2 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.1459259293799189,-0.1059433572394887 l -0.3540740706200822,-0.2572498703694631 l -0.35407407062008206,0.25724987036946323 l 0.13524426044184082,0.4162390338592959 h 0.43765962035648265 Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1008445092326384,3.28029873802768e-2 c 7.662749022826416e-2,-2.4897780848057566e-2 0.11856270532054267,-0.10720027453878142 9.366492447248509e-2 -0.18382776476704557c -2.4897780848057563e-2,-7.662749022826416e-2 -0.10720027453878142,-0.11856270532054267 -0.18382776476704554 -9.36649244724851e-2c -7.662749022826416e-2,2.4897780848057556e-2 -0.11856270532054267,0.1072002745387814 -9.366492447248512e-2 0.18382776476704554c 2.4897780848057553e-2,7.662749022826416e-2 0.10720027453878139,0.11856270532054267 0.18382776476704552 9.366492447248512e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3991948800284537,0.39604563340962834 c 4.735839343366767e-2,6.518323650466094e-2 0.1385914104918542,7.963312685054072e-2 0.20377464699651512 3.227473341687305e-2c 6.518323650466094e-2,-4.735839343366766e-2 7.963312685054072e-2,-0.1385914104918542 3.2274733416873064e-2 -0.2037746469965151c -4.735839343366766e-2,-6.518323650466094e-2 -0.1385914104918542,-7.963312685054072e-2 -0.2037746469965151 -3.227473341687308e-2c -6.518323650466096e-2,4.7358393433667656e-2 -7.963312685054073e-2,0.13859141049185417 -3.227473341687308e-2 0.2037746469965151Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.8368545003849364,0.22454571982998614 c -4.7358393433667684e-2,6.518323650466093e-2 -3.290850308778796e-2,0.15641625356284744 3.227473341687295e-2 0.20377464699651515c 6.518323650466093e-2,4.735839343366769e-2 0.15641625356284744,3.290850308778797e-2 0.20377464699651512 -3.227473341687294e-2c 4.735839343366769e-2,-6.518323650466093e-2 3.290850308778798e-2,-0.15641625356284744 -3.2274733416872925e-2 -0.2037746469965151c -6.518323650466092e-2,-4.73583934336677e-2 -0.15641625356284744,-3.2908503087787984e-2 -0.2037746469965151 3.227473341687291e-2Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.8089926504728027,-0.24468970185925396 c -7.662749022826414e-2,-2.489778084805759e-2 -0.15892998391898802,1.7037434244220863e-2 -0.1838277647670456 9.366492447248499e-2c -2.4897780848057594e-2,7.662749022826414e-2 1.7037434244220856e-2,0.15892998391898802 9.366492447248496e-2 0.1838277647670456c 7.662749022826414e-2,2.48977808480576e-2 0.15892998391898802,-1.703743424422085e-2 0.1838277647670456 -9.366492447248496e-2c 2.4897780848057605e-2,-7.662749022826414e-2 -1.7037434244220842e-2,-0.15892998391898802 -9.366492447248494e-2 -0.1838277647670456Z" /></g></g><g transform="matrix(90.90909090909086,0.0,0.0,90.90909090909086,200.0,50.90797677277791)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3541134598811733,-0.3631932276089518 c 0.0,-8.05709113132067e-2 -6.531562880562086e-2,-0.1458865401188276 -0.14588654011882757 -0.1458865401188276c -8.05709113132067e-2,-4.933545432205193e-18 -0.1458865401188276,6.531562880562086e-2 -0.1458865401188276 0.14588654011882754c -9.867090864410386e-18,8.05709113132067e-2 6.531562880562085e-2,0.1458865401188276 0.14588654011882754 0.1458865401188276c 8.05709113132067e-2,1.480063629661558e-17 0.1458865401188276,-6.531562880562085e-2 0.1458865401188276 -0.1458865401188275Z" /></g></g></g></svg>
− diagrams/showDefaultColors.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="500.0" height="50.0" font-size="1" viewBox="0 0 500 50"><g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(177,98,98)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 9.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,9.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">9</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 8.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,8.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">8</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 7.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,7.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">7</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 6.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,6.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">6</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,5.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">5</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,148,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">4</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,3.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,177,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,2.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,89,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,1.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(89,89,89)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 Z" /></g></g><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">0</text></g></g></g></svg>
− diagrams/snowflake4.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="346.4101615137744" font-size="1" viewBox="0 0 300 346"><g><g transform="matrix(272.7272727272718,0.0,0.0,272.7272727272718,150.0,173.2050807568872)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5000000000000018,-0.2886751345948131 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172844e-3,-1.069167165165973e-2 l 6.172839506172834e-3,1.0691671651659736e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172847e-3,-1.069167165165973e-2 l -6.172839506172827e-3,-1.069167165165974e-2 l 1.2345679012345678e-2,7.806255641895632e-18 l 6.172839506172847e-3,-1.069167165165973e-2 l 6.172839506172835e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l -6.172839506172838e-3,1.0691671651659733e-2 l 6.172839506172835e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172844e-3,-1.069167165165973e-2 l 6.172839506172834e-3,1.0691671651659736e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345677e-2,9.540979117872439e-18 l 6.172839506172827e-3,-1.069167165165974e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345675e-2,8.673617379884035e-18 l -6.172839506172833e-3,1.0691671651659736e-2 l -6.172839506172848e-3,-1.0691671651659726e-2 l -1.2345679012345675e-2,8.673617379884035e-18 l 6.172839506172826e-3,-1.0691671651659743e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l 1.2345679012345677e-2,-1.734723475976807e-17 l 6.172839506172826e-3,-1.0691671651659743e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345677e-2,9.540979117872439e-18 l 6.172839506172827e-3,-1.069167165165974e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172832e-3,1.0691671651659735e-2 l -1.2345679012345677e-2,-1.734723475976807e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172831e-3,1.0691671651659736e-2 l 1.2345679012345675e-2,9.540979117872439e-18 l -6.1728395061728435e-3,1.0691671651659733e-2 l 6.172839506172831e-3,1.0691671651659736e-2 h -1.2345679012345675e-2 l -6.172839506172841e-3,1.0691671651659731e-2 l -6.172839506172839e-3,-1.0691671651659731e-2 h -1.2345679012345675e-2 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172832e-3,1.0691671651659735e-2 l -1.2345679012345677e-2,-1.734723475976807e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.069167165165974e-2 l 6.17283950617285e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.0691671651659736e-2 l -6.172839506172845e-3,-1.069167165165973e-2 l 1.2345679012345673e-2,-1.5612511283791264e-17 l 6.172839506172827e-3,-1.0691671651659736e-2 l 6.172839506172854e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l -6.172839506172821e-3,1.0691671651659743e-2 l 6.172839506172854e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.069167165165974e-2 l 6.17283950617285e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 Z" /></g></g></g></svg>
− diagrams/sqUpD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="87.54208754208757" font-size="1" viewBox="0 0 400 88"><g><g transform="matrix(165.28925619834715,0.0,0.0,165.28925619834715,200.0,43.771043771043786)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.10000000000000031,0.24074074074074073 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l -4.535728885730937e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l 4.535728885730937e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l -2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l -2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l 4.535728885730937e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l -4.535728885730937e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 " /></g></g><g transform="matrix(165.28925619834715,0.0,0.0,165.28925619834715,200.0,43.771043771043786)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0999999999999996,0.24074074074074073 h 0.3333333333333333 v -0.3333333333333333 h 0.3333333333333333 v 0.3333333333333333 h 0.3333333333333333 " /></g></g></g></svg>
− diagrams/sqUpDownD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="119.31818181818181" font-size="1" viewBox="0 0 400 119"><g><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,59.65909090909091)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.999999999999987e-2,0.0 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l -3.827021247335479e-18,6.25e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,6.25e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,7.654042494670958e-18 l 7.654042494670958e-18,6.25e-2 l -6.25e-2,7.654042494670958e-18 l -1.5308084989341915e-17,-0.125 l -6.25e-2,7.654042494670958e-18 l 7.654042494670958e-18,6.25e-2 l -6.25e-2,7.654042494670958e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,6.25e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l -3.827021247335479e-18,6.25e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 " /></g></g><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,59.65909090909091)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1,0.0 h 0.25 v -0.25 h 0.25 v 0.5 h 0.25 v -0.25 h 0.25 " /></g></g></g></svg>
− diagrams/sqUpDownD2.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="120.99552168627056" font-size="1" viewBox="0 0 400 121"><g><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,60.497760843135275)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.999999999999987e-2,0.0 c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884035e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884035e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884035e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.734723475976807e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884035e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884035e-19c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884035e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884035e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884035e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.734723475976807e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884035e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884035e-19c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884033e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884033e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884033e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.7347234759768065e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884033e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884033e-19c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884033e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884033e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884033e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.7347234759768065e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884033e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884033e-19c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024408e-3 1.4227642276422765e-2,3.0487804878048816e-3 1.5625e-2 4.336808689942018e-18c 1.3973577235772356e-3,-3.0487804878048773e-3 -2.921747967479672e-3,-1.0670731707317072e-2 4.336808689942018e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536581e-3 1.5625e-2 4.336808689942018e-18c 2.540650406504056e-3,7.240853658536586e-3 -2.5406504065040715e-3,2.4009146341463415e-2 -8.673617379884035e-18 3.125e-2c 2.540650406504063e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682935e-3 1.5625e-2 7.806255641895632e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772382e-3,-1.2576219512195123e-2 4.336808689942018e-18 -1.5625e-2c 1.3973577235772286e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024363e-3 1.5625e-2 4.336808689942018e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884033e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884033e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884033e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.7347234759768065e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884033e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884033e-19c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024393e-3 1.4227642276422765e-2,3.0487804878048786e-3 1.5625e-2 8.673617379884035e-19c 1.397357723577235e-3,-3.0487804878048777e-3 -2.9217479674796746e-3,-1.0670731707317072e-2 8.673617379884035e-19 -1.5625e-2c 2.9217479674796755e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536584e-3 1.5625e-2 8.673617379884035e-19c 2.5406504065040576e-3,7.240853658536585e-3 -2.5406504065040663e-3,2.4009146341463415e-2 -1.734723475976807e-18 3.125e-2c 2.5406504065040646e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682932e-3 1.5625e-2 4.336808689942018e-18c 2.9217479674796686e-3,-4.954268292682928e-3 -1.397357723577241e-3,-1.2576219512195123e-2 8.673617379884035e-19 -1.5625e-2c 1.397357723577228e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024382e-3 1.5625e-2 8.673617379884035e-19c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024378e-3 1.4227642276422765e-2,3.0487804878048756e-3 1.5625e-2 -2.6020852139652106e-18c 1.3973577235772343e-3,-3.048780487804878e-3 -2.921747967479677e-3,-1.0670731707317072e-2 -2.6020852139652106e-18 -1.5625e-2c 2.921747967479674e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -2.6020852139652106e-18c 2.5406504065040593e-3,7.240853658536585e-3 -2.540650406504061e-3,2.4009146341463415e-2 5.204170427930421e-18 3.125e-2c 2.5406504065040663e-3,7.240853658536585e-3 1.2703252032520325e-2,4.9542682926829295e-3 1.5625e-2 8.673617379884035e-19c 2.9217479674796673e-3,-4.954268292682929e-3 -1.3973577235772438e-3,-1.2576219512195123e-2 -2.6020852139652106e-18 -1.5625e-2c 1.3973577235772273e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024402e-3 1.5625e-2 -2.6020852139652106e-18" /></g></g><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,60.497760843135275)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1,0.0 c 0.11382113821138212,2.4390243902439015e-2 0.22764227642276424,4.878048780487803e-2 0.25 -1.3877787807814457e-17c 2.2357723577235752e-2,-4.8780487804878044e-2 -4.674796747967481e-2,-0.17073170731707316 -1.3877787807814457e-17 -0.25c 4.6747967479674794e-2,-7.926829268292679e-2 0.2093495934959349,-0.11585365853658537 0.25 -1.3877787807814457e-17c 4.0650406504064936e-2,0.11585365853658536 -4.065040650406502e-2,0.38414634146341464 2.7755575615628914e-17 0.5c 4.065040650406505e-2,0.11585365853658536 0.2032520325203252,7.926829268292689e-2 0.25 4.163336342344337e-17c 4.674796747967468e-2,-7.926829268292684e-2 -2.2357723577235877e-2,-0.20121951219512196 -1.3877787807814457e-17 -0.25c 2.235772357723564e-2,-4.878048780487804e-2 0.13617886178861793,-2.4390243902439025e-2 0.25 -1.3877787807814457e-17" /></g></g></g></svg>
− diagrams/sqUpDownOverlayD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="266.5475369274488" font-size="1" viewBox="0 0 400 267"><g><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(158,158,255)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048803e-3 2.845528455284553e-2,6.097560975609761e-3 3.125e-2 5.382957575621354e-18c 2.7947154471544703e-3,-6.097560975609755e-3 -5.843495934959347e-3,-2.1341463414634144e-2 5.382957575621354e-18 -3.125e-2c 5.843495934959352e-3,-9.908536585365847e-3 2.6168699186991867e-2,-1.4481707317073165e-2 3.125e-2 5.382957575621354e-18c 5.0813008130081135e-3,1.4481707317073171e-2 -5.081300813008139e-3,4.801829268292683e-2 -1.0765915151242708e-17 6.25e-2c 5.081300813008127e-3,1.4481707317073171e-2 2.540650406504065e-2,9.908536585365868e-3 3.125e-2 1.2321851479528582e-17c 5.843495934959338e-3,-9.908536585365854e-3 -2.794715447154479e-3,-2.5152439024390245e-2 5.382957575621354e-18 -3.125e-2c 2.7947154471544564e-3,-6.097560975609754e-3 1.702235772357724e-2,-3.0487804878048743e-3 3.125e-2 5.382957575621354e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048808e-3 2.845528455284553e-2,6.0975609756097615e-3 3.125e-2 7.117681051598161e-18c 2.7947154471544707e-3,-6.097560975609755e-3 -5.843495934959345e-3,-2.1341463414634144e-2 7.117681051598161e-18 -3.125e-2c 5.843495934959353e-3,-9.908536585365847e-3 2.6168699186991867e-2,-1.4481707317073165e-2 3.125e-2 7.117681051598161e-18c 5.081300813008113e-3,1.4481707317073171e-2 -5.081300813008141e-3,4.801829268292683e-2 -1.4235362103196322e-17 6.25e-2c 5.0813008130081265e-3,1.4481707317073171e-2 2.5406504065040646e-2,9.908536585365868e-3 3.125e-2 1.405657495550539e-17c 5.843495934959339e-3,-9.908536585365854e-3 -2.7947154471544776e-3,-2.5152439024390245e-2 7.117681051598161e-18 -3.125e-2c 2.794715447154457e-3,-6.097560975609754e-3 1.702235772357724e-2,-3.0487804878048734e-3 3.125e-2 7.117681051598161e-18c 1.5243902439024425e-3,-7.113821138211382e-3 3.048780487804885e-3,-1.4227642276422764e-2 7.895649215741098e-18 -1.5625e-2c -3.048780487804877e-3,-1.3973577235772362e-3 -1.0670731707317074e-2,2.92174796747967e-3 -1.5625e-2 -7.895649215741098e-18c -4.9542682926829226e-3,-2.9217479674796777e-3 -7.240853658536578e-3,-1.3084349593495935e-2 7.895649215741098e-18 -1.5625e-2c 7.240853658536586e-3,-2.5406504065040546e-3 2.4009146341463415e-2,2.540650406504077e-3 3.125e-2 1.5791298431482197e-17c 7.240853658536586e-3,-2.5406504065040615e-3 4.954268292682937e-3,-1.2703252032520323e-2 1.1365096167694712e-17 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796707e-3 -1.2576219512195123e-2,1.3973577235772354e-3 -1.5625e-2 -7.895649215741098e-18c -3.0487804878048764e-3,-1.3973577235772293e-3 -1.5243902439024343e-3,-8.51117886178862e-3 7.895649215741098e-18 -1.5625e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.555936328285875e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959349e-3,-2.1341463414634144e-2 1.555936328285875e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073168e-2 3.125e-2 1.555936328285875e-18c 5.081300813008115e-3,1.448170731707317e-2 -5.081300813008133e-3,4.801829268292683e-2 -3.11187265657175e-18 6.25e-2c 5.081300813008129e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365864e-3 3.125e-2 8.494830232193103e-18c 5.843495934959337e-3,-9.908536585365856e-3 -2.794715447154482e-3,-2.5152439024390245e-2 1.555936328285875e-18 -3.125e-2c 2.794715447154456e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048764e-3 3.125e-2 1.555936328285875e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c 1.2195121951219514e-2,-5.691056910569106e-2 2.439024390243903e-2,-0.11382113821138212 7.654042494670958e-18 -0.125c -2.4390243902439022e-2,-1.117886178861788e-2 -8.536585365853658e-2,2.3373983739837394e-2 -0.125 -7.654042494670958e-18c -3.9634146341463394e-2,-2.3373983739837404e-2 -5.792682926829267e-2,-0.10467479674796745 7.654042494670958e-18 -0.125c 5.792682926829268e-2,-2.032520325203246e-2 0.19207317073170732,2.032520325203253e-2 0.25 1.5308084989341915e-17c 5.792682926829268e-2,-2.0325203252032516e-2 3.963414634146346e-2,-0.1016260162601626 3.540961811029987e-17 -0.125c -3.963414634146342e-2,-2.337398373983735e-2 -0.10060975609756098,1.1178861788617926e-2 -0.125 -7.654042494670958e-18c -2.439024390243902e-2,-1.1178861788617824e-2 -1.2195121951219506e-2,-6.808943089430897e-2 7.654042494670958e-18 -0.125c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.268292682926829e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.9817073170731697e-2 -5.233739837398373e-2,2.8963414634146332e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016229e-2,-2.896341463414634e-2 1.0162601626016272e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731732e-2 -6.25e-2 -2.1531830302485416e-17c -1.1686991869918674e-2,1.981707317073171e-2 5.5894308943089605e-3,5.030487804878049e-2 -7.654042494670958e-18 6.25e-2c -5.589430894308913e-3,1.219512195121951e-2 -3.404471544715448e-2,6.09756097560975e-3 -6.25e-2 -7.654042494670958e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.555936328285875e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959349e-3,-2.1341463414634144e-2 1.555936328285875e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073168e-2 3.125e-2 1.555936328285875e-18c 5.081300813008115e-3,1.448170731707317e-2 -5.081300813008133e-3,4.801829268292683e-2 -3.11187265657175e-18 6.25e-2c 5.081300813008129e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365864e-3 3.125e-2 8.494830232193103e-18c 5.843495934959337e-3,-9.908536585365856e-3 -2.794715447154482e-3,-2.5152439024390245e-2 1.555936328285875e-18 -3.125e-2c 2.794715447154456e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048764e-3 3.125e-2 1.555936328285875e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804875e-3 2.845528455284553e-2,6.09756097560975e-3 3.125e-2 -5.3829575756213524e-18c 2.7947154471544685e-3,-6.097560975609756e-3 -5.843495934959354e-3,-2.1341463414634144e-2 -5.3829575756213524e-18 -3.125e-2c 5.843495934959348e-3,-9.90853658536585e-3 2.616869918699186e-2,-1.4481707317073175e-2 3.125e-2 -5.3829575756213524e-18c 5.081300813008119e-3,1.4481707317073168e-2 -5.081300813008121e-3,4.801829268292683e-2 1.0765915151242705e-17 6.25e-2c 5.081300813008133e-3,1.4481707317073168e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.555936328285876e-18c 5.8434959349593345e-3,-9.908536585365857e-3 -2.7947154471544876e-3,-2.5152439024390245e-2 -5.3829575756213524e-18 -3.125e-2c 2.7947154471544547e-3,-6.0975609756097554e-3 1.702235772357724e-2,-3.0487804878048803e-3 3.125e-2 -5.3829575756213524e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c -3.0487804878048834e-3,1.4227642276422764e-2 -6.097560975609767e-3,2.8455284552845527e-2 -1.1964277184146717e-17 3.125e-2c 6.097560975609755e-3,2.7947154471544716e-3 2.1341463414634148e-2,-5.843495934959342e-3 3.125e-2 1.1964277184146717e-17c 9.908536585365847e-3,5.843495934959354e-3 1.448170731707316e-2,2.616869918699187e-2 -1.1964277184146717e-17 3.125e-2c -1.4481707317073171e-2,5.081300813008111e-3 -4.801829268292683e-2,-5.081300813008148e-3 -6.25e-2 -2.3928554368293434e-17c -1.4481707317073171e-2,5.081300813008125e-3 -9.908536585365873e-3,2.5406504065040646e-2 -1.8903171088053945e-17 3.125e-2c 9.908536585365854e-3,5.84349593495934e-3 2.5152439024390245e-2,-2.7947154471544737e-3 3.125e-2 1.1964277184146717e-17c 6.097560975609754e-3,2.7947154471544577e-3 3.0487804878048708e-3,1.702235772357724e-2 -1.1964277184146717e-17 3.125e-2c 7.113821138211382e-3,1.5243902439024421e-3 1.4227642276422764e-2,3.0487804878048842e-3 1.5625e-2 6.938893903907228e-18c 1.397357723577236e-3,-3.0487804878048773e-3 -2.9217479674796703e-3,-1.0670731707317074e-2 6.938893903907228e-18 -1.5625e-2c 2.9217479674796772e-3,-4.954268292682923e-3 1.3084349593495935e-2,-7.240853658536579e-3 1.5625e-2 6.938893903907228e-18c 2.540650406504055e-3,7.240853658536586e-3 -2.540650406504076e-3,2.4009146341463415e-2 -1.3877787807814457e-17 3.125e-2c 2.540650406504062e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682937e-3 1.5625e-2 1.0408340855860843e-17c 2.9217479674796703e-3,-4.954268292682927e-3 -1.397357723577236e-3,-1.2576219512195123e-2 6.938893903907228e-18 -1.5625e-2c 1.397357723577229e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.524390243902435e-3 1.5625e-2 6.938893903907228e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 -3.0252436823077695e-34c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 -3.0252436823077695e-34 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 -3.0252436823077695e-34c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 6.050487364615539e-34 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.4694469519536138e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 -3.0252436823077695e-34 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 -3.0252436823077695e-34c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.268292682926829e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.9817073170731697e-2,1.1686991869918699e-2 2.8963414634146343e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016234e-2 -9.603658536585366e-2,-1.0162601626016255e-2 -0.125 7.654042494670958e-18c -2.896341463414634e-2,1.0162601626016262e-2 -1.981707317073172e-2,5.08130081300813e-2 -1.0050766560478977e-17 6.25e-2c 1.981707317073171e-2,1.168699186991867e-2 5.030487804878049e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.219512195121951e-2,5.58943089430891e-3 6.097560975609756e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048803e-3 2.845528455284553e-2,6.097560975609761e-3 3.125e-2 5.382957575621354e-18c 2.7947154471544703e-3,-6.097560975609755e-3 -5.843495934959347e-3,-2.1341463414634144e-2 5.382957575621354e-18 -3.125e-2c 5.843495934959352e-3,-9.908536585365847e-3 2.6168699186991867e-2,-1.4481707317073165e-2 3.125e-2 5.382957575621354e-18c 5.0813008130081135e-3,1.4481707317073171e-2 -5.081300813008139e-3,4.801829268292683e-2 -1.0765915151242708e-17 6.25e-2c 5.081300813008127e-3,1.4481707317073171e-2 2.540650406504065e-2,9.908536585365868e-3 3.125e-2 1.2321851479528582e-17c 5.843495934959338e-3,-9.908536585365854e-3 -2.794715447154479e-3,-2.5152439024390245e-2 5.382957575621354e-18 -3.125e-2c 2.7947154471544564e-3,-6.097560975609754e-3 1.702235772357724e-2,-3.0487804878048743e-3 3.125e-2 5.382957575621354e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.555936328285875e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959351e-3,-2.1341463414634144e-2 -1.555936328285875e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073171e-2 3.125e-2 -1.555936328285875e-18c 5.081300813008117e-3,1.448170731707317e-2 -5.081300813008127e-3,4.801829268292683e-2 3.11187265657175e-18 6.25e-2c 5.081300813008131e-3,1.448170731707317e-2 2.540650406504065e-2,9.90853658536586e-3 3.125e-2 5.382957575621353e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544846e-3,-2.5152439024390245e-2 -1.555936328285875e-18 -3.125e-2c 2.794715447154455e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.048780487804878e-3 3.125e-2 -1.555936328285875e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048808e-3 2.845528455284553e-2,6.0975609756097615e-3 3.125e-2 7.117681051598161e-18c 2.7947154471544707e-3,-6.097560975609755e-3 -5.843495934959345e-3,-2.1341463414634144e-2 7.117681051598161e-18 -3.125e-2c 5.843495934959353e-3,-9.908536585365847e-3 2.6168699186991867e-2,-1.4481707317073165e-2 3.125e-2 7.117681051598161e-18c 5.081300813008113e-3,1.4481707317073171e-2 -5.081300813008141e-3,4.801829268292683e-2 -1.4235362103196322e-17 6.25e-2c 5.0813008130081265e-3,1.4481707317073171e-2 2.5406504065040646e-2,9.908536585365868e-3 3.125e-2 1.405657495550539e-17c 5.843495934959339e-3,-9.908536585365854e-3 -2.7947154471544776e-3,-2.5152439024390245e-2 7.117681051598161e-18 -3.125e-2c 2.794715447154457e-3,-6.097560975609754e-3 1.702235772357724e-2,-3.0487804878048734e-3 3.125e-2 7.117681051598161e-18c 1.5243902439024425e-3,-7.113821138211382e-3 3.048780487804885e-3,-1.4227642276422764e-2 7.895649215741098e-18 -1.5625e-2c -3.048780487804877e-3,-1.3973577235772362e-3 -1.0670731707317074e-2,2.92174796747967e-3 -1.5625e-2 -7.895649215741098e-18c -4.9542682926829226e-3,-2.9217479674796777e-3 -7.240853658536578e-3,-1.3084349593495935e-2 7.895649215741098e-18 -1.5625e-2c 7.240853658536586e-3,-2.5406504065040546e-3 2.4009146341463415e-2,2.540650406504077e-3 3.125e-2 1.5791298431482197e-17c 7.240853658536586e-3,-2.5406504065040615e-3 4.954268292682937e-3,-1.2703252032520323e-2 1.1365096167694712e-17 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796707e-3 -1.2576219512195123e-2,1.3973577235772354e-3 -1.5625e-2 -7.895649215741098e-18c -3.0487804878048764e-3,-1.3973577235772293e-3 -1.5243902439024343e-3,-8.51117886178862e-3 7.895649215741098e-18 -1.5625e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634144e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365849e-3,-5.843495934959351e-3 -1.4481707317073168e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008115e-3 4.801829268292683e-2,5.081300813008133e-3 6.25e-2 3.827021247335479e-18c 1.448170731707317e-2,-5.081300813008129e-3 9.908536585365864e-3,-2.540650406504065e-2 8.852404527574968e-18 -3.125e-2c -9.908536585365856e-3,-5.843495934959337e-3 -2.5152439024390245e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609755e-3,-2.794715447154456e-3 -3.0487804878048764e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211382e-3,-1.524390243902443e-3 -1.4227642276422764e-2,-3.048780487804886e-3 -1.5625e-2 -8.852404527574968e-18c -1.3973577235772364e-3,3.048780487804877e-3 2.921747967479669e-3,1.0670731707317074e-2 -8.852404527574968e-18 1.5625e-2c -2.9217479674796777e-3,4.9542682926829226e-3 -1.3084349593495935e-2,7.240853658536577e-3 -1.5625e-2 -8.852404527574968e-18c -2.540650406504054e-3,-7.240853658536587e-3 2.5406504065040784e-3,-2.4009146341463415e-2 1.7704809055149936e-17 -3.125e-2c -2.540650406504061e-3,-7.240853658536587e-3 -1.2703252032520321e-2,-4.954268292682938e-3 -1.5625e-2 -1.2321851479528582e-17c -2.9217479674796707e-3,4.954268292682926e-3 1.3973577235772345e-3,1.2576219512195123e-2 -8.852404527574968e-18 1.5625e-2c -1.3973577235772295e-3,3.0487804878048764e-3 -8.51117886178862e-3,1.5243902439024339e-3 -1.5625e-2 -8.852404527574968e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317072e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682924e-3,2.9217479674796746e-3 7.240853658536586e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040585e-3 -2.4009146341463415e-2,-2.5406504065040637e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536585e-3,2.5406504065040654e-3 -4.95426829268293e-3,1.2703252032520325e-2 -2.5126916401197443e-18 1.5625e-2c 4.954268292682928e-3,2.9217479674796677e-3 1.2576219512195123e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048773e-3,1.3973577235772275e-3 1.524390243902439e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.268292682926829e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.9817073170731697e-2 -5.233739837398372e-2,2.8963414634146346e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016236e-2,-2.896341463414634e-2 1.0162601626016248e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -6.223745313143499e-18c -1.168699186991867e-2,1.981707317073171e-2 5.589430894308973e-3,5.030487804878049e-2 7.654042494670958e-18 6.25e-2c -5.589430894308909e-3,1.219512195121951e-2 -3.404471544715448e-2,6.097560975609759e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804876e-3 2.845528455284553e-2,6.097560975609752e-3 3.125e-2 -3.648234099644546e-18c 2.7947154471544685e-3,-6.0975609756097554e-3 -5.843495934959353e-3,-2.1341463414634144e-2 -3.648234099644546e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.4481707317073173e-2 3.125e-2 -3.648234099644546e-18c 5.081300813008118e-3,1.448170731707317e-2 -5.081300813008125e-3,4.801829268292683e-2 7.296468199289092e-18 6.25e-2c 5.081300813008132e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365859e-3 3.125e-2 3.2906598042626823e-18c 5.843495934959335e-3,-9.908536585365856e-3 -2.7947154471544863e-3,-2.5152439024390245e-2 -3.648234099644546e-18 -3.125e-2c 2.7947154471544547e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -3.648234099644546e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024404e-3 1.4227642276422765e-2,3.0487804878048808e-3 1.5625e-2 3.469446951953614e-18c 1.3973577235772354e-3,-3.0487804878048773e-3 -2.921747967479673e-3,-1.0670731707317072e-2 3.469446951953614e-18 -1.5625e-2c 2.9217479674796764e-3,-4.954268292682923e-3 1.3084349593495933e-2,-7.240853658536582e-3 1.5625e-2 3.469446951953614e-18c 2.5406504065040563e-3,7.240853658536586e-3 -2.54065040650407e-3,2.4009146341463415e-2 -6.938893903907228e-18 3.125e-2c 2.5406504065040632e-3,7.240853658536586e-3 1.2703252032520323e-2,4.954268292682934e-3 1.5625e-2 6.938893903907228e-18c 2.9217479674796694e-3,-4.954268292682927e-3 -1.3973577235772388e-3,-1.2576219512195123e-2 3.469446951953614e-18 -1.5625e-2c 1.3973577235772284e-3,-3.048780487804877e-3 8.51117886178862e-3,-1.5243902439024367e-3 1.5625e-2 3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048777e-3 2.845528455284553e-2,6.0975609756097554e-3 3.125e-2 1.7878714769093215e-19c 2.7947154471544694e-3,-6.0975609756097554e-3 -5.84349593495935e-3,-2.1341463414634144e-2 1.7878714769093215e-19 -3.125e-2c 5.84349593495935e-3,-9.908536585365849e-3 2.6168699186991863e-2,-1.448170731707317e-2 3.125e-2 1.7878714769093215e-19c 5.081300813008116e-3,1.448170731707317e-2 -5.08130081300813e-3,4.801829268292683e-2 -3.575742953818643e-19 6.25e-2c 5.08130081300813e-3,1.448170731707317e-2 2.540650406504065e-2,9.908536585365862e-3 3.125e-2 7.117681051598161e-18c 5.843495934959336e-3,-9.908536585365856e-3 -2.7947154471544833e-3,-2.5152439024390245e-2 1.7878714769093215e-19 -3.125e-2c 2.7947154471544555e-3,-6.097560975609755e-3 1.702235772357724e-2,-3.0487804878048773e-3 3.125e-2 1.7878714769093215e-19c 1.5243902439024408e-3,-7.113821138211383e-3 3.0487804878048816e-3,-1.4227642276422765e-2 4.426202263787484e-18 -1.5625e-2c -3.0487804878048773e-3,-1.3973577235772356e-3 -1.0670731707317072e-2,2.921747967479672e-3 -1.5625e-2 -4.426202263787484e-18c -4.954268292682923e-3,-2.9217479674796764e-3 -7.240853658536581e-3,-1.3084349593495933e-2 4.426202263787484e-18 -1.5625e-2c 7.240853658536586e-3,-2.540650406504056e-3 2.4009146341463415e-2,2.540650406504072e-3 3.125e-2 8.852404527574968e-18c 7.240853658536586e-3,-2.540650406504063e-3 4.954268292682935e-3,-1.2703252032520323e-2 7.895649215741098e-18 -1.5625e-2c -4.954268292682927e-3,-2.9217479674796694e-3 -1.2576219512195123e-2,1.3973577235772382e-3 -1.5625e-2 -4.426202263787484e-18c -3.048780487804877e-3,-1.3973577235772286e-3 -1.5243902439024363e-3,-8.51117886178862e-3 4.426202263787484e-18 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317072e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682924e-3 -1.3084349593495933e-2,7.240853658536583e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504057e-3,-7.240853658536585e-3 2.540650406504068e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536585e-3 -1.2703252032520325e-2,-4.954268292682933e-3 -1.5625e-2 -5.382957575621354e-18c -2.9217479674796686e-3,4.954268292682928e-3 1.3973577235772401e-3,1.2576219512195123e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772282e-3,3.0487804878048773e-3 -8.51117886178862e-3,1.5243902439024376e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634144e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365849e-3,5.843495934959349e-3 1.4481707317073171e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008117e-3 -4.801829268292683e-2,-5.081300813008127e-3 -6.25e-2 3.827021247335479e-18c -1.448170731707317e-2,5.081300813008131e-3 -9.90853658536586e-3,2.540650406504065e-2 -5.0253832802394886e-18 3.125e-2c 9.908536585365856e-3,5.843495934959335e-3 2.5152439024390245e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609755e-3,2.794715447154455e-3 3.048780487804878e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317072e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682924e-3 1.3084349593495932e-2,-7.240853658536585e-3 1.5625e-2 0.0c 2.540650406504058e-3,7.240853658536585e-3 -2.540650406504065e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536585e-3 1.2703252032520325e-2,4.954268292682931e-3 1.5625e-2 3.469446951953614e-18c 2.921747967479668e-3,-4.954268292682928e-3 -1.3973577235772416e-3,-1.2576219512195123e-2 0.0 -1.5625e-2c 1.3973577235772278e-3,-3.0487804878048773e-3 8.51117886178862e-3,-1.5243902439024386e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317072e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682924e-3,-2.9217479674796755e-3 -7.240853658536584e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040576e-3 2.4009146341463415e-2,2.5406504065040663e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536585e-3,-2.5406504065040646e-3 4.954268292682932e-3,-1.2703252032520325e-2 4.426202263787484e-18 -1.5625e-2c -4.954268292682928e-3,-2.9217479674796686e-3 -1.2576219512195123e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048773e-3,-1.397357723577228e-3 -1.5243902439024382e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024373e-3 1.4227642276422765e-2,3.0487804878048747e-3 1.5625e-2 -3.469446951953614e-18c 1.397357723577234e-3,-3.048780487804878e-3 -2.9217479674796772e-3,-1.0670731707317072e-2 -3.469446951953614e-18 -1.5625e-2c 2.9217479674796738e-3,-4.954268292682925e-3 1.308434959349593e-2,-7.2408536585365875e-3 1.5625e-2 -3.469446951953614e-18c 2.5406504065040598e-3,7.240853658536584e-3 -2.5406504065040598e-3,2.4009146341463415e-2 6.938893903907228e-18 3.125e-2c 2.5406504065040667e-3,7.240853658536584e-3 1.2703252032520327e-2,4.954268292682929e-3 1.5625e-2 0.0c 2.921747967479667e-3,-4.954268292682929e-3 -1.3973577235772445e-3,-1.2576219512195123e-2 -3.469446951953614e-18 -1.5625e-2c 1.3973577235772271e-3,-3.0487804878048777e-3 8.51117886178862e-3,-1.5243902439024406e-3 1.5625e-2 -3.469446951953614e-18" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(142,142,255)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953614e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953614e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953614e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907228e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953614e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953614e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.268292682926829e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.9817073170731697e-2 -5.233739837398373e-2,2.8963414634146332e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016229e-2,-2.896341463414634e-2 1.0162601626016272e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731732e-2 -6.25e-2 -2.1531830302485416e-17c -1.1686991869918674e-2,1.981707317073171e-2 5.5894308943089605e-3,5.030487804878049e-2 -7.654042494670958e-18 6.25e-2c -5.589430894308913e-3,1.219512195121951e-2 -3.404471544715448e-2,6.09756097560975e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 5.691056910569106e-2,1.2195121951219511e-2 0.11382113821138212,2.4390243902439022e-2 0.125 7.151485907637286e-19c 1.1178861788617878e-2,-2.4390243902439022e-2 -2.33739837398374e-2,-8.536585365853658e-2 7.151485907637286e-19 -0.125c 2.33739837398374e-2,-3.9634146341463394e-2 0.10467479674796745,-5.792682926829268e-2 0.125 7.151485907637286e-19c 2.0325203252032464e-2,5.792682926829268e-2 -2.032520325203252e-2,0.19207317073170732 -1.4302971815274572e-18 0.25c 2.032520325203252e-2,5.792682926829268e-2 0.1016260162601626,3.963414634146345e-2 0.125 2.8470724206392644e-17c 2.3373983739837345e-2,-3.963414634146342e-2 -1.1178861788617933e-2,-0.10060975609756098 7.151485907637286e-19 -0.125c 1.1178861788617822e-2,-2.439024390243902e-2 6.808943089430897e-2,-1.219512195121951e-2 0.125 7.151485907637286e-19c 6.097560975609763e-3,-2.845528455284553e-2 1.2195121951219526e-2,-5.691056910569106e-2 1.7704809055149936e-17 -6.25e-2c -1.219512195121951e-2,-5.589430894308942e-3 -4.268292682926829e-2,1.1686991869918688e-2 -6.25e-2 -1.7704809055149936e-17c -1.9817073170731694e-2,-1.1686991869918706e-2 -2.8963414634146326e-2,-5.233739837398373e-2 1.7704809055149936e-17 -6.25e-2c 2.8963414634146343e-2,-1.0162601626016224e-2 9.603658536585366e-2,1.0162601626016288e-2 0.125 3.540961811029987e-17c 2.8963414634146343e-2,-1.0162601626016251e-2 1.981707317073174e-2,-5.081300813008129e-2 3.158259686296439e-17 -6.25e-2c -1.9817073170731708e-2,-1.1686991869918678e-2 -5.030487804878049e-2,5.589430894308953e-3 -6.25e-2 -1.7704809055149936e-17c -1.2195121951219507e-2,-5.5894308943089145e-3 -6.097560975609745e-3,-3.404471544715448e-2 1.7704809055149936e-17 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.268292682926829e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.9817073170731697e-2 -5.233739837398373e-2,2.8963414634146332e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016229e-2,-2.896341463414634e-2 1.0162601626016272e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731732e-2 -6.25e-2 -2.1531830302485416e-17c -1.1686991869918674e-2,1.981707317073171e-2 5.5894308943089605e-3,5.030487804878049e-2 -7.654042494670958e-18 6.25e-2c -5.589430894308913e-3,1.219512195121951e-2 -3.404471544715448e-2,6.09756097560975e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953614e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953614e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953614e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907228e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953614e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953614e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 5.691056910569106e-2,1.2195121951219504e-2 0.11382113821138212,2.4390243902439008e-2 0.125 -1.4592936398578184e-17c 1.1178861788617874e-2,-2.4390243902439022e-2 -2.337398373983741e-2,-8.536585365853658e-2 -1.4592936398578184e-17 -0.125c 2.3373983739837397e-2,-3.9634146341463394e-2 0.10467479674796745,-5.792682926829269e-2 0.125 -1.4592936398578184e-17c 2.032520325203247e-2,5.792682926829268e-2 -2.03252032520325e-2,0.19207317073170732 2.918587279715637e-17 0.25c 2.0325203252032527e-2,5.792682926829268e-2 0.1016260162601626,3.9634146341463436e-2 0.125 1.3162639217050729e-17c 2.337398373983734e-2,-3.963414634146342e-2 -1.1178861788617945e-2,-0.10060975609756098 -1.4592936398578184e-17 -0.125c 1.1178861788617819e-2,-2.439024390243902e-2 6.808943089430897e-2,-1.2195121951219518e-2 0.125 -1.4592936398578184e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c -0.11382113821138212,-2.4390243902439008e-2 -0.22764227642276424,-4.8780487804878016e-2 -0.25 3.061616997868383e-17c -2.235772357723575e-2,4.8780487804878044e-2 4.674796747967482e-2,0.17073170731707316 3.061616997868383e-17 0.25c -4.6747967479674794e-2,7.926829268292679e-2 -0.20934959349593488,0.11585365853658539 -0.25 3.061616997868383e-17c -4.065040650406494e-2,-0.11585365853658536 4.065040650406499e-2,-0.38414634146341464 -6.123233995736766e-17 -0.5c -4.0650406504065054e-2,-0.11585365853658536 -0.2032520325203252,-7.926829268292687e-2 -0.25 -2.4894981252573997e-17c -4.674796747967468e-2,7.926829268292684e-2 2.235772357723589e-2,0.20121951219512196 3.061616997868383e-17 0.25c -2.2357723577235637e-2,4.878048780487804e-2 -0.13617886178861793,2.4390243902439036e-2 -0.25 3.061616997868383e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 5.691056910569106e-2,1.2195121951219504e-2 0.11382113821138212,2.4390243902439008e-2 0.125 -1.4592936398578184e-17c 1.1178861788617874e-2,-2.4390243902439022e-2 -2.337398373983741e-2,-8.536585365853658e-2 -1.4592936398578184e-17 -0.125c 2.3373983739837397e-2,-3.9634146341463394e-2 0.10467479674796745,-5.792682926829269e-2 0.125 -1.4592936398578184e-17c 2.032520325203247e-2,5.792682926829268e-2 -2.03252032520325e-2,0.19207317073170732 2.918587279715637e-17 0.25c 2.0325203252032527e-2,5.792682926829268e-2 0.1016260162601626,3.9634146341463436e-2 0.125 1.3162639217050729e-17c 2.337398373983734e-2,-3.963414634146342e-2 -1.1178861788617945e-2,-0.10060975609756098 -1.4592936398578184e-17 -0.125c 1.1178861788617819e-2,-2.439024390243902e-2 6.808943089430897e-2,-1.2195121951219518e-2 0.125 -1.4592936398578184e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953613e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953613e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953613e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907226e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953613e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953613e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953613e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953613e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953613e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907226e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953613e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953613e-18c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.097560975609763e-3 5.691056910569106e-2,1.2195121951219526e-2 6.25e-2 1.734723475976807e-17c 5.589430894308942e-3,-1.219512195121951e-2 -1.1686991869918688e-2,-4.268292682926829e-2 1.734723475976807e-17 -6.25e-2c 1.1686991869918706e-2,-1.9817073170731694e-2 5.233739837398373e-2,-2.8963414634146326e-2 6.25e-2 1.734723475976807e-17c 1.0162601626016224e-2,2.8963414634146343e-2 -1.0162601626016286e-2,9.603658536585366e-2 -3.469446951953614e-17 0.125c 1.0162601626016251e-2,2.8963414634146343e-2 5.081300813008129e-2,1.981707317073174e-2 6.25e-2 3.122502256758253e-17c 1.1686991869918678e-2,-1.9817073170731708e-2 -5.589430894308953e-3,-5.030487804878049e-2 1.734723475976807e-17 -6.25e-2c 5.5894308943089145e-3,-1.2195121951219507e-2 3.404471544715448e-2,-6.097560975609745e-3 6.25e-2 1.734723475976807e-17c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953613e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953613e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953613e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907226e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953613e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953613e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.268292682926829e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.9817073170731697e-2 -5.233739837398373e-2,2.8963414634146332e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016229e-2,-2.896341463414634e-2 1.0162601626016272e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731732e-2 -6.25e-2 -2.1531830302485416e-17c -1.1686991869918674e-2,1.981707317073171e-2 5.5894308943089605e-3,5.030487804878049e-2 -7.654042494670958e-18 6.25e-2c -5.589430894308913e-3,1.219512195121951e-2 -3.404471544715448e-2,6.09756097560975e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 5.691056910569106e-2,1.2195121951219511e-2 0.11382113821138212,2.4390243902439022e-2 0.125 7.151485907637286e-19c 1.1178861788617878e-2,-2.4390243902439022e-2 -2.33739837398374e-2,-8.536585365853658e-2 7.151485907637286e-19 -0.125c 2.33739837398374e-2,-3.9634146341463394e-2 0.10467479674796745,-5.792682926829268e-2 0.125 7.151485907637286e-19c 2.0325203252032464e-2,5.792682926829268e-2 -2.032520325203252e-2,0.19207317073170732 -1.4302971815274572e-18 0.25c 2.032520325203252e-2,5.792682926829268e-2 0.1016260162601626,3.963414634146345e-2 0.125 2.8470724206392644e-17c 2.3373983739837345e-2,-3.963414634146342e-2 -1.1178861788617933e-2,-0.10060975609756098 7.151485907637286e-19 -0.125c 1.1178861788617822e-2,-2.439024390243902e-2 6.808943089430897e-2,-1.219512195121951e-2 0.125 7.151485907637286e-19c 6.097560975609763e-3,-2.845528455284553e-2 1.2195121951219526e-2,-5.691056910569106e-2 1.7704809055149936e-17 -6.25e-2c -1.219512195121951e-2,-5.589430894308942e-3 -4.268292682926829e-2,1.1686991869918688e-2 -6.25e-2 -1.7704809055149936e-17c -1.9817073170731694e-2,-1.1686991869918706e-2 -2.8963414634146326e-2,-5.233739837398373e-2 1.7704809055149936e-17 -6.25e-2c 2.8963414634146343e-2,-1.0162601626016224e-2 9.603658536585366e-2,1.0162601626016288e-2 0.125 3.540961811029987e-17c 2.8963414634146343e-2,-1.0162601626016251e-2 1.981707317073174e-2,-5.081300813008129e-2 3.158259686296439e-17 -6.25e-2c -1.9817073170731708e-2,-1.1686991869918678e-2 -5.030487804878049e-2,5.589430894308953e-3 -6.25e-2 -1.7704809055149936e-17c -1.2195121951219507e-2,-5.5894308943089145e-3 -6.097560975609745e-3,-3.404471544715448e-2 1.7704809055149936e-17 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.268292682926829e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.9817073170731697e-2 -5.233739837398373e-2,2.8963414634146332e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016229e-2,-2.896341463414634e-2 1.0162601626016272e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.896341463414634e-2 -5.08130081300813e-2,-1.9817073170731732e-2 -6.25e-2 -2.1531830302485416e-17c -1.1686991869918674e-2,1.981707317073171e-2 5.5894308943089605e-3,5.030487804878049e-2 -7.654042494670958e-18 6.25e-2c -5.589430894308913e-3,1.219512195121951e-2 -3.404471544715448e-2,6.09756097560975e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853658e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.9634146341463394e-2,2.3373983739837397e-2 5.7926829268292686e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032468e-2 -0.19207317073170732,-2.032520325203251e-2 -0.25 1.5308084989341915e-17c -5.792682926829268e-2,2.0325203252032523e-2 -3.963414634146344e-2,0.1016260162601626 -2.0101533120957954e-17 0.125c 3.963414634146342e-2,2.337398373983734e-2 0.10060975609756098,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243902e-2,1.117886178861782e-2 1.2195121951219513e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.097560975609757e-3 5.691056910569106e-2,1.2195121951219514e-2 6.25e-2 3.469446951953614e-18c 5.58943089430894e-3,-1.2195121951219511e-2 -1.1686991869918699e-2,-4.268292682926829e-2 3.469446951953614e-18 -6.25e-2c 1.1686991869918702e-2,-1.9817073170731697e-2 5.2337398373983726e-2,-2.8963414634146336e-2 6.25e-2 3.469446951953614e-18c 1.016260162601623e-2,2.896341463414634e-2 -1.0162601626016265e-2,9.603658536585366e-2 -6.938893903907228e-18 0.125c 1.0162601626016258e-2,2.896341463414634e-2 5.08130081300813e-2,1.981707317073173e-2 6.25e-2 1.734723475976807e-17c 1.1686991869918674e-2,-1.981707317073171e-2 -5.589430894308964e-3,-5.030487804878049e-2 3.469446951953614e-18 -6.25e-2c 5.589430894308912e-3,-1.219512195121951e-2 3.404471544715448e-2,-6.097560975609753e-3 6.25e-2 3.469446951953614e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.268292682926829e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.9817073170731697e-2,-1.1686991869918702e-2 -2.8963414634146336e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.016260162601623e-2 9.603658536585366e-2,1.0162601626016265e-2 0.125 7.654042494670958e-18c 2.896341463414634e-2,-1.0162601626016258e-2 1.981707317073173e-2,-5.08130081300813e-2 1.7704809055149936e-17 -6.25e-2c -1.981707317073171e-2,-1.1686991869918674e-2 -5.030487804878049e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.219512195121951e-2,-5.589430894308912e-3 -6.097560975609753e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.097560975609751e-3 5.691056910569106e-2,1.2195121951219502e-2 6.25e-2 -1.0408340855860843e-17c 5.589430894308937e-3,-1.2195121951219513e-2 -1.1686991869918707e-2,-4.268292682926829e-2 -1.0408340855860843e-17 -6.25e-2c 1.1686991869918697e-2,-1.98170731707317e-2 5.233739837398372e-2,-2.896341463414635e-2 6.25e-2 -1.0408340855860843e-17c 1.0162601626016237e-2,2.896341463414634e-2 -1.0162601626016244e-2,9.603658536585366e-2 2.0816681711721685e-17 0.125c 1.0162601626016265e-2,2.896341463414634e-2 5.08130081300813e-2,1.9817073170731718e-2 6.25e-2 3.469446951953614e-18c 1.1686991869918669e-2,-1.9817073170731715e-2 -5.589430894308975e-3,-5.030487804878049e-2 -1.0408340855860843e-17 -6.25e-2c 5.589430894308909e-3,-1.2195121951219511e-2 3.404471544715448e-2,-6.097560975609761e-3 6.25e-2 -1.0408340855860843e-17" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(121,121,255)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 c 0.11382113821138212,2.4390243902439008e-2 0.22764227642276424,4.8780487804878016e-2 0.25 -2.7755575615628914e-17c 2.235772357723575e-2,-4.8780487804878044e-2 -4.674796747967482e-2,-0.17073170731707316 -2.7755575615628914e-17 -0.25c 4.6747967479674794e-2,-7.926829268292679e-2 0.2093495934959349,-0.11585365853658539 0.25 -2.7755575615628914e-17c 4.065040650406494e-2,0.11585365853658536 -4.0650406504065e-2,0.38414634146341464 5.551115123125783e-17 0.5c 4.0650406504065054e-2,0.11585365853658536 0.2032520325203252,7.926829268292687e-2 0.25 2.7755575615628914e-17c 4.674796747967468e-2,-7.926829268292684e-2 -2.2357723577235887e-2,-0.20121951219512196 -2.7755575615628914e-17 -0.25c 2.2357723577235637e-2,-4.878048780487804e-2 0.13617886178861793,-2.4390243902439032e-2 0.25 -2.7755575615628914e-17c 2.439024390243903e-2,-0.11382113821138212 4.878048780487806e-2,-0.22764227642276424 1.5308084989341915e-17 -0.25c -4.8780487804878044e-2,-2.235772357723576e-2 -0.17073170731707316,4.674796747967479e-2 -0.25 -1.5308084989341915e-17c -7.926829268292679e-2,-4.674796747967481e-2 -0.11585365853658534,-0.2093495934959349 1.5308084989341915e-17 -0.25c 0.11585365853658536,-4.065040650406492e-2 0.38414634146341464,4.065040650406506e-2 0.5 3.061616997868383e-17c 0.11585365853658536,-4.065040650406503e-2 7.926829268292691e-2,-0.2032520325203252 7.081923622059975e-17 -0.25c -7.926829268292684e-2,-4.67479674796747e-2 -0.20121951219512196,2.2357723577235852e-2 -0.25 -1.5308084989341915e-17c -4.878048780487804e-2,-2.2357723577235648e-2 -2.439024390243901e-2,-0.13617886178861793 1.5308084989341915e-17 -0.25c 0.11382113821138212,2.4390243902439008e-2 0.22764227642276424,4.8780487804878016e-2 0.25 -2.7755575615628914e-17c 2.235772357723575e-2,-4.8780487804878044e-2 -4.674796747967482e-2,-0.17073170731707316 -2.7755575615628914e-17 -0.25c 4.6747967479674794e-2,-7.926829268292679e-2 0.2093495934959349,-0.11585365853658539 0.25 -2.7755575615628914e-17c 4.065040650406494e-2,0.11585365853658536 -4.0650406504065e-2,0.38414634146341464 5.551115123125783e-17 0.5c 4.0650406504065054e-2,0.11585365853658536 0.2032520325203252,7.926829268292687e-2 0.25 2.7755575615628914e-17c 4.674796747967468e-2,-7.926829268292684e-2 -2.2357723577235887e-2,-0.20121951219512196 -2.7755575615628914e-17 -0.25c 2.2357723577235637e-2,-4.878048780487804e-2 0.13617886178861793,-2.4390243902439032e-2 0.25 -2.7755575615628914e-17c -4.878048780487803e-2,0.22764227642276424 -9.756097560975606e-2,0.4552845528455285 3.061616997868383e-17 0.5c 9.756097560975609e-2,4.4715447154471503e-2 0.3414634146341463,-9.349593495934963e-2 0.5 -3.061616997868383e-17c 0.15853658536585358,9.349593495934959e-2 0.23170731707317074,0.4186991869918698 3.061616997868383e-17 0.5c -0.23170731707317072,8.130081300812987e-2 -0.7682926829268293,-8.130081300813004e-2 -1.0 6.123233995736766e-17c -0.23170731707317072,8.13008130081301e-2 -0.15853658536585377,0.4065040650406504 -8.040613248383182e-17 0.5c 0.1585365853658537,9.349593495934937e-2 0.4024390243902439,-4.471544715447176e-2 0.5 -3.061616997868383e-17c 9.756097560975607e-2,4.471544715447128e-2 4.878048780487805e-2,0.27235772357723587 3.061616997868383e-17 0.5c 0.11382113821138212,2.4390243902439036e-2 0.22764227642276424,4.878048780487807e-2 0.25 2.775557561562891e-17c 2.2357723577235762e-2,-4.8780487804878044e-2 -4.674796747967478e-2,-0.17073170731707316 2.775557561562891e-17 -0.25c 4.674796747967481e-2,-7.926829268292679e-2 0.2093495934959349,-0.11585365853658533 0.25 2.775557561562891e-17c 4.0650406504064915e-2,0.11585365853658536 -4.065040650406508e-2,0.38414634146341464 -5.551115123125782e-17 0.5c 4.0650406504065026e-2,0.11585365853658536 0.2032520325203252,7.926829268292693e-2 0.25 8.326672684688674e-17c 4.67479674796747e-2,-7.926829268292684e-2 -2.2357723577235845e-2,-0.20121951219512196 2.775557561562891e-17 -0.25c 2.235772357723565e-2,-4.878048780487804e-2 0.13617886178861793,-2.4390243902439004e-2 0.25 2.775557561562891e-17c 2.439024390243903e-2,-0.11382113821138212 4.878048780487806e-2,-0.22764227642276424 1.5308084989341915e-17 -0.25c -4.8780487804878044e-2,-2.235772357723576e-2 -0.17073170731707316,4.674796747967479e-2 -0.25 -1.5308084989341915e-17c -7.926829268292679e-2,-4.674796747967481e-2 -0.11585365853658534,-0.2093495934959349 1.5308084989341915e-17 -0.25c 0.11585365853658536,-4.065040650406492e-2 0.38414634146341464,4.065040650406506e-2 0.5 3.061616997868383e-17c 0.11585365853658536,-4.065040650406503e-2 7.926829268292691e-2,-0.2032520325203252 7.081923622059975e-17 -0.25c -7.926829268292684e-2,-4.67479674796747e-2 -0.20121951219512196,2.2357723577235852e-2 -0.25 -1.5308084989341915e-17c -4.878048780487804e-2,-2.2357723577235648e-2 -2.439024390243901e-2,-0.13617886178861793 1.5308084989341915e-17 -0.25c 0.11382113821138212,2.4390243902439008e-2 0.22764227642276424,4.8780487804878016e-2 0.25 -2.7755575615628914e-17c 2.235772357723575e-2,-4.8780487804878044e-2 -4.674796747967482e-2,-0.17073170731707316 -2.7755575615628914e-17 -0.25c 4.6747967479674794e-2,-7.926829268292679e-2 0.2093495934959349,-0.11585365853658539 0.25 -2.7755575615628914e-17c 4.065040650406494e-2,0.11585365853658536 -4.0650406504065e-2,0.38414634146341464 5.551115123125783e-17 0.5c 4.0650406504065054e-2,0.11585365853658536 0.2032520325203252,7.926829268292687e-2 0.25 2.7755575615628914e-17c 4.674796747967468e-2,-7.926829268292684e-2 -2.2357723577235887e-2,-0.20121951219512196 -2.7755575615628914e-17 -0.25c 2.2357723577235637e-2,-4.878048780487804e-2 0.13617886178861793,-2.4390243902439032e-2 0.25 -2.7755575615628914e-17" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(89,89,255)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 c 0.4552845528455285,9.756097560975606e-2 0.910569105691057,0.19512195121951212 1.0 -5.551115123125783e-17c 8.943089430894301e-2,-0.19512195121951217 -0.18699186991869923,-0.6829268292682926 -5.551115123125783e-17 -1.0c 0.18699186991869918,-0.31707317073170715 0.8373983739837396,-0.4634146341463415 1.0 -5.551115123125783e-17c 0.16260162601625974,0.46341463414634143 -0.16260162601626008,1.5365853658536586 1.1102230246251565e-16 2.0c 0.1626016260162602,0.46341463414634143 0.8130081300813008,0.31707317073170754 1.0 1.6653345369377348e-16c 0.18699186991869873,-0.3170731707317074 -8.94308943089435e-2,-0.8048780487804879 -5.551115123125783e-17 -1.0c 8.943089430894256e-2,-0.19512195121951215 0.5447154471544717,-9.75609756097561e-2 1.0 -5.551115123125783e-17" /></g></g><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 4.0 " /></g></g></g></svg>
+ diagrams/src_Diagrams_Example_Logo_diaLogo.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="590.1523919995885" height="100.0" font-size="1" viewBox="0 0 590 100"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(14.28571428571429,0.0,0.0,14.28571428571429,295.07619599979427,50.0)"><g><g><g><g fill-opacity="0.0" stroke-width="0.2"><path d="M 20.3353337199856,-0.8200000000000012 c -0.5044772701248142,-0.4101683270353824 -1.008954540249628,-0.8203366540707663 -1.6 -0.8c -0.5910454597503723,2.033665407076626e-2 -1.2686591091263026,0.47117828924768124 -1.6 0.8c -0.33134089087369745,0.3288217107523188 -0.31640902324516207,0.5356234970800415 0.0 0.8c 0.31640902324516207,0.2643765029199585 0.9342952021069508,0.5863277224321539 1.6 0.8c 0.6657047978930493,0.2136722775678461 1.3792282148173591,0.3190656131913432 1.6 0.8c 0.22077178518264093,0.48093438680865663 -5.120806137638852e-2,1.3374098248024735 -0.8 1.5999999999999999c -0.7487919386236115,0.26259017519752664 -1.9743959693118058,-6.870491240123672e-2 -3.2 -0.4000000000000002" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 16.6553337199856,2.779999999999999 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 19.855333719985598,3.179999999999999 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 20.6553337199856,1.5799999999999987 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 19.055333719985597,0.7799999999999985 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 17.4553337199856,-2.000000000000135e-2 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 17.4553337199856,-0.8200000000000012 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 19.055333719985597,-1.6200000000000019 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 20.6553337199856,-0.8200000000000012 c 0.0,-0.17673111994585394 -0.1432688800541461,-0.32000000000000006 -0.32 -0.32000000000000006c -0.17673111994585394,-1.0821660017570848e-17 -0.32000000000000006,0.14326888005414606 -0.32000000000000006 0.31999999999999995c -2.1643320035141697e-17,0.17673111994585394 0.14326888005414606,0.32000000000000006 0.3199999999999999 0.32000000000000006c 0.17673111994585394,3.2464980052712547e-17 0.32000000000000006,-0.14326888005414604 0.32000000000000023 -0.31999999999999995Z" /></g></g><g><g fill="rgb(0,128,0)" fill-opacity="1.0" font-size="6.0em" font-style="italic" font-family="freeserif"><text transform="matrix(1.0,0.0,0.0,1.0,13.015333719985597,0.9999999999999991)" dominant-baseline="middle" text-anchor="middle" stroke="none">m</text></g><g stroke-width="5.0e-2"><path d="M 15.515333719985597,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 h 5.000000000000002 Z" /></g></g></g><g stroke-width="0.1"><path d="M 6.47012317571909,-1.0000000000000009 l 1.472168388222995,2.0 " /><path d="M 6.47012317571909,-1.0000000000000009 l -1.4721683882229954,2.0 " /><path d="M 7.942291563942085,0.9999999999999991 l 1.5730421560435097,2.0 " /><path d="M 7.942291563942085,0.9999999999999991 l -0.28868441920393195,2.0 " /><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 10.015333719985595,2.999999999999999 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 8.153607144738153,2.999999999999999 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 8.442291563942085,0.9999999999999991 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><path d="M 4.997954787496094,0.9999999999999991 l 0.2886844192039326,2.0 " /><path d="M 4.997954787496094,0.9999999999999991 l -1.5730421560435097,2.0 " /><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 5.786639206700027,2.999999999999999 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 3.9249126314525844,2.999999999999999 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 5.497954787496094,0.9999999999999991 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(128,0,128)" fill-opacity="1.0"><path d="M 6.97012317571909,-1.0000000000000009 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g></g><g><g stroke="rgb(255,165,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"><path d="M 1.8941898538495625,2.9692772223969772 l -2.121320343559643,-2.1213203435596424 l 0.9,-1.1021821192326179e-16 l 0.7281152949374526,-0.5290067270632259 l 0.27811529493745263,-0.8559508646656383 l -0.27811529493745274,-0.8559508646656382 l -0.7281152949374528,-0.5290067270632258 h -0.9 l -3.061616997868383e-16,5.0 " /></g><g stroke-width="0.1"><path d="M 1.2752750744547778,3.0574692241887402 l 1.1496375569978068,0.44253077581125877 l -0.44253077581125927,-1.1496375569978066 l -0.7071067811865475,0.7071067811865478 Z" /></g></g></g><g><g><g fill-opacity="0.0" stroke-width="5.0e-2"><g stroke="rgb(128,128,128)" stroke-opacity="1.0" fill-opacity="0.0"><g clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M -0.7271304897100808,3.499999999999999 l -5.551115123125783e-16,-5.0 h -5.0 l -5.551115123125783e-16,5.0 h 5.000000000000002 Z" /></clipPath><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -6.514582347904849,-5.062603424276718 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -6.669090845092322,-4.587075166129141 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><path d="M -6.823599342279795,-4.111546907981564 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -6.9781078394672695,-3.6360186498339875 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -7.132616336654744,-3.1604903916864107 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -7.287124833842217,-2.684962133538834 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><path d="M -7.44163333102969,-2.209433875391257 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -7.596141828217164,-1.7339056172436804 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -7.750650325404639,-1.2583773590961036 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -7.905158822592112,-0.7828491009485269 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><path d="M -8.059667319779585,-0.3073208428009502 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -8.21417581696706,0.16820741534662664 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -8.368684314154534,0.643735673494203 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -8.523192811342007,1.1192639316417798 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><path d="M -8.67770130852948,1.5947921897893567 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -8.832209805716953,2.0703204479369335 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -8.986718302904428,2.5458487060845103 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -9.141226800091902,3.021376964232087 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><path d="M -9.295735297279375,3.496905222379664 l 9.510565162951535,3.0901699437494745 " /></g><path d="M -9.45024379446685,3.9724334805272408 l 9.510565162951535,3.0901699437494745 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 2.8354729345666354,-2.287451858194768 l -3.090169943749474,9.510565162951535 " /></g><path d="M 2.3599446764190586,-2.4419603553822418 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><path d="M 1.884416418271482,-2.5964688525697155 l -3.090169943749474,9.510565162951535 " /></g><path d="M 1.4088881601239052,-2.750977349757189 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 0.9333599019763283,-2.905485846944663 l -3.090169943749474,9.510565162951535 " /></g><path d="M 0.4578316438287515,-3.0599943441321367 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><path d="M -1.76966143188253e-2,-3.2145028413196104 l -3.090169943749474,9.510565162951535 " /></g><path d="M -0.4932248724664021,-3.369011338507084 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -0.9687531306139785,-3.5235198356945574 l -3.090169943749474,9.510565162951535 " /></g><path d="M -1.4442813887615553,-3.6780283328820316 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><path d="M -1.9198096469091321,-3.832536830069505 l -3.090169943749474,9.510565162951535 " /></g><path d="M -2.395337905056709,-3.987045327256979 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -2.870866163204285,-4.141553824444452 l -3.090169943749474,9.510565162951535 " /></g><path d="M -3.346394421351862,-4.2960623216319265 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><path d="M -3.8219226794994388,-4.4505708188194 l -3.090169943749474,9.510565162951535 " /></g><path d="M -4.297450937647016,-4.605079316006874 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M -4.772979195794592,-4.759587813194347 l -3.090169943749474,9.510565162951535 " /></g><path d="M -5.248507453942169,-4.914096310381821 l -3.090169943749474,9.510565162951535 " /></g><g fill-opacity="0.0"><path d="M -5.724035712089746,-5.068604807569295 l -3.090169943749474,9.510565162951535 " /></g><path d="M -6.199563970237323,-5.223113304756769 l -3.090169943749474,9.510565162951535 " /></g></g></g></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="4.0em"><text transform="matrix(0.9510565162951535,0.3090169943749474,-0.3090169943749474,0.9510565162951535,-3.227130489710081,0.9999999999999991)" dominant-baseline="middle" text-anchor="middle" stroke="none">G</text></g></g><g fill="rgb(0,0,128)" fill-opacity="1.0" stroke-width="0.0"><g><g><g><g><g><g><path d="M -6.227130489710082,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -7.0931558934945205,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -6.660143191602301,2.749999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -7.959181297278957,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -8.825206701063397,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -8.392193999171178,2.749999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -7.0931558934945205,1.9999999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -7.959181297278959,1.9999999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -7.526168595386739,1.2499999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><g><g><path d="M -9.691232104847836,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -10.557257508632276,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -10.124244806740057,2.749999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -11.423282912416713,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -12.289308316201152,3.499999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -11.856295614308934,2.749999999999999 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -10.557257508632274,1.9999999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -11.423282912416713,1.9999999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -10.990270210524494,1.2499999999999996 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><g><g><path d="M -7.959181297278959,0.49999999999999956 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -8.825206701063399,0.49999999999999956 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -8.39219399917118,-0.25000000000000033 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -9.691232104847836,0.49999999999999956 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -10.557257508632276,0.49999999999999956 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -10.124244806740057,-0.25000000000000033 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><g><g><path d="M -8.825206701063397,-1.0 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -9.691232104847836,-1.0 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g><path d="M -9.258219402955618,-1.75 l -0.4330127018922193,-0.7499999999999999 l -0.4330127018922194,0.7499999999999999 h 0.8660254037844387 Z" /></g></g><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="5.0e-2"><g><path d="M -13.655333719985592,3.0999999999999988 v -3.2 c 0.0,-0.2209138999323174 -0.17908610006768258,-0.4 -0.3999999999999999 -0.4h -1.2 c -0.2209138999323174,-1.3527075021963559e-17 -0.4,0.17908610006768255 -0.4 0.3999999999999999v 3.2 c -2.7054150043927117e-17,0.2209138999323174 0.17908610006768255,0.4 0.3999999999999999 0.40000000000000013h 1.2000000000000002 c 0.2209138999323174,4.058122506589068e-17 0.4,-0.17908610006768252 0.3999999999999999 -0.40000000000000036Z" /></g><g></g><g><path d="M -13.655333719985592,-2.000000000000001 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g></g><g fill="rgb(255,0,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -16.65533371998559,1.5 c 0.0,-1.104569499661587 -0.8954305003384129,-2.0 -1.9999999999999996 -2.0c -1.104569499661587,-6.763537510981779e-17 -2.0,0.8954305003384128 -2.0 1.9999999999999993c -1.3527075021963558e-16,1.104569499661587 0.8954305003384126,2.0 1.9999999999999991 2.0c 1.104569499661587,2.0290612532945337e-16 2.0,-0.8954305003384125 2.0000000000000004 -1.9999999999999993ZM -16.955333719985592,-3.1999999999999993 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,-2.3999999999999995 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,-1.5999999999999996 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,-0.7999999999999998 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,0.0 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,0.7999999999999998 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,1.5999999999999996 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,2.3999999999999995 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.955333719985592,3.1999999999999993 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,-3.1999999999999993 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,-2.3999999999999995 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,-1.5999999999999996 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,-0.7999999999999998 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,0.0 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,0.7999999999999998 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,1.5999999999999996 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,2.3999999999999995 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3ZM -16.15533371998559,3.1999999999999993 c 0.0,0.165685424949238 -0.13431457505076197,0.29999999999999993 -0.3 0.2999999999999999c -0.165685424949238,0.0 -0.2999999999999999,-0.13431457505076197 -0.2999999999999999 -0.3c 0.0,-0.16568542494923796 0.13431457505076197,-0.2999999999999999 0.3 -0.2999999999999999c 0.16568542494923802,0.0 0.29999999999999993,0.13431457505076197 0.2999999999999999 0.3Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Apollonian_apollonian1.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="400.0" font-size="1" viewBox="0 0 400 400"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(185.64064605510177,0.0,0.0,185.64064605510177,107.1796769724491,253.58983848622458)"><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2815373906536786,0.6530913978828048 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.21934417441416615,0.7267549551686588 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.3984376761929896,0.7726551987151614 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.3793505552292814,0.7648868303214785 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.3521609767157176,0.7498094807324468 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.31213902973979246,0.7145944965922721 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2599116035070047,0.5222232024207253 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.20080082917277878,0.47740128390421843 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.28128523205212236,0.4419161112756696 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2672636474037272,0.4791556986718716 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 4.43933113006482e-2,0.6690771602732234 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 3.192589808381093e-2,0.6436622105651014 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 5.3509784325814824e-2,0.5182922448452651 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.10490589568205957,0.5764939882688405 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -7.652302684477676e-2,0.5045129754307014 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.30234235807538123,0.4032418782813029 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.28313117838818835,0.4187067472658536 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.25781249330572464,0.43742727532891257 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.2231663131622284,0.46040534187454 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.1734223007608759,0.4889259586503651 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -9.7373211879208e-2,0.5242883150201415 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 2.898622907015514e-2,0.565993208782911 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.26277404305271235,0.6015809210700274 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7475909572591641,0.6530913978828048 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.8180766023306116,0.7267549551686588 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6218747885684126,0.7726551987151614 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6508118059633982,0.7648868303214785 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6971186977123766,0.7498094807324468 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7817914553903114,0.7145944965922721 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7640972361422947,0.5222232024207253 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.8252164900295883,0.47740128390421843 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7499597347975746,0.4419161112756696 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.799232453338065,0.4791556986718716 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9789711342736777,0.6690771602732234 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.014881512107808,0.6436622105651014 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9853154518197665,0.5182922448452651 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.1324016182130618,0.5764939882688405 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.1010559216041287,0.5045129754307014 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.322654822836783,0.4032418782813029 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3083934744652261,0.4187067472658536 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2900598334463935,0.43742727532891257 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2657055080541237,0.46040534187454 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.231980761696604,0.4889259586503651 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.1827122421476661,0.5242883150201415 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.1055891340526576,0.565993208782911 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9744519138945753,0.6015809210700274 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.41716734290777446,0.3125340374837838 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.4552752483399817,0.29231643213807884 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6064991305471471,0.3125340374837838 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5894495033200366,0.29231643213807884 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5148458296557342,0.12274456531309759 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.4845829655734203e-2 -1.4845829655734194e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5261183982500285,0.16370879321886023 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028447e-2 -2.6118398250028433e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5580875589830302,0.24791475045191885 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303018e-2 -5.808755898303015e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7413364125799319,0.5473387220148809 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.24133641257993196 -0.24133641257993182Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.41754295925454943,-0.5577512867312748 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.5103609721090018,-0.53713143315396 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4648420761665976,-0.722589193517122 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.46519555816574687,-0.697909947413537 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.460953651347835,-0.6585463674510966 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4393048513010377,-0.5869444844071892 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.31630054807618396,-0.47580552005993687 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.30653689527337896,-0.40133343143290556 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.2342567209678753,-0.4510287447882533 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.26470515853061066,-0.44224130124814964 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.5514000508446582,-0.362867213774731 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.529763024215616,-0.32921154090611326 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.41239304942116106,-0.2886751345948127 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.5448374561781029,-0.18548982636336775 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4690493429944119,-0.17536254744831065 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4953107733087007,6.901077884114544e-2 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.497860695043014,4.678431453498789e-2 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.499667544360743,1.852203883445571e-2 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.49967107995955085,-1.85149627534068e-2 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4954938359073817,-6.891830389508855e-2 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.4813988480872702,-0.14086359830118464 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.44202754185968973,-0.24982657353218887 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.33029084931550673,-0.4256376046970958 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.18451617595180672,-0.9613655149359679 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.21099475815077906,-1.055648925799137 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.35312351997888647,-0.9160914089824763 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.32946493279868894,-0.9330022866923787 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.2884747908495057,-0.9572885170657877 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -0.20447863847577832,-0.9936754159695207 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -6.420773175853892e-2,-0.9124430861452264 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 5.670935155025787e-3,-0.942093256255751 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 8.053040485090333e-5,-0.8569127702718545 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2792444365582883e-3,-0.9029398012081602 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -8.411113935814336e-2,-1.1722353502829306 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -3.828521720361743e-2,-1.1804760734434263 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 5.3509784325814824e-2,-1.0956425140348907 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 7.381630076945801e-2,-1.2570295656899102 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.11974013123004085,-1.1951758317668284 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.31718781714738126,-1.3382780609068856 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.29790163138369313,-1.3315164655852787 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2742686190153159,-1.3219747179478054 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2447648306486252,-1.3079157829055708 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.2072076953213583,-1.2860330585397144 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.15864387892616685,-1.2494501205033948 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 9.627391063156154e-2,-1.18219203903516 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 2.5548086105424722e-2,-1.0419687201573697 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -5.6162126190656934e-2,-0.5072966517143025 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M -1.433464409021068e-2,-0.5210717612879694 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 3.850376762902936e-2,-0.6712627895539197 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 5.275248339981681e-2,-0.6372700746345478 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.15854591791811354,-0.49438498454876817 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.4845829655734203e-2 -1.4845829655734194e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.1343424244996019,-0.5148670985016495 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028447e-2 -2.6118398250028433e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 9.338708711878888e-2,-0.5569700771181787 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303018e-2 -5.808755898303015e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.7327174840136184e-2,-0.7066820628996595 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.24133641257993196 -0.24133641257993182Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4466713071673922,-0.5577512867312748 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5477817488537797,-0.53713143315396 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4851545409279998,-0.722589193517122 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4953579193584263,-0.697909947413537 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.510233325775929,-0.6585463674510966 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5332353364311417,-0.5869444844071892 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3403093877254835,-0.47580552005993687 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3325542144757463,-0.40133343143290556 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2655016878175724,-0.4510287447882533 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.331201259272403,-0.44224130124814964 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5747644964189838,-0.362867213774731 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5765704344072344,-0.32921154090611326 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4512182855667421,-0.2886751345948127 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5723331787091053,-0.18548982636336775 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4935822377537638,-0.17536254744831065 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5156232380701025,6.901077884114544e-2 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.523122991120052,4.678431453498789e-2 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5319148845014119,1.852203883445571e-2 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5422102748514461,-1.85149627534068e-2 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5540522968431096,-6.891830389508855e-2 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5667378783557284,-0.14086359830118464 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.576602904982502,-0.24982657353218887 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5675168062627944,-0.4256376046970958 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2136445238646494,-0.9613655149359679 c 0.0,-8.04357117001436e-3 -6.520602786407056e-3,-1.4564173956421417e-2 -1.4564173956421414e-2 -1.4564173956421417e-2c -8.04357117001436e-3,-4.925266843536008e-19 -1.4564173956421417e-2,6.520602786407055e-3 -1.4564173956421417e-2 1.4564173956421412e-2c -9.850533687072016e-19,8.04357117001436e-3 6.520602786407054e-3,1.4564173956421417e-2 1.456417395642141e-2 1.4564173956421417e-2c 8.04357117001436e-3,1.4775800530608024e-18 1.4564173956421417e-2,-6.5206027864070535e-3 1.4564173956421421e-2 -1.4564173956421412e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2484155348955568,-1.055648925799137 c 0.0,-1.0333462161481803e-2 -8.376926210907118e-3,-1.8710388372388923e-2 -1.871038837238892e-2 -1.8710388372388923e-2c -1.0333462161481803e-2,-6.32742068008449e-19 -1.8710388372388923e-2,8.376926210907116e-3 -1.8710388372388923e-2 1.8710388372388916e-2c -1.265484136016898e-18,1.0333462161481803e-2 8.376926210907116e-3,1.8710388372388923e-2 1.8710388372388916e-2 1.8710388372388923e-2c 1.0333462161481803e-2,1.898226204025347e-18 1.8710388372388923e-2,-8.376926210907115e-3 1.8710388372388923e-2 -1.8710388372388916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3734359847402882,-0.9160914089824763 c 0.0,-5.60913225959887e-3 -4.547100121102155e-3,-1.0156232380701027e-2 -1.0156232380701026e-2 -1.0156232380701027e-2c -5.60913225959887e-3,-3.434602933855959e-19 -1.0156232380701027e-2,4.547100121102155e-3 -1.0156232380701027e-2 1.0156232380701024e-2c -6.869205867711918e-19,5.60913225959887e-3 4.5471001211021544e-3,1.0156232380701027e-2 1.0156232380701022e-2 1.0156232380701027e-2c 5.60913225959887e-3,1.0303808801567876e-18 1.0156232380701027e-2,-4.547100121102154e-3 1.0156232380701033e-2 -1.0156232380701024e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3596272939913683,-0.9330022866923787 c 0.0,-8.32910605280254e-3 -6.752074543537253e-3,-1.5081180596339795e-2 -1.5081180596339791e-2 -1.5081180596339795e-2c -8.32910605280254e-3,-5.100106533661738e-19 -1.5081180596339795e-2,6.752074543537252e-3 -1.5081180596339795e-2 1.508118059633979e-2c -1.0200213067323475e-18,8.32910605280254e-3 6.752074543537251e-3,1.5081180596339795e-2 1.5081180596339788e-2 1.5081180596339795e-2c 8.32910605280254e-3,1.5300319600985213e-18 1.5081180596339795e-2,-6.75207454353725e-3 1.5081180596339798e-2 -1.508118059633979e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.3377544652776,-0.9572885170657877 c 0.0,-1.3608206331631451e-2 -1.1031630882415598e-2,-2.4639837214047052e-2 -2.4639837214047045e-2 -2.4639837214047052e-2c -1.3608206331631451e-2,-8.332623163084601e-19 -2.4639837214047052e-2,1.1031630882415598e-2 -2.4639837214047052e-2 2.4639837214047045e-2c -1.6665246326169201e-18,1.3608206331631451e-2 1.1031630882415596e-2,2.4639837214047052e-2 2.4639837214047042e-2 2.4639837214047052e-2c 1.3608206331631451e-2,2.4997869489253804e-18 2.4639837214047052e-2,-1.1031630882415594e-2 2.4639837214047056e-2 -2.4639837214047045e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.2984091236058823,-0.9936754159695207 c 0.0,-2.593818724078221e-2 -2.1027055324269666e-2,-4.6965242565051885e-2 -4.696524256505187e-2 -4.6965242565051885e-2c -2.593818724078221e-2,-1.5882558990054326e-18 -4.6965242565051885e-2,2.1027055324269666e-2 -4.6965242565051885e-2 4.696524256505187e-2c -3.176511798010865e-18,2.593818724078221e-2 2.1027055324269663e-2,4.6965242565051885e-2 4.6965242565051864e-2 4.6965242565051885e-2c 2.593818724078221e-2,4.764767697016298e-18 4.6965242565051885e-2,-2.102705532426966e-2 4.696524256505189e-2 -4.696524256505187e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0882165714078385,-0.9124430861452264 c 0.0,-6.6298579997205115e-3 -5.37456182492925e-3,-1.2004419824649762e-2 -1.2004419824649759e-2 -1.2004419824649762e-2c -6.6298579997205115e-3,-4.0596171890795987e-19 -1.2004419824649762e-2,5.374561824929249e-3 -1.2004419824649762e-2 1.2004419824649759e-2c -8.119234378159197e-19,6.6298579997205115e-3 5.374561824929248e-3,1.2004419824649762e-2 1.2004419824649757e-2 1.2004419824649762e-2c 6.6298579997205115e-3,1.2178851567238797e-18 1.2004419824649762e-2,-5.374561824929247e-3 1.2004419824649764e-2 -1.2004419824649759e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0203463840473415,-0.942093256255751 c 0.0,-7.184484313473597e-3 -5.824175287709934e-3,-1.3008659601183532e-2 -1.3008659601183529e-2 -1.3008659601183532e-2c -7.184484313473597e-3,-4.399227859009905e-19 -1.3008659601183532e-2,5.824175287709934e-3 -1.3008659601183532e-2 1.3008659601183529e-2c -8.79845571801981e-19,7.184484313473597e-3 5.824175287709933e-3,1.3008659601183532e-2 1.3008659601183527e-2 1.3008659601183532e-2c 7.184484313473597e-3,1.3197683577029714e-18 1.3008659601183532e-2,-5.824175287709932e-3 1.3008659601183534e-2 -1.3008659601183529e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.031164436444846,-0.8569127702718545 c 0.0,-8.628059350028121e-3 -6.994424074820287e-3,-1.5622483424848411e-2 -1.5622483424848408e-2 -1.5622483424848411e-2c -8.628059350028121e-3,-5.283162632932666e-19 -1.5622483424848411e-2,6.994424074820286e-3 -1.5622483424848411e-2 1.5622483424848406e-2c -1.0566325265865332e-18,8.628059350028121e-3 6.994424074820285e-3,1.5622483424848411e-2 1.5622483424848404e-2 1.5622483424848411e-2c 8.628059350028121e-3,1.5849487898797998e-18 1.5622483424848411e-2,-6.9944240748202845e-3 1.5622483424848415e-2 -1.5622483424848406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.065216856305234,-0.9029398012081602 c 0.0,-1.836239118145198e-2 -1.488565918944413e-2,-3.3248050370896114e-2 -3.324805037089611e-2 -3.3248050370896114e-2c -1.836239118145198e-2,-1.1243721792528376e-18 -3.3248050370896114e-2,1.4885659189444128e-2 -3.3248050370896114e-2 3.32480503708961e-2c -2.2487443585056753e-18,1.836239118145198e-2 1.4885659189444126e-2,3.3248050370896114e-2 3.32480503708961e-2 3.3248050370896114e-2c 1.836239118145198e-2,3.3731165377585127e-18 3.3248050370896114e-2,-1.4885659189444124e-2 3.3248050370896114e-2 -3.32480503708961e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.1074755849324693,-1.1722353502829306 c 0.0,-6.451913489475839e-3 -5.230309297687028e-3,-1.1682222787162869e-2 -1.1682222787162867e-2 -1.1682222787162869e-2c -6.451913489475839e-3,-3.9506576016311083e-19 -1.1682222787162869e-2,5.230309297687027e-3 -1.1682222787162869e-2 1.1682222787162865e-2c -7.901315203262217e-19,6.451913489475839e-3 5.230309297687027e-3,1.1682222787162869e-2 1.1682222787162863e-2 1.1682222787162869e-2c 6.451913489475839e-3,1.1851972804893325e-18 1.1682222787162869e-2,-5.230309297687026e-3 1.1682222787162874e-2 -1.1682222787162865e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0850926273952364,-1.1804760734434263 c 0.0,-1.292550941395279e-2 -1.047819568185666e-2,-2.3403705095809454e-2 -2.340370509580945e-2 -2.3403705095809454e-2c -1.292550941395279e-2,-7.914591865573133e-19 -2.3403705095809454e-2,1.047819568185666e-2 -2.3403705095809454e-2 2.3403705095809448e-2c -1.5829183731146266e-18,1.292550941395279e-2 1.0478195681856659e-2,2.3403705095809454e-2 2.3403705095809444e-2 2.3403705095809454e-2c 1.292550941395279e-2,2.37437755967194e-18 2.3403705095809454e-2,-1.0478195681856657e-2 2.3403705095809465e-2 -2.3403705095809448e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9853154518197665,-1.0956425140348907 c 0.0,-1.072129291589193e-2 -8.69132515689873e-3,-1.9412618072790662e-2 -1.941261807279066e-2 -1.9412618072790662e-2c -1.072129291589193e-2,-6.564898526084123e-19 -1.9412618072790662e-2,8.691325156898728e-3 -1.9412618072790662e-2 1.9412618072790655e-2c -1.3129797052168245e-18,1.072129291589193e-2 8.691325156898726e-3,1.9412618072790662e-2 1.9412618072790655e-2 1.9412618072790662e-2c 1.072129291589193e-2,1.969469557825237e-18 1.9412618072790662e-2,-8.691325156898726e-3 1.941261807279067e-2 -1.9412618072790655e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9536794217615443,-1.2570295656899102 c 0.0,-7.592734119725871e-3 -6.155127145775482e-3,-1.3747861265501354e-2 -1.374786126550135e-2 -1.3747861265501354e-2c -7.592734119725871e-3,-4.649208768249592e-19 -1.3747861265501354e-2,6.155127145775481e-3 -1.3747861265501354e-2 1.3747861265501348e-2c -9.298417536499183e-19,7.592734119725871e-3 6.15512714577548e-3,1.3747861265501354e-2 1.3747861265501347e-2 1.3747861265501354e-2c 7.592734119725871e-3,1.3947626304748775e-18 1.3747861265501354e-2,-6.155127145775479e-3 1.3747861265501357e-2 -1.3747861265501348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.904792763529311,-1.1951758317668284 c 0.0,-6.774571822397007e-3 -5.491875557279092e-3,-1.2266447379676101e-2 -1.2266447379676098e-2 -1.2266447379676101e-2c -6.774571822397007e-3,-4.148228848946173e-19 -1.2266447379676101e-2,5.491875557279092e-3 -1.2266447379676101e-2 1.2266447379676098e-2c -8.296457697892346e-19,6.774571822397007e-3 5.491875557279091e-3,1.2266447379676101e-2 1.2266447379676096e-2 1.2266447379676101e-2c 6.774571822397007e-3,1.244468654683852e-18 1.2266447379676101e-2,-5.49187555727909e-3 1.2266447379676103e-2 -1.2266447379676098e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7031246476140199,-1.3382780609068856 c 0.0,-5.609132259598869e-3 -4.547100121102154e-3,-1.0156232380701024e-2 -1.0156232380701022e-2 -1.0156232380701024e-2c -5.609132259598869e-3,-3.4346029338559574e-19 -1.0156232380701024e-2,4.547100121102154e-3 -1.0156232380701024e-2 1.015623238070102e-2c -6.869205867711915e-19,5.609132259598869e-3 4.547100121102153e-3,1.0156232380701024e-2 1.0156232380701019e-2 1.0156232380701024e-2c 5.609132259598869e-3,1.0303808801567872e-18 1.0156232380701024e-2,-4.547100121102153e-3 1.015623238070103e-2 -1.015623238070102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7273606646933446,-1.3315164655852787 c 0.0,-6.975990434529273e-3 -5.6551576039898886e-3,-1.2631148038519164e-2 -1.263114803851916e-2 -1.2631148038519164e-2c -6.975990434529273e-3,-4.271562178264414e-19 -1.2631148038519164e-2,5.655157603989888e-3 -1.2631148038519164e-2 1.263114803851916e-2c -8.543124356528828e-19,6.975990434529273e-3 5.655157603989887e-3,1.2631148038519164e-2 1.2631148038519158e-2 1.2631148038519164e-2c 6.975990434529273e-3,1.2814686534793243e-18 1.2631148038519164e-2,-5.655157603989887e-3 1.2631148038519165e-2 -1.263114803851916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7579787211253528,-1.3219747179478054 c 0.0,-8.904857091148976e-3 -7.218812979185586e-3,-1.6123670070334564e-2 -1.612367007033456e-2 -1.6123670070334564e-2c -8.904857091148976e-3,-5.452652366770102e-19 -1.6123670070334564e-2,7.218812979185585e-3 -1.6123670070334564e-2 1.6123670070334557e-2c -1.0905304733540205e-18,8.904857091148976e-3 7.218812979185584e-3,1.6123670070334564e-2 1.6123670070334557e-2 1.6123670070334564e-2c 8.904857091148976e-3,1.6357957100310306e-18 1.6123670070334564e-2,-7.218812979185583e-3 1.612367007033457e-2 -1.6123670070334557e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.7977743642432704,-1.3079157829055708 c 0.0,-1.1746874304437015e-2 -9.522723141510874e-3,-2.126959744594789e-2 -2.1269597445947887e-2 -2.126959744594789e-2c -1.1746874304437015e-2,-7.19288600845754e-19 -2.126959744594789e-2,9.522723141510873e-3 -2.126959744594789e-2 2.1269597445947884e-2c -1.438577201691508e-18,1.1746874304437015e-2 9.522723141510871e-3,2.126959744594789e-2 2.126959744594788e-2 2.126959744594789e-2c 1.1746874304437015e-2,2.157865802537262e-18 2.126959744594789e-2,-9.522723141510871e-3 2.12695974459479e-2 -2.1269597445947884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.85135076561437,-1.2860330585397144 c 0.0,-1.6170472474182507e-2 -1.3108757993681656e-2,-2.9279230467864167e-2 -2.927923046786416e-2 -2.9279230467864167e-2c -1.6170472474182507e-2,-9.901558678103994e-19 -2.9279230467864167e-2,1.3108757993681655e-2 -2.9279230467864167e-2 2.9279230467864157e-2c -1.980311735620799e-18,1.6170472474182507e-2 1.3108757993681653e-2,2.9279230467864167e-2 2.9279230467864154e-2 2.9279230467864167e-2c 1.6170472474182507e-2,2.970467603431198e-18 2.9279230467864167e-2,-1.3108757993681651e-2 2.9279230467864174e-2 -2.9279230467864157e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9266951513422913,-1.2494501205033948 c 0.0,-2.3565722491308994e-2 -1.910379264292014e-2,-4.266951513422914e-2 -4.266951513422913e-2 -4.266951513422914e-2c -2.3565722491308994e-2,-1.4429843309288175e-18 -4.266951513422914e-2,1.910379264292014e-2 -4.266951513422914e-2 4.2669515134229126e-2c -2.885968661857635e-18,2.3565722491308994e-2 1.9103792642920135e-2,4.266951513422914e-2 4.266951513422912e-2 4.266951513422914e-2c 2.3565722491308994e-2,4.328952992786453e-18 4.266951513422914e-2,-1.910379264292013e-2 4.266951513422915e-2 -4.2669515134229126e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0383014524912513,-1.18219203903516 c 0.0,-3.716196037783543e-2 -3.012572118357097e-2,-6.728768156140641e-2 -6.72876815614064e-2 -6.728768156140641e-2c -3.716196037783543e-2,-2.275513791337846e-18 -6.728768156140641e-2,3.0125721183570965e-2 -6.728768156140641e-2 6.728768156140638e-2c -4.551027582675692e-18,3.716196037783543e-2 3.012572118357096e-2,6.728768156140641e-2 6.728768156140638e-2 6.728768156140641e-2c 3.716196037783543e-2,6.826541374013539e-18 6.728768156140641e-2,-3.0125721183570958e-2 6.728768156140644e-2 -6.728768156140638e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.211677870841863,-1.0419687201573697 c 0.0,-6.550813914300167e-2 -5.3104839330642147e-2,-0.11861297847364383 -0.1186129784736438 -0.11861297847364383c -6.550813914300167e-2,-4.011216645978822e-18 -0.11861297847364383,5.310483933064214e-2 -0.11861297847364383 0.11861297847364378c -8.022433291957644e-18,6.550813914300167e-2 5.310483933064213e-2,0.11861297847364383 0.11861297847364377 0.11861297847364383c 6.550813914300167e-2,1.2033649937936464e-17 0.11861297847364383,-5.3104839330642126e-2 0.11861297847364385 -0.11861297847364378Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0798285996455788,-0.5072966517143025 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.059059395750229,-0.5210717612879694 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9851627058258925,-0.6712627895539197 c 0.0,-6.5353161857142385e-3 -5.297920541746549e-3,-1.1833236727460788e-2 -1.1833236727460785e-2 -1.1833236727460788e-2c -6.5353161857142385e-3,-4.0017270241254156e-19 -1.1833236727460788e-2,5.297920541746548e-3 -1.1833236727460788e-2 1.1833236727460785e-2c -8.003454048250831e-19,6.5353161857142385e-3 5.297920541746547e-3,1.1833236727460788e-2 1.1833236727460783e-2 1.1833236727460788e-2c 6.5353161857142385e-3,1.2005181072376247e-18 1.1833236727460788e-2,-5.297920541746546e-3 1.183323672746079e-2 -1.1833236727460785e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9919722682602017,-0.6372700746345478 c 0.0,-1.2350399140898792e-2 -1.0011976689110368e-2,-2.2362375830009162e-2 -2.236237583000916e-2 -2.2362375830009162e-2c -1.2350399140898792e-2,-7.562438388046964e-19 -2.2362375830009162e-2,1.0011976689110367e-2 -2.2362375830009162e-2 2.2362375830009155e-2c -1.5124876776093927e-18,1.2350399140898792e-2 1.0011976689110365e-2,2.2362375830009162e-2 2.2362375830009152e-2 2.2362375830009162e-2c 1.2350399140898792e-2,2.268731516414089e-18 2.2362375830009162e-2,-1.0011976689110363e-2 2.2362375830009173e-2 -2.2362375830009155e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.871145741393355,-0.49438498454876817 c 0.0,-8.199125317447736e-3 -6.646704338286461e-3,-1.48458296557342e-2 -1.4845829655734196e-2 -1.48458296557342e-2c -8.199125317447736e-3,-5.020516287910198e-19 -1.48458296557342e-2,6.64670433828646e-3 -1.48458296557342e-2 1.4845829655734194e-2c -1.0041032575820396e-18,8.199125317447736e-3 6.646704338286459e-3,1.48458296557342e-2 1.4845829655734192e-2 1.48458296557342e-2c 8.199125317447736e-3,1.5061548863730595e-18 1.48458296557342e-2,-6.6467043382864585e-3 1.4845829655734203e-2 -1.4845829655734194e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.9178943720004551,-0.5148670985016495 c 0.0,-1.4424793043497992e-2 -1.1693605206530448e-2,-2.6118398250028443e-2 -2.6118398250028436e-2 -2.6118398250028443e-2c -1.4424793043497992e-2,-8.832638314541412e-19 -2.6118398250028443e-2,1.1693605206530447e-2 -2.6118398250028443e-2 2.6118398250028433e-2c -1.7665276629082825e-18,1.4424793043497992e-2 1.1693605206530445e-2,2.6118398250028443e-2 2.6118398250028433e-2 2.6118398250028443e-2c 1.4424793043497992e-2,2.6497914943624235e-18 2.6118398250028443e-2,-1.1693605206530443e-2 2.6118398250028447e-2 -2.6118398250028433e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0227880308472714,-0.5569700771181787 c 0.0,-3.208087298122428e-2 -2.6006686001805886e-2,-5.808755898303017e-2 -5.8087558983030155e-2 -5.808755898303017e-2c -3.208087298122428e-2,-1.9643869205154556e-18 -5.808755898303017e-2,2.6006686001805883e-2 -5.808755898303017e-2 5.808755898303015e-2c -3.928773841030911e-18,3.208087298122428e-2 2.600668600180588e-2,5.808755898303017e-2 5.808755898303014e-2 5.808755898303017e-2c 3.208087298122428e-2,5.8931607615463674e-18 5.808755898303017e-2,-2.6006686001805876e-2 5.808755898303018e-2 -5.808755898303015e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.4653456503197277,-0.7066820628996595 c 0.0,-0.13328642024676884 -0.10804999233316304,-0.2413364125799319 -0.24133641257993185 -0.2413364125799319c -0.13328642024676884,-8.161439396250721e-18 -0.2413364125799319,0.10804999233316302 -0.2413364125799319 0.24133641257993182c -1.6322878792501442e-17,0.13328642024676884 0.10804999233316301,0.2413364125799319 0.2413364125799318 0.2413364125799319c 0.13328642024676884,2.4484318188752165e-17 0.2413364125799319,-0.108049992333163 0.24133641257993196 -0.24133641257993182Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5773502691896262,-0.2886751345948131 c 0.0,-0.5950041238995307 -0.4823461452900954,-1.0773502691896262 -1.077350269189626 -1.0773502691896262c -0.5950041238995307,-3.6433494790651767e-17 -1.0773502691896262,0.48234614529009534 -1.0773502691896262 1.0773502691896257c -7.286698958130353e-17,0.5950041238995307 0.4823461452900953,1.0773502691896262 1.0773502691896257 1.0773502691896262c 0.5950041238995307,1.0930048437195531e-16 1.0773502691896262,-0.4823461452900952 1.0773502691896266 -1.0773502691896257Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5106708994088345,-0.10384973520923345 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.0670899408834445e-2 -1.0670899408834436e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5170112552462188,-0.13153188986428674 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218854e-2 -1.701125524621884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.4781585994343343,-0.20670923437038705 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5436828011313314,-0.20670923437038705 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5313908601473407,-0.17993400525784636 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.1390860147340785e-2 -3.139086014734076e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.3506074082763179,-0.3810878342876026 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.0670899408834445e-2 -1.0670899408834436e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.3809212132764681,-0.36724675696007597 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218854e-2 -1.701125524621884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.4235550980201702,-0.3012852730908784 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.4563171988686687,-0.35803089632317325 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.4372182797053185,-0.3430456992632962 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.1390860147340785e-2 -3.139086014734076e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.670734390541351,-0.3810878342876026 c 0.0,-5.89337501047769e-3 -4.777524398356748e-3,-1.067089940883444e-2 -1.0670899408834438e-2 -1.067089940883444e-2c -5.89337501047769e-3,-3.6086514213782514e-19 -1.067089940883444e-2,4.777524398356748e-3 -1.067089940883444e-2 1.0670899408834436e-2c -7.217302842756503e-19,5.89337501047769e-3 4.777524398356747e-3,1.067089940883444e-2 1.0670899408834434e-2 1.067089940883444e-2c 5.89337501047769e-3,1.0825954264134753e-18 1.067089940883444e-2,-4.777524398356746e-3 1.0670899408834445e-2 -1.0670899408834436e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6531012972159695,-0.36724675696007597 c 0.0,-9.395056847965749e-3 -7.6161983982530965e-3,-1.7011255246218847e-2 -1.7011255246218843e-2 -1.7011255246218847e-2c -9.395056847965749e-3,-5.752813148334337e-19 -1.7011255246218847e-2,7.616198398253096e-3 -1.7011255246218847e-2 1.701125524621884e-2c -1.1505626296668674e-18,9.395056847965749e-3 7.616198398253095e-3,1.7011255246218847e-2 1.701125524621884e-2 1.7011255246218847e-2c 9.395056847965749e-3,1.7258439445003013e-18 1.7011255246218847e-2,-7.616198398253094e-3 1.7011255246218854e-2 -1.701125524621884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5982863025454955,-0.3012852730908784 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.565524201696997,-0.35803089632317325 c 0.0,-6.031336223681406e-3 -4.889364059151425e-3,-1.0920700282832832e-2 -1.092070028283283e-2 -1.0920700282832832e-2c -6.031336223681406e-3,-3.693128300456459e-19 -1.0920700282832832e-2,4.889364059151424e-3 -1.0920700282832832e-2 1.0920700282832829e-2c -7.386256600912918e-19,6.031336223681406e-3 4.8893640591514236e-3,1.0920700282832832e-2 1.0920700282832827e-2 1.0920700282832832e-2c 6.031336223681406e-3,1.1079384901369378e-18 1.0920700282832832e-2,-4.889364059151423e-3 1.0920700282832837e-2 -1.0920700282832829e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.6255634405893631,-0.3430456992632962 c 0.0,-1.733669334344752e-2 -1.4054166803893245e-2,-3.139086014734077e-2 -3.1390860147340764e-2 -3.139086014734077e-2c -1.733669334344752e-2,-1.0615663005426116e-18 -3.139086014734077e-2,1.4054166803893244e-2 -3.139086014734077e-2 3.139086014734076e-2c -2.1231326010852232e-18,1.733669334344752e-2 1.4054166803893242e-2,3.139086014734077e-2 3.139086014734076e-2 3.139086014734077e-2c 1.733669334344752e-2,3.1846989016278347e-18 3.139086014734077e-2,-1.405416680389324e-2 3.1390860147340785e-2 -3.139086014734076e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5773502691896257,-0.28867513459481287 c 0.0,-4.2719374068737e-2 -3.4630895120888766e-2,-7.735026918962577e-2 -7.735026918962576e-2 -7.735026918962577e-2c -4.2719374068737e-2,-2.6158072357428605e-18 -7.735026918962577e-2,3.463089512088876e-2 -7.735026918962577e-2 7.735026918962574e-2c -5.231614471485721e-18,4.2719374068737e-2 3.463089512088875e-2,7.735026918962577e-2 7.735026918962574e-2 7.735026918962577e-2c 4.2719374068737e-2,7.847421707228581e-18 7.735026918962577e-2,-3.463089512088875e-2 7.735026918962577e-2 -7.735026918962574e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.0,-0.8660254037844386 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 1.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="3.2320508075688787e-3"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Apollonian_apollonian2.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="400.0" font-size="1" viewBox="0 0 400 400"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(233.03027798233563,0.0,0.0,233.03027798233563,123.48486100883203,233.3939444035328)"><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.37751045085976026,0.6053025340546552 c 0.0,-8.053465476643307e-3 -6.52862370671852e-3,-1.4582089183361829e-2 -1.4582089183361825e-2 -1.4582089183361829e-2c -8.053465476643307e-3,-4.9313253590074695e-19 -1.4582089183361829e-2,6.5286237067185195e-3 -1.4582089183361829e-2 1.4582089183361823e-2c -9.862650718014939e-19,8.053465476643307e-3 6.528623706718519e-3,1.4582089183361829e-2 1.4582089183361822e-2 1.4582089183361829e-2c 8.053465476643307e-3,1.4793976077022408e-18 1.4582089183361829e-2,-6.528623706718518e-3 1.4582089183361832e-2 -1.4582089183361823e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.29748132615332673,0.7033944209713446 c 0.0,-5.825415370910087e-3 -4.72243222527078e-3,-1.0547847596180868e-2 -1.0547847596180866e-2 -1.0547847596180868e-2c -5.825415370910087e-3,-3.5670381438444143e-19 -1.0547847596180868e-2,4.722432225270779e-3 -1.0547847596180868e-2 1.0547847596180864e-2c -7.134076287688829e-19,5.825415370910087e-3 4.722432225270779e-3,1.0547847596180868e-2 1.0547847596180862e-2 1.0547847596180868e-2c 5.825415370910087e-3,1.0701114431533244e-18 1.0547847596180868e-2,-4.722432225270778e-3 1.0547847596180873e-2 -1.0547847596180864e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.3355286772444547,0.6952829532141163 c 0.0,-1.0813690874093534e-2 -8.766228501566546e-3,-1.9579919375660084e-2 -1.957991937566008e-2 -1.9579919375660084e-2c -1.0813690874093534e-2,-6.621475957963796e-19 -1.9579919375660084e-2,8.766228501566546e-3 -1.9579919375660084e-2 1.9579919375660077e-2c -1.3242951915927591e-18,1.0813690874093534e-2 8.766228501566544e-3,1.9579919375660084e-2 1.9579919375660074e-2 1.9579919375660084e-2c 1.0813690874093534e-2,1.986442787389139e-18 1.9579919375660084e-2,-8.766228501566544e-3 1.9579919375660088e-2 -1.9579919375660077e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.4999999999999994,0.6855362096428833 c 0.0,-8.110990090384693e-3 -6.575256619975681e-3,-1.4686246710360376e-2 -1.4686246710360373e-2 -1.4686246710360376e-2c -8.110990090384693e-3,-4.966549026052758e-19 -1.4686246710360376e-2,6.57525661997568e-3 -1.4686246710360376e-2 1.4686246710360371e-2c -9.933098052105517e-19,8.110990090384693e-3 6.575256619975679e-3,1.4686246710360376e-2 1.468624671036037e-2 1.4686246710360376e-2c 8.110990090384693e-3,1.4899647078158274e-18 1.4686246710360376e-2,-6.575256619975678e-3 1.468624671036038e-2 -1.4686246710360371e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.47077059665551657,0.6821965739130665 c 0.0,-1.3452461428175891e-2 -1.0905374692226483e-2,-2.4357836120402376e-2 -2.435783612040237e-2 -2.4357836120402376e-2c -1.3452461428175891e-2,-8.237256914334418e-19 -2.4357836120402376e-2,1.0905374692226482e-2 -2.4357836120402376e-2 2.435783612040237e-2c -1.6474513828668835e-18,1.3452461428175891e-2 1.090537469222648e-2,2.4357836120402376e-2 2.4357836120402366e-2 2.4357836120402376e-2c 1.3452461428175891e-2,2.4711770743003254e-18 2.4357836120402376e-2,-1.0905374692226478e-2 2.435783612040238e-2 -2.435783612040237e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.4239083522995312,0.6659748672366104 c 0.0,-2.6265160384041218e-2 -2.12921194287514e-2,-4.7557279812792626e-2 -4.755727981279261e-2 -4.7557279812792626e-2c -2.6265160384041218e-2,-1.6082772296703972e-18 -4.7557279812792626e-2,2.1292119428751397e-2 -4.7557279812792626e-2 4.755727981279261e-2c -3.2165544593407945e-18,2.6265160384041218e-2 2.1292119428751397e-2,4.7557279812792626e-2 4.7557279812792605e-2 4.7557279812792626e-2c 2.6265160384041218e-2,4.8248316890111915e-18 4.7557279812792626e-2,-2.1292119428751394e-2 4.755727981279263e-2 -4.755727981279261e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.32939002349310903,0.4819157475048848 c 0.0,-6.543422791232337e-3 -5.304492243968401e-3,-1.1847915035200739e-2 -1.1847915035200735e-2 -1.1847915035200739e-2c -6.543422791232337e-3,-4.00669088837526e-19 -1.1847915035200739e-2,5.3044922439684e-3 -1.1847915035200739e-2 1.1847915035200735e-2c -8.01338177675052e-19,6.543422791232337e-3 5.304492243968399e-3,1.1847915035200739e-2 1.1847915035200733e-2 1.1847915035200739e-2c 6.543422791232337e-3,1.202007266512578e-18 1.1847915035200739e-2,-5.304492243968399e-3 1.184791503520074e-2 -1.1847915035200735e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2643792300484015,0.44734230333656105 c 0.0,-7.229430999314296e-3 -5.860611775774489e-3,-1.3090042775088786e-2 -1.3090042775088783e-2 -1.3090042775088786e-2c -7.229430999314296e-3,-4.426749766483451e-19 -1.3090042775088786e-2,5.860611775774489e-3 -1.3090042775088786e-2 1.3090042775088781e-2c -8.853499532966902e-19,7.229430999314296e-3 5.860611775774488e-3,1.3090042775088786e-2 1.3090042775088781e-2 1.3090042775088786e-2c 7.229430999314296e-3,1.3280249299450354e-18 1.3090042775088786e-2,-5.860611775774487e-3 1.3090042775088788e-2 -1.3090042775088781e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.3372900012915734,0.40182613528367384 c 0.0,-8.320578789967774e-3 -6.7451618311828105e-3,-1.5065740621150587e-2 -1.5065740621150583e-2 -1.5065740621150587e-2c -8.320578789967774e-3,-5.094885091093696e-19 -1.5065740621150587e-2,6.74516183118281e-3 -1.5065740621150587e-2 1.5065740621150582e-2c -1.0189770182187391e-18,8.320578789967774e-3 6.745161831182809e-3,1.5065740621150587e-2 1.506574062115058e-2 1.5065740621150587e-2c 8.320578789967774e-3,1.5284655273281088e-18 1.5065740621150587e-2,-6.745161831182808e-3 1.506574062115059e-2 -1.5065740621150582e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.32963515568284935,0.4423827054001457 c 0.0,-1.809421258147297e-2 -1.4668257479517473e-2,-3.2762470060990444e-2 -3.276247006099044e-2 -3.2762470060990444e-2c -1.809421258147297e-2,-1.1079509760496318e-18 -3.2762470060990444e-2,1.4668257479517471e-2 -3.2762470060990444e-2 3.276247006099043e-2c -2.2159019520992635e-18,1.809421258147297e-2 1.466825747951747e-2,3.2762470060990444e-2 3.276247006099043e-2 3.2762470060990444e-2c 1.809421258147297e-2,3.3238529281488955e-18 3.2762470060990444e-2,-1.4668257479517468e-2 3.2762470060990444e-2 -3.276247006099043e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 6.552968029136148e-2,0.6585277605680642 c 0.0,-6.059377066393684e-3 -4.9120956535214115e-3,-1.0971472719915097e-2 -1.0971472719915096e-2 -1.0971472719915097e-2c -6.059377066393684e-3,-3.7102983645929523e-19 -1.0971472719915097e-2,4.9120956535214115e-3 -1.0971472719915097e-2 1.0971472719915094e-2c -7.420596729185905e-19,6.059377066393684e-3 4.912095653521411e-3,1.0971472719915097e-2 1.0971472719915092e-2 1.0971472719915097e-2c 6.059377066393684e-3,1.1130895093778858e-18 1.0971472719915097e-2,-4.91209565352141e-3 1.09714727199151e-2 -1.0971472719915094e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.13740599422288463,0.676806333426875 c 0.0,-7.255621006186924e-3 -5.881842971244769e-3,-1.3137463977431693e-2 -1.313746397743169e-2 -1.3137463977431693e-2c -7.255621006186924e-3,-4.442786520526557e-19 -1.3137463977431693e-2,5.881842971244768e-3 -1.3137463977431693e-2 1.3137463977431688e-2c -8.885573041053114e-19,7.255621006186924e-3 5.881842971244767e-3,1.3137463977431693e-2 1.3137463977431688e-2 1.3137463977431693e-2c 7.255621006186924e-3,1.3328359561579671e-18 1.3137463977431693e-2,-5.881842971244766e-3 1.3137463977431695e-2 -1.3137463977431688e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.11828264113503009,0.6540926342827365 c 0.0,-1.464004694769519e-2 -1.1868102973483226e-2,-2.650814992117842e-2 -2.6508149921178413e-2 -2.650814992117842e-2c -1.464004694769519e-2,-8.964443316930946e-19 -2.650814992117842e-2,1.1868102973483225e-2 -2.650814992117842e-2 2.650814992117841e-2c -1.792888663386189e-18,1.464004694769519e-2 1.1868102973483223e-2,2.650814992117842e-2 2.650814992117841e-2 2.650814992117842e-2c 1.464004694769519e-2,2.689332995079284e-18 2.650814992117842e-2,-1.1868102973483221e-2 2.6508149921178423e-2 -2.650814992117841e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.11880317993960295,0.5119524765664154 c 0.0,-1.1696066133519452e-2 -9.481534980947025e-3,-2.117760111446648e-2 -2.1177601114466475e-2 -2.117760111446648e-2c -1.1696066133519452e-2,-7.1617749765151775e-19 -2.117760111446648e-2,9.481534980947023e-3 -2.117760111446648e-2 2.1177601114466472e-2c -1.4323549953030355e-18,1.1696066133519452e-2 9.481534980947021e-3,2.117760111446648e-2 2.117760111446647e-2 2.117760111446648e-2c 1.1696066133519452e-2,2.1485324929545535e-18 2.117760111446648e-2,-9.481534980947021e-3 2.1177601114466482e-2 -2.1177601114466472e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -4.991809254453328e-2,0.6003669489752509 c 0.0,-9.039029052630486e-3 -7.327580844528222e-3,-1.636660989715871e-2 -1.6366609897158706e-2 -1.636660989715871e-2c -9.039029052630486e-3,-5.534808998351929e-19 -1.636660989715871e-2,7.327580844528221e-3 -1.636660989715871e-2 1.6366609897158702e-2c -1.1069617996703857e-18,9.039029052630486e-3 7.327580844528219e-3,1.636660989715871e-2 1.6366609897158702e-2 1.636660989715871e-2c 9.039029052630486e-3,1.6604426995055785e-18 1.636660989715871e-2,-7.327580844528218e-3 1.636660989715871e-2 -1.6366609897158702e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -2.6946048890241096e-2,0.5125190080295892 c 0.0,-7.82323297810945e-3 -6.341983389907767e-3,-1.416521636801722e-2 -1.4165216368017217e-2 -1.416521636801722e-2c -7.82323297810945e-3,-4.790348612812877e-19 -1.416521636801722e-2,6.3419833899077665e-3 -1.416521636801722e-2 1.4165216368017215e-2c -9.580697225625754e-19,7.82323297810945e-3 6.341983389907766e-3,1.416521636801722e-2 1.4165216368017213e-2 1.416521636801722e-2c 7.82323297810945e-3,1.4371045838438633e-18 1.416521636801722e-2,-6.341983389907766e-3 1.4165216368017224e-2 -1.4165216368017215e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.14944640345106044,0.5487981909122319 c 0.0,-6.0587727104472475e-3 -4.911605726226057e-3,-1.0970378436673306e-2 -1.0970378436673305e-2 -1.0970378436673306e-2c -6.0587727104472475e-3,-3.709928303305278e-19 -1.0970378436673306e-2,4.911605726226056e-3 -1.0970378436673306e-2 1.0970378436673303e-2c -7.419856606610556e-19,6.0587727104472475e-3 4.911605726226056e-3,1.0970378436673306e-2 1.0970378436673301e-2 1.0970378436673306e-2c 6.0587727104472475e-3,1.1129784909915833e-18 1.0970378436673306e-2,-4.911605726226055e-3 1.0970378436673308e-2 -1.0970378436673303e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.3224954868434583,0.386962743804778 c 0.0,-5.823739925490971e-3 -4.721074008399512e-3,-1.0544813933890484e-2 -1.0544813933890482e-2 -1.0544813933890484e-2c -5.823739925490971e-3,-3.566012229409581e-19 -1.0544813933890484e-2,4.721074008399512e-3 -1.0544813933890484e-2 1.054481393389048e-2c -7.132024458819162e-19,5.823739925490971e-3 4.721074008399511e-3,1.0544813933890484e-2 1.0544813933890479e-2 1.0544813933890484e-2c 5.823739925490971e-3,1.0698036688228744e-18 1.0544813933890484e-2,-4.72107400839951e-3 1.0544813933890486e-2 -1.054481393389048e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.30372297888126454,0.403455465147561 c 0.0,-7.068215673960173e-3 -5.729920932429376e-3,-1.2798136606389551e-2 -1.2798136606389548e-2 -1.2798136606389551e-2c -7.068215673960173e-3,-4.328033850399239e-19 -1.2798136606389551e-2,5.729920932429376e-3 -1.2798136606389551e-2 1.2798136606389548e-2c -8.656067700798478e-19,7.068215673960173e-3 5.729920932429375e-3,1.2798136606389551e-2 1.2798136606389546e-2 1.2798136606389551e-2c 7.068215673960173e-3,1.2984101551197717e-18 1.2798136606389551e-2,-5.7299209324293745e-3 1.2798136606389553e-2 -1.2798136606389548e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.27960230865929936,0.4228560103102396 c 0.0,-8.751269634256298e-3 -7.09430574499774e-3,-1.584557537925404e-2 -1.5845575379254035e-2 -1.584557537925404e-2c -8.751269634256298e-3,-5.358607173033701e-19 -1.584557537925404e-2,7.094305744997739e-3 -1.584557537925404e-2 1.584557537925403e-2c -1.0717214346067402e-18,8.751269634256298e-3 7.094305744997738e-3,1.584557537925404e-2 1.584557537925403e-2 1.584557537925404e-2c 8.751269634256298e-3,1.6075821519101103e-18 1.584557537925404e-2,-7.0943057449977375e-3 1.5845575379254045e-2 -1.584557537925403e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.24771581614462518,0.445845984477118 c 0.0,-1.1100861356558104e-2 -8.999026174211368e-3,-2.0099887530769474e-2 -2.009988753076947e-2 -2.0099887530769474e-2c -1.1100861356558104e-2,-6.797317164043713e-19 -2.0099887530769474e-2,8.999026174211366e-3 -2.0099887530769474e-2 2.0099887530769467e-2c -1.3594634328087426e-18,1.1100861356558104e-2 8.999026174211366e-3,2.0099887530769474e-2 2.0099887530769463e-2 2.0099887530769474e-2c 1.1100861356558104e-2,2.039195149213114e-18 2.0099887530769474e-2,-8.999026174211364e-3 2.0099887530769484e-2 -2.0099887530769467e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.20408397244121088,0.4731788453319466 c 0.0,-1.4509508976849442e-2 -1.1762281039613623e-2,-2.6271790016463067e-2 -2.627179001646306e-2 -2.6271790016463067e-2c -1.4509508976849442e-2,-8.884511862849229e-19 -2.6271790016463067e-2,1.176228103961362e-2 -2.6271790016463067e-2 2.6271790016463056e-2c -1.7769023725698458e-18,1.4509508976849442e-2 1.1762281039613619e-2,2.6271790016463067e-2 2.6271790016463056e-2 2.6271790016463067e-2c 1.4509508976849442e-2,2.6653535588547683e-18 2.6271790016463067e-2,-1.1762281039613617e-2 2.627179001646307e-2 -2.6271790016463056e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.14181514902537445,0.5054024397633912 c 0.0,-1.9692484389838446e-2 -1.5963912778237874e-2,-3.565639716807632e-2 -3.5656397168076316e-2 -3.565639716807632e-2c -1.9692484389838446e-2,-1.2058168987637434e-18 -3.565639716807632e-2,1.5963912778237874e-2 -3.565639716807632e-2 3.565639716807631e-2c -2.4116337975274867e-18,1.9692484389838446e-2 1.596391277823787e-2,3.565639716807632e-2 3.565639716807631e-2 3.565639716807632e-2c 1.9692484389838446e-2,3.61745069629123e-18 3.565639716807632e-2,-1.596391277823787e-2 3.565639716807634e-2 -3.565639716807631e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -4.830762258127466e-2,0.541784566834368 c 0.0,-2.8039068348853335e-2 -2.2730155964227585e-2,-5.0769224313080924e-2 -5.076922431308091e-2 -5.0769224313080924e-2c -2.8039068348853335e-2,-1.7168977652248549e-18 -5.0769224313080924e-2,2.273015596422758e-2 -5.0769224313080924e-2 5.076922431308091e-2c -3.4337955304497098e-18,2.8039068348853335e-2 2.2730155964227578e-2,5.0769224313080924e-2 5.07692243130809e-2 5.0769224313080924e-2c 2.8039068348853335e-2,5.150693295674565e-18 5.0769224313080924e-2,-2.2730155964227575e-2 5.076922431308093e-2 -5.076922431308091e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.10055870533119411,0.5763267664253591 c 0.0,-4.2424102980432574e-2 -3.439153060972228e-2,-7.681563359015486e-2 -7.681563359015485e-2 -7.681563359015486e-2c -4.2424102980432574e-2,-2.597727096084222e-18 -7.681563359015486e-2,3.4391530609722276e-2 -7.681563359015486e-2 7.681563359015484e-2c -5.195454192168444e-18,4.2424102980432574e-2 3.4391530609722276e-2,7.681563359015486e-2 7.681563359015484e-2 7.681563359015486e-2c 4.2424102980432574e-2,7.793181288252665e-18 7.681563359015486e-2,-3.439153060972227e-2 7.681563359015489e-2 -7.681563359015484e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.3501702751244822,0.5828225079598849 c 0.0,-6.895722676674308e-2 -5.5900877296188006e-2,-0.1248581040629311 -0.12485810406293107 -0.1248581040629311c -6.895722676674308e-2,-4.222412351898505e-18 -0.1248581040629311,5.5900877296188e-2 -0.1248581040629311 0.12485810406293106c -8.44482470379701e-18,6.895722676674308e-2 5.590087729618799e-2,0.1248581040629311 0.12485810406293105 0.1248581040629311c 6.895722676674308e-2,1.2667237055695515e-17 0.1248581040629311,-5.5900877296187985e-2 0.12485810406293113 -0.12485810406293106Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.779034750787493,0.4907937599929746 c 0.0,-6.5299422683376485e-3 -5.293564120962911e-3,-1.1823506389300562e-2 -1.1823506389300558e-2 -1.1823506389300562e-2c -6.5299422683376485e-3,-3.998436448768354e-19 -1.1823506389300562e-2,5.293564120962911e-3 -1.1823506389300562e-2 1.1823506389300558e-2c -7.996872897536708e-19,6.5299422683376485e-3 5.29356412096291e-3,1.1823506389300562e-2 1.1823506389300556e-2 1.1823506389300562e-2c 6.5299422683376485e-3,1.1995309346305062e-18 1.1823506389300562e-2,-5.2935641209629096e-3 1.1823506389300563e-2 -1.1823506389300558e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8518568402451766,0.5294252833875033 c 0.0,-8.23411724538394e-3 -6.67507090059813e-3,-1.490918814598207e-2 -1.4909188145982067e-2 -1.490918814598207e-2c -8.23411724538394e-3,-5.041942664181731e-19 -1.490918814598207e-2,6.675070900598129e-3 -1.490918814598207e-2 1.4909188145982065e-2c -1.0083885328363462e-18,8.23411724538394e-3 6.675070900598128e-3,1.490918814598207e-2 1.4909188145982064e-2 1.490918814598207e-2c 8.23411724538394e-3,1.5125827992545192e-18 1.490918814598207e-2,-6.675070900598127e-3 1.4909188145982074e-2 -1.4909188145982065e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.7334905432783844,0.6055030986296225 c 0.0,-7.164070349019935e-3 -5.807626499779222e-3,-1.2971696848799159e-2 -1.2971696848799156e-2 -1.2971696848799159e-2c -7.164070349019935e-3,-4.386727910896862e-19 -1.2971696848799159e-2,5.807626499779221e-3 -1.2971696848799159e-2 1.2971696848799156e-2c -8.773455821793724e-19,7.164070349019935e-3 5.807626499779221e-3,1.2971696848799159e-2 1.2971696848799154e-2 1.2971696848799159e-2c 7.164070349019935e-3,1.3160183732690588e-18 1.2971696848799159e-2,-5.80762649977922e-3 1.297169684879916e-2 -1.2971696848799156e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.7663639553342527,0.5828225079598851 c 0.0,-1.1492871127790514e-2 -9.316812882698002e-3,-2.0809684010488518e-2 -2.0809684010488515e-2 -2.0809684010488518e-2c -1.1492871127790514e-2,-7.037353919830842e-19 -2.0809684010488518e-2,9.316812882698e-3 -2.0809684010488518e-2 2.080968401048851e-2c -1.4074707839661684e-18,1.1492871127790514e-2 9.316812882698e-3,2.0809684010488518e-2 2.0809684010488508e-2 2.0809684010488518e-2c 1.1492871127790514e-2,2.1112061759492524e-18 2.0809684010488518e-2,-9.316812882697999e-3 2.080968401048852e-2 -2.080968401048851e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8227383583545211,0.5380369890477329 c 0.0,-2.1219461131503317e-2 -1.720177200593971e-2,-3.8421233137443035e-2 -3.842123313744303e-2 -3.8421233137443035e-2c -2.1219461131503317e-2,-1.2993172577163606e-18 -3.8421233137443035e-2,1.720177200593971e-2 -3.8421233137443035e-2 3.842123313744302e-2c -2.598634515432721e-18,2.1219461131503317e-2 1.7201772005939708e-2,3.8421233137443035e-2 3.842123313744302e-2 3.8421233137443035e-2c 2.1219461131503317e-2,3.897951773149082e-18 3.8421233137443035e-2,-1.7201772005939708e-2 3.8421233137443035e-2 -3.842123313744302e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.7359424937425911,0.32775749433853485 c 0.0,-6.786845892243782e-3 -5.501825656849516e-3,-1.22886715490933e-2 -1.2288671549093296e-2 -1.22886715490933e-2c -6.786845892243782e-3,-4.155744549121355e-19 -1.22886715490933e-2,5.501825656849516e-3 -1.22886715490933e-2 1.2288671549093296e-2c -8.31148909824271e-19,6.786845892243782e-3 5.501825656849515e-3,1.22886715490933e-2 1.2288671549093294e-2 1.22886715490933e-2c 6.786845892243782e-3,1.2467233647364064e-18 1.22886715490933e-2,-5.501825656849514e-3 1.2288671549093301e-2 -1.2288671549093296e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.780353968629156,0.35051326309508374 c 0.0,-1.4336594576705889e-2 -1.1622106222290044e-2,-2.5958700798995937e-2 -2.595870079899593e-2 -2.5958700798995937e-2c -1.4336594576705889e-2,-8.778632329518085e-19 -2.5958700798995937e-2,1.1622106222290044e-2 -2.5958700798995937e-2 2.595870079899593e-2c -1.755726465903617e-18,1.4336594576705889e-2 1.1622106222290042e-2,2.5958700798995937e-2 2.5958700798995926e-2 2.5958700798995937e-2c 1.4336594576705889e-2,2.6335896988554254e-18 2.5958700798995937e-2,-1.162210622229004e-2 2.595870079899594e-2 -2.595870079899593e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9699932536184548,0.42018677803481613 c 0.0,-9.404714003508303e-3 -7.624027069624129e-3,-1.7028741073132434e-2 -1.702874107313243e-2 -1.7028741073132434e-2c -9.404714003508303e-3,-5.758726450646366e-19 -1.7028741073132434e-2,7.624027069624128e-3 -1.7028741073132434e-2 1.7028741073132427e-2c -1.1517452901292732e-18,9.404714003508303e-3 7.624027069624127e-3,1.7028741073132434e-2 1.7028741073132427e-2 1.7028741073132434e-2c 9.404714003508303e-3,1.72761793519391e-18 1.7028741073132434e-2,-7.624027069624126e-3 1.7028741073132434e-2 -1.7028741073132427e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9212317579270198,0.3394319632230853 c 0.0,-7.7546625349169855e-3 -6.2863960626503455e-3,-1.4041058597567333e-2 -1.404105859756733e-2 -1.4041058597567333e-2c -7.7546625349169855e-3,-4.748361325926993e-19 -1.4041058597567333e-2,6.286396062650345e-3 -1.4041058597567333e-2 1.4041058597567328e-2c -9.496722651853986e-19,7.7546625349169855e-3 6.286396062650344e-3,1.4041058597567333e-2 1.4041058597567326e-2 1.4041058597567333e-2c 7.7546625349169855e-3,1.424508397778098e-18 1.4041058597567333e-2,-6.286396062650343e-3 1.4041058597567336e-2 -1.4041058597567328e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1015251598924543,0.22691735010976513 c 0.0,-5.6498838851723205e-3 -4.580135840889835e-3,-1.0230019726062156e-2 -1.0230019726062155e-2 -1.0230019726062156e-2c -5.6498838851723205e-3,-3.459556107765247e-19 -1.0230019726062156e-2,4.580135840889834e-3 -1.0230019726062156e-2 1.0230019726062153e-2c -6.919112215530494e-19,5.6498838851723205e-3 4.580135840889834e-3,1.0230019726062156e-2 1.0230019726062151e-2 1.0230019726062156e-2c 5.6498838851723205e-3,1.037866832329574e-18 1.0230019726062156e-2,-4.580135840889833e-3 1.0230019726062158e-2 -1.0230019726062153e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0912653549694045,0.24650988634532092 c 0.0,-7.558954598446599e-3 -6.127743433252587e-3,-1.3686698031699187e-2 -1.3686698031699184e-2 -1.3686698031699187e-2c -7.558954598446599e-3,-4.628524776943897e-19 -1.3686698031699187e-2,6.127743433252586e-3 -1.3686698031699187e-2 1.3686698031699182e-2c -9.257049553887794e-19,7.558954598446599e-3 6.1277434332525854e-3,1.3686698031699187e-2 1.368669803169918e-2 1.3686698031699187e-2c 7.558954598446599e-3,1.388557433083169e-18 1.3686698031699187e-2,-6.127743433252585e-3 1.368669803169919e-2 -1.3686698031699182e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0764191723617247,0.27234351493298264 c 0.0,-1.0611583946848949e-2 -8.602388465208558e-3,-1.921397241205751e-2 -1.9213972412057505e-2 -1.921397241205751e-2c -1.0611583946848949e-2,-6.497721157196001e-19 -1.921397241205751e-2,8.602388465208558e-3 -1.921397241205751e-2 1.9213972412057502e-2c -1.2995442314392002e-18,1.0611583946848949e-2 8.602388465208556e-3,1.921397241205751e-2 1.9213972412057502e-2 1.921397241205751e-2c 1.0611583946848949e-2,1.9493163471588002e-18 1.921397241205751e-2,-8.602388465208555e-3 1.9213972412057516e-2 -1.9213972412057502e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.053362405467256,0.30756330812460136 c 0.0,-1.591737592027342e-2 -1.2903582697812836e-2,-2.882095861808626e-2 -2.8820958618086253e-2 -2.882095861808626e-2c -1.591737592027342e-2,-9.746581735794e-19 -2.882095861808626e-2,1.2903582697812834e-2 -2.882095861808626e-2 2.882095861808625e-2c -1.9493163471588e-18,1.591737592027342e-2 1.2903582697812832e-2,2.882095861808626e-2 2.8820958618086246e-2 2.882095861808626e-2c 1.591737592027342e-2,2.9239745207382e-18 2.882095861808626e-2,-1.2903582697812832e-2 2.8820958618086267e-2 -2.882095861808625e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0138407937083018,0.3569636530213992 c 0.0,-2.6276521685745003e-2 -2.1301329583542233e-2,-4.757785126928724e-2 -4.757785126928723e-2 -4.757785126928724e-2c -2.6276521685745003e-2,-1.6089729087586815e-18 -4.757785126928724e-2,2.1301329583542233e-2 -4.757785126928724e-2 4.757785126928723e-2c -3.217945817517363e-18,2.6276521685745003e-2 2.130132958354223e-2,4.757785126928724e-2 4.757785126928722e-2 4.757785126928724e-2c 2.6276521685745003e-2,4.826918726276045e-18 4.757785126928724e-2,-2.1301329583542226e-2 4.757785126928725e-2 -4.757785126928723e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9360032732953869,0.4240021821969245 c 0.0,-5.0166241399447906e-2 -4.0667773870424404e-2,-9.083401526987232e-2 -9.083401526987231e-2 -9.083401526987232e-2c -5.0166241399447906e-2,-3.0717963477543657e-18 -9.083401526987232e-2,4.06677738704244e-2 -9.083401526987232e-2 9.08340152698723e-2c -6.1435926955087314e-18,5.0166241399447906e-2 4.06677738704244e-2,9.083401526987232e-2 9.083401526987228e-2 9.083401526987232e-2c 5.0166241399447906e-2,9.215389043263097e-18 9.083401526987232e-2,-4.066777387042439e-2 9.083401526987234e-2 -9.08340152698723e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.44556787512465446,0.26695531689263347 c 0.0,-5.781160090295894e-3 -4.686556231885914e-3,-1.046771632218181e-2 -1.0467716322181807e-2 -1.046771632218181e-2c -5.781160090295894e-3,-3.5399395999696446e-19 -1.046771632218181e-2,4.686556231885914e-3 -1.046771632218181e-2 1.0467716322181806e-2c -7.079879199939289e-19,5.781160090295894e-3 4.686556231885913e-3,1.046771632218181e-2 1.0467716322181804e-2 1.046771632218181e-2c 5.781160090295894e-3,1.0619818799908934e-18 1.046771632218181e-2,-4.686556231885912e-3 1.0467716322181811e-2 -1.0467716322181806e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.47663027498722377,0.24670403842446992 c 0.0,-1.0755618943579601e-2 -8.719151900400535e-3,-1.9474770843980138e-2 -1.9474770843980135e-2 -1.9474770843980138e-2c -1.0755618943579601e-2,-6.5859171560516975e-19 -1.9474770843980138e-2,8.719151900400533e-3 -1.9474770843980138e-2 1.947477084398013e-2c -1.3171834312103395e-18,1.0755618943579601e-2 8.719151900400533e-3,1.9474770843980138e-2 1.947477084398013e-2 1.9474770843980138e-2c 1.0755618943579601e-2,1.975775146815509e-18 1.9474770843980138e-2,-8.719151900400532e-3 1.9474770843980145e-2 -1.947477084398013e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5883189274323134,0.2330861408826765 c 0.0,-1.0161915987974838e-2 -8.23786056042379e-3,-1.839977654839863e-2 -1.8399776548398628e-2 -1.839977654839863e-2c -1.0161915987974838e-2,-6.222378943938849e-19 -1.839977654839863e-2,8.23786056042379e-3 -1.839977654839863e-2 1.8399776548398625e-2c -1.2444757887877698e-18,1.0161915987974838e-2 8.237860560423789e-3,1.839977654839863e-2 1.8399776548398625e-2 1.839977654839863e-2c 1.0161915987974838e-2,1.866713683181655e-18 1.839977654839863e-2,-8.237860560423789e-3 1.839977654839864e-2 -1.8399776548398625e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5146031159576778,9.938600489455647e-2 c 0.0,-6.720898536196804e-3 -5.4483647618680485e-3,-1.2169263298064854e-2 -1.216926329806485e-2 -1.2169263298064854e-2c -6.720898536196804e-3,-4.115363439873774e-19 -1.2169263298064854e-2,5.448364761868048e-3 -1.2169263298064854e-2 1.216926329806485e-2c -8.230726879747548e-19,6.720898536196804e-3 5.448364761868047e-3,1.2169263298064854e-2 1.2169263298064848e-2 1.2169263298064854e-2c 6.720898536196804e-3,1.234609031962132e-18 1.2169263298064854e-2,-5.448364761868046e-3 1.2169263298064855e-2 -1.216926329806485e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5258958929975791,0.1330826567005662 c 0.0,-1.1918255654844135e-2 -9.661655176471768e-3,-2.1579910831315906e-2 -2.1579910831315902e-2 -2.1579910831315906e-2c -1.1918255654844135e-2,-7.297826819562355e-19 -2.1579910831315906e-2,9.661655176471768e-3 -2.1579910831315906e-2 2.15799108313159e-2c -1.459565363912471e-18,1.1918255654844135e-2 9.661655176471766e-3,2.1579910831315906e-2 2.1579910831315895e-2 2.1579910831315906e-2c 1.1918255654844135e-2,2.1893480458687068e-18 2.1579910831315906e-2,-9.661655176471764e-3 2.1579910831315916e-2 -2.15799108313159e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5585236078835155,0.2032217517282028 c 0.0,-2.6934746782619017e-2 -2.183492645364391e-2,-4.876967323626293e-2 -4.876967323626292e-2 -4.876967323626293e-2c -2.6934746782619017e-2,-1.6492775716589425e-18 -4.876967323626293e-2,2.1834926453643908e-2 -4.876967323626293e-2 4.876967323626292e-2c -3.298555143317885e-18,2.6934746782619017e-2 2.1834926453643905e-2,4.876967323626293e-2 4.876967323626291e-2 4.876967323626293e-2c 2.6934746782619017e-2,4.947832714976827e-18 4.876967323626293e-2,-2.18349264536439e-2 4.876967323626294e-2 -4.876967323626292e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.7569759758330982,0.46404929909688913 c 0.0,-0.11826992710458896 -9.587671942299299e-2,-0.21414664652758197 -0.21414664652758192 -0.21414664652758197c -0.11826992710458896,-7.241944383201283e-18 -0.21414664652758197,9.587671942299297e-2 -0.21414664652758197 0.2141466465275819c -1.4483888766402565e-17,0.11826992710458896 9.587671942299296e-2,0.21414664652758197 0.2141466465275819 0.21414664652758197c 0.11826992710458896,2.172583314960385e-17 0.21414664652758197,-9.587671942299295e-2 0.214146646527582 -0.2141466465275819Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.18244177378133422,-0.6777091934337103 c 0.0,-8.053465476643307e-3 -6.52862370671852e-3,-1.4582089183361829e-2 -1.4582089183361825e-2 -1.4582089183361829e-2c -8.053465476643307e-3,-4.9313253590074695e-19 -1.4582089183361829e-2,6.5286237067185195e-3 -1.4582089183361829e-2 1.4582089183361823e-2c -9.862650718014939e-19,8.053465476643307e-3 6.528623706718519e-3,1.4582089183361829e-2 1.4582089183361822e-2 1.4582089183361829e-2c 8.053465476643307e-3,1.4793976077022408e-18 1.4582089183361829e-2,-6.528623706718518e-3 1.4582089183361832e-2 -1.4582089183361823e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.3100746953866915,-0.688691307845332 c 0.0,-5.825415370910087e-3 -4.72243222527078e-3,-1.0547847596180868e-2 -1.0547847596180866e-2 -1.0547847596180868e-2c -5.825415370910087e-3,-3.5670381438444143e-19 -1.0547847596180868e-2,4.722432225270779e-3 -1.0547847596180868e-2 1.0547847596180864e-2c -7.134076287688829e-19,5.825415370910087e-3 4.722432225270779e-3,1.0547847596180868e-2 1.0547847596180862e-2 1.0547847596180868e-2c 5.825415370910087e-3,1.0701114431533244e-18 1.0547847596180868e-2,-4.722432225270778e-3 1.0547847596180873e-2 -1.0547847596180864e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.2753648072761402,-0.7044498639713631 c 0.0,-1.0813690874093534e-2 -8.766228501566546e-3,-1.9579919375660084e-2 -1.957991937566008e-2 -1.9579919375660084e-2c -1.0813690874093534e-2,-6.621475957963796e-19 -1.9579919375660084e-2,8.766228501566546e-3 -1.9579919375660084e-2 1.9579919375660077e-2c -1.3242951915927591e-18,1.0813690874093534e-2 8.766228501566544e-3,1.9579919375660084e-2 1.9579919375660074e-2 1.9579919375660084e-2c 1.0813690874093534e-2,1.986442787389139e-18 1.9579919375660084e-2,-8.766228501566544e-3 1.9579919375660088e-2 -1.9579919375660077e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.15794385262414562,-0.8220025441976236 c 0.0,-8.110990090384693e-3 -6.575256619975681e-3,-1.4686246710360376e-2 -1.4686246710360373e-2 -1.4686246710360376e-2c -8.110990090384693e-3,-4.966549026052758e-19 -1.4686246710360376e-2,6.57525661997568e-3 -1.4686246710360376e-2 1.4686246710360371e-2c -9.933098052105517e-19,8.110990090384693e-3 6.575256619975679e-3,1.4686246710360376e-2 1.468624671036037e-2 1.4686246710360376e-2c 8.110990090384693e-3,1.4899647078158274e-18 1.4686246710360376e-2,-6.575256619975678e-3 1.468624671036038e-2 -1.4686246710360371e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.17227627692310635,-0.791208912876302 c 0.0,-1.3452461428175891e-2 -1.0905374692226483e-2,-2.4357836120402376e-2 -2.435783612040237e-2 -2.4357836120402376e-2c -1.3452461428175891e-2,-8.237256914334418e-19 -2.4357836120402376e-2,1.0905374692226482e-2 -2.4357836120402376e-2 2.435783612040237e-2c -1.6474513828668835e-18,1.3452461428175891e-2 1.090537469222648e-2,2.4357836120402376e-2 2.4357836120402366e-2 2.4357836120402376e-2c 1.3452461428175891e-2,2.4711770743003254e-18 2.4357836120402376e-2,-1.0905374692226478e-2 2.435783612040238e-2 -2.435783612040237e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.1848248293042146,-0.7288080741286218 c 0.0,-2.6265160384041218e-2 -2.12921194287514e-2,-4.7557279812792626e-2 -4.755727981279261e-2 -4.7557279812792626e-2c -2.6265160384041218e-2,-1.6082772296703972e-18 -4.7557279812792626e-2,2.1292119428751397e-2 -4.7557279812792626e-2 4.755727981279261e-2c -3.2165544593407945e-18,2.6265160384041218e-2 2.1292119428751397e-2,4.7557279812792626e-2 4.7557279812792605e-2 4.7557279812792626e-2c 2.6265160384041218e-2,4.8248316890111915e-18 4.7557279812792626e-2,-2.1292119428751394e-2 4.755727981279263e-2 -4.755727981279261e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.12556991385859947,-0.5605284280384003 c 0.0,-6.543422791232337e-3 -5.304492243968401e-3,-1.1847915035200739e-2 -1.1847915035200735e-2 -1.1847915035200739e-2c -6.543422791232337e-3,-4.00669088837526e-19 -1.1847915035200739e-2,5.3044922439684e-3 -1.1847915035200739e-2 1.1847915035200735e-2c -8.01338177675052e-19,6.543422791232337e-3 5.304492243968399e-3,1.1847915035200739e-2 1.1847915035200733e-2 1.1847915035200739e-2c 6.543422791232337e-3,1.202007266512578e-18 1.1847915035200739e-2,-5.304492243968399e-3 1.184791503520074e-2 -1.1847915035200735e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.1440301045343687,-0.48844104178948383 c 0.0,-7.229430999314296e-3 -5.860611775774489e-3,-1.3090042775088786e-2 -1.3090042775088783e-2 -1.3090042775088786e-2c -7.229430999314296e-3,-4.426749766483451e-19 -1.3090042775088786e-2,5.860611775774489e-3 -1.3090042775088786e-2 1.3090042775088781e-2c -8.853499532966902e-19,7.229430999314296e-3 5.860611775774488e-3,1.3090042775088786e-2 1.3090042775088781e-2 1.3090042775088786e-2c 7.229430999314296e-3,1.3280249299450354e-18 1.3090042775088786e-2,-5.860611775774487e-3 1.3090042775088788e-2 -1.3090042775088781e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -6.044555110680222e-2,-0.5095005024366414 c 0.0,-8.320578789967774e-3 -6.7451618311828105e-3,-1.5065740621150587e-2 -1.5065740621150583e-2 -1.5065740621150587e-2c -8.320578789967774e-3,-5.094885091093696e-19 -1.5065740621150587e-2,6.74516183118281e-3 -1.5065740621150587e-2 1.5065740621150582e-2c -1.0189770182187391e-18,8.320578789967774e-3 6.745161831182809e-3,1.5065740621150587e-2 1.506574062115058e-2 1.5065740621150587e-2c 8.320578789967774e-3,1.5284655273281088e-18 1.5065740621150587e-2,-6.745161831182808e-3 1.506574062115059e-2 -1.5065740621150582e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -8.972446109782839e-2,-0.5184908882524185 c 0.0,-1.809421258147297e-2 -1.4668257479517473e-2,-3.2762470060990444e-2 -3.276247006099044e-2 -3.2762470060990444e-2c -1.809421258147297e-2,-1.1079509760496318e-18 -3.2762470060990444e-2,1.4668257479517471e-2 -3.2762470060990444e-2 3.276247006099043e-2c -2.2159019520992635e-18,1.809421258147297e-2 1.466825747951747e-2,3.2762470060990444e-2 3.276247006099043e-2 3.2762470060990444e-2c 1.809421258147297e-2,3.3238529281488955e-18 3.2762470060990444e-2,-1.4668257479517468e-2 3.2762470060990444e-2 -3.276247006099043e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.43476947573676716,-0.48780161574264613 c 0.0,-6.059377066393684e-3 -4.9120956535214115e-3,-1.0971472719915097e-2 -1.0971472719915096e-2 -1.0971472719915097e-2c -6.059377066393684e-3,-3.7102983645929523e-19 -1.0971472719915097e-2,4.9120956535214115e-3 -1.0971472719915097e-2 1.0971472719915094e-2c -7.420596729185905e-19,6.059377066393684e-3 4.912095653521411e-3,1.0971472719915097e-2 1.0971472719915092e-2 1.0971472719915097e-2c 6.059377066393684e-3,1.1130895093778858e-18 1.0971472719915097e-2,-4.91209565352141e-3 1.09714727199151e-2 -1.0971472719915094e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.39860253605632856,-0.5513434981463865 c 0.0,-7.255621006186924e-3 -5.881842971244769e-3,-1.3137463977431693e-2 -1.313746397743169e-2 -1.3137463977431693e-2c -7.255621006186924e-3,-4.442786520526557e-19 -1.3137463977431693e-2,5.881842971244768e-3 -1.3137463977431693e-2 1.3137463977431688e-2c -8.885573041053114e-19,7.255621006186924e-3 5.881842971244767e-3,1.3137463977431693e-2 1.3137463977431688e-2 1.3137463977431693e-2c 7.255621006186924e-3,1.3328359561579671e-18 1.3137463977431693e-2,-5.881842971244766e-3 1.3137463977431695e-2 -1.3137463977431688e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.3906738373515958,-0.5120731597688264 c 0.0,-1.464004694769519e-2 -1.1868102973483226e-2,-2.650814992117842e-2 -2.6508149921178413e-2 -2.650814992117842e-2c -1.464004694769519e-2,-8.964443316930946e-19 -2.650814992117842e-2,1.1868102973483225e-2 -2.650814992117842e-2 2.650814992117841e-2c -1.792888663386189e-18,1.464004694769519e-2 1.1868102973483223e-2,2.650814992117842e-2 2.650814992117841e-2 2.650814992117842e-2c 1.464004694769519e-2,2.689332995079284e-18 2.650814992117842e-2,-1.1868102973483221e-2 2.6508149921178423e-2 -2.650814992117841e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.28780676145815354,-0.41970794082197305 c 0.0,-1.1696066133519452e-2 -9.481534980947025e-3,-2.117760111446648e-2 -2.1177601114466475e-2 -2.117760111446648e-2c -1.1696066133519452e-2,-7.1617749765151775e-19 -2.117760111446648e-2,9.481534980947023e-3 -2.117760111446648e-2 2.1177601114466472e-2c -1.4323549953030355e-18,1.1696066133519452e-2 9.481534980947021e-3,2.117760111446648e-2 2.117760111446647e-2 2.117760111446648e-2c 1.1696066133519452e-2,2.1485324929545535e-18 2.117760111446648e-2,-9.481534980947021e-3 2.1177601114466482e-2 -2.1177601114466472e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.46890330591179635,-0.359648778686102 c 0.0,-9.039029052630486e-3 -7.327580844528222e-3,-1.636660989715871e-2 -1.6366609897158706e-2 -1.636660989715871e-2c -9.039029052630486e-3,-5.534808998351929e-19 -1.636660989715871e-2,7.327580844528221e-3 -1.636660989715871e-2 1.6366609897158702e-2c -1.1069617996703857e-18,9.039029052630486e-3 7.327580844528219e-3,1.636660989715871e-2 1.6366609897158702e-2 1.636660989715871e-2c 9.039029052630486e-3,1.6604426995055785e-18 1.636660989715871e-2,-7.327580844528218e-3 1.636660989715871e-2 -1.6366609897158702e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.38957558791148206,-0.3183696478663002 c 0.0,-7.82323297810945e-3 -6.341983389907767e-3,-1.416521636801722e-2 -1.4165216368017217e-2 -1.416521636801722e-2c -7.82323297810945e-3,-4.790348612812877e-19 -1.416521636801722e-2,6.3419833899077665e-3 -1.416521636801722e-2 1.4165216368017215e-2c -9.580697225625754e-19,7.82323297810945e-3 6.341983389907766e-3,1.416521636801722e-2 1.4165216368017213e-2 1.416521636801722e-2c 7.82323297810945e-3,1.4371045838438633e-18 1.416521636801722e-2,-6.341983389907766e-3 1.4165216368017224e-2 -1.4165216368017215e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.5004985134246064,-0.25556324250163587 c 0.0,-6.0587727104472475e-3 -4.911605726226057e-3,-1.0970378436673306e-2 -1.0970378436673305e-2 -1.0970378436673306e-2c -6.0587727104472475e-3,-3.709928303305278e-19 -1.0970378436673306e-2,4.911605726226056e-3 -1.0970378436673306e-2 1.0970378436673303e-2c -7.419856606610556e-19,6.0587727104472475e-3 4.911605726226056e-3,1.0970378436673306e-2 1.0970378436673301e-2 1.0970378436673306e-2c 6.0587727104472475e-3,1.1129784909915833e-18 1.0970378436673306e-2,-4.911605726226055e-3 1.0970378436673308e-2 -1.0970378436673303e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.4996483609328185,-1.894548374195904e-2 c 0.0,-5.823739925490971e-3 -4.721074008399512e-3,-1.0544813933890484e-2 -1.0544813933890482e-2 -1.0544813933890484e-2c -5.823739925490971e-3,-3.566012229409581e-19 -1.0544813933890484e-2,4.721074008399512e-3 -1.0544813933890484e-2 1.054481393389048e-2c -7.132024458819162e-19,5.823739925490971e-3 4.721074008399511e-3,1.0544813933890484e-2 1.0544813933890479e-2 1.0544813933890484e-2c 5.823739925490971e-3,1.0698036688228744e-18 1.0544813933890484e-2,-4.72107400839951e-3 1.0544813933890486e-2 -1.054481393389048e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.4982546552983857,-4.227260097649588e-2 c 0.0,-7.068215673960173e-3 -5.729920932429376e-3,-1.2798136606389551e-2 -1.2798136606389548e-2 -1.2798136606389551e-2c -7.068215673960173e-3,-4.328033850399239e-19 -1.2798136606389551e-2,5.729920932429376e-3 -1.2798136606389551e-2 1.2798136606389548e-2c -8.656067700798478e-19,7.068215673960173e-3 5.729920932429375e-3,1.2798136606389551e-2 1.2798136606389546e-2 1.2798136606389551e-2c 7.068215673960173e-3,1.2984101551197717e-18 1.2798136606389551e-2,-5.7299209324293745e-3 1.2798136606389553e-2 -1.2798136606389548e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.4951021338171543,-7.091612020756985e-2 c 0.0,-8.751269634256298e-3 -7.09430574499774e-3,-1.584557537925404e-2 -1.5845575379254035e-2 -1.584557537925404e-2c -8.751269634256298e-3,-5.358607173033701e-19 -1.584557537925404e-2,7.094305744997739e-3 -1.584557537925404e-2 1.584557537925403e-2c -1.0717214346067402e-18,8.751269634256298e-3 7.094305744997738e-3,1.584557537925404e-2 1.584557537925403e-2 1.584557537925404e-2c 8.751269634256298e-3,1.6075821519101103e-18 1.584557537925404e-2,-7.0943057449977375e-3 1.5845575379254045e-2 -1.584557537925403e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.4889144665138589,-0.10680955194198277 c 0.0,-1.1100861356558104e-2 -8.999026174211368e-3,-2.0099887530769474e-2 -2.009988753076947e-2 -2.0099887530769474e-2c -1.1100861356558104e-2,-6.797317164043713e-19 -2.0099887530769474e-2,8.999026174211366e-3 -2.0099887530769474e-2 2.0099887530769467e-2c -1.3594634328087426e-18,1.1100861356558104e-2 8.999026174211366e-3,2.0099887530769474e-2 2.0099887530769463e-2 2.0099887530769474e-2c 1.1100861356558104e-2,2.039195149213114e-18 2.0099887530769474e-2,-8.999026174211364e-3 2.0099887530769484e-2 -2.0099887530769467e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.4773105886124268,-0.15286197990867442 c 0.0,-1.4509508976849442e-2 -1.1762281039613623e-2,-2.6271790016463067e-2 -2.627179001646306e-2 -2.6271790016463067e-2c -1.4509508976849442e-2,-8.884511862849229e-19 -2.6271790016463067e-2,1.176228103961362e-2 -2.6271790016463067e-2 2.6271790016463056e-2c -1.7769023725698458e-18,1.4509508976849442e-2 1.1762281039613619e-2,2.6271790016463067e-2 2.6271790016463056e-2 2.6271790016463067e-2c 1.4509508976849442e-2,2.6653535588547683e-18 2.6271790016463067e-2,-1.1762281039613617e-2 2.627179001646307e-2 -2.6271790016463056e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.45559144410444624,-0.21354937197793147 c 0.0,-1.9692484389838446e-2 -1.5963912778237874e-2,-3.565639716807632e-2 -3.5656397168076316e-2 -3.565639716807632e-2c -1.9692484389838446e-2,-1.2058168987637434e-18 -3.565639716807632e-2,1.5963912778237874e-2 -3.565639716807632e-2 3.565639716807631e-2c -2.4116337975274867e-18,1.9692484389838446e-2 1.596391277823787e-2,3.565639716807632e-2 3.565639716807631e-2 3.565639716807632e-2c 1.9692484389838446e-2,3.61745069629123e-18 3.565639716807632e-2,-1.596391277823787e-2 3.565639716807634e-2 -3.565639716807631e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.41384603763545746,-0.29576916136562065 c 0.0,-2.8039068348853335e-2 -2.2730155964227585e-2,-5.0769224313080924e-2 -5.076922431308091e-2 -5.0769224313080924e-2c -2.8039068348853335e-2,-1.7168977652248549e-18 -5.0769224313080924e-2,2.273015596422758e-2 -5.0769224313080924e-2 5.076922431308091e-2c -3.4337955304497098e-18,2.8039068348853335e-2 2.2730155964227578e-2,5.0769224313080924e-2 5.07692243130809e-2 5.0769224313080924e-2c 2.8039068348853335e-2,5.150693295674565e-18 5.0769224313080924e-2,-2.2730155964227575e-2 5.076922431308093e-2 -5.076922431308091e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.32960884277367325,-0.40931090892669675 c 0.0,-4.2424102980432574e-2 -3.439153060972228e-2,-7.681563359015486e-2 -7.681563359015485e-2 -7.681563359015486e-2c -4.2424102980432574e-2,-2.597727096084222e-18 -7.681563359015486e-2,3.4391530609722276e-2 -7.681563359015486e-2 7.681563359015484e-2c -5.195454192168444e-18,4.2424102980432574e-2 3.4391530609722276e-2,7.681563359015486e-2 7.681563359015484e-2 7.681563359015486e-2c 4.2424102980432574e-2,7.793181288252665e-18 7.681563359015486e-2,-3.439153060972227e-2 7.681563359015489e-2 -7.681563359015484e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M -0.14926214112724237,-0.5615209180342252 c 0.0,-6.895722676674308e-2 -5.5900877296188006e-2,-0.1248581040629311 -0.12485810406293107 -0.1248581040629311c -6.895722676674308e-2,-4.222412351898505e-18 -0.1248581040629311,5.5900877296188e-2 -0.1248581040629311 0.12485810406293106c -8.44482470379701e-18,6.895722676674308e-2 5.590087729618799e-2,0.1248581040629311 0.12485810406293105 0.1248581040629311c 6.895722676674308e-2,1.2667237055695515e-17 0.1248581040629311,-5.5900877296187985e-2 0.12485810406293113 -0.12485810406293106Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.17367122365530396,-0.8962683330313798 c 0.0,-6.5299422683376485e-3 -5.293564120962911e-3,-1.1823506389300562e-2 -1.1823506389300558e-2 -1.1823506389300562e-2c -6.5299422683376485e-3,-3.998436448768354e-19 -1.1823506389300562e-2,5.293564120962911e-3 -1.1823506389300562e-2 1.1823506389300558e-2c -7.996872897536708e-19,6.5299422683376485e-3 5.29356412096291e-3,1.1823506389300562e-2 1.1823506389300556e-2 1.1823506389300562e-2c 6.5299422683376485e-3,1.1995309346305062e-18 1.1823506389300562e-2,-5.2935641209629096e-3 1.1823506389300563e-2 -1.1823506389300558e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.19585256182196512,-0.9736693476571222 c 0.0,-8.23411724538394e-3 -6.67507090059813e-3,-1.490918814598207e-2 -1.4909188145982067e-2 -1.490918814598207e-2c -8.23411724538394e-3,-5.041942664181731e-19 -1.490918814598207e-2,6.675070900598129e-3 -1.490918814598207e-2 1.4909188145982065e-2c -1.0083885328363462e-18,8.23411724538394e-3 6.675070900598128e-3,1.490918814598207e-2 1.4909188145982064e-2 1.490918814598207e-2c 8.23411724538394e-3,1.5125827992545192e-18 1.490918814598207e-2,-6.675070900598127e-3 1.4909188145982074e-2 -1.4909188145982065e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 5.89623071408279e-2,-0.9400352516130771 c 0.0,-7.164070349019935e-3 -5.807626499779222e-3,-1.2971696848799159e-2 -1.2971696848799156e-2 -1.2971696848799159e-2c -7.164070349019935e-3,-4.386727910896862e-19 -1.2971696848799159e-2,5.807626499779221e-3 -1.2971696848799159e-2 1.2971696848799156e-2c -8.773455821793724e-19,7.164070349019935e-3 5.807626499779221e-3,1.2971696848799159e-2 1.2971696848799154e-2 1.2971696848799159e-2c 7.164070349019935e-3,1.3160183732690588e-18 1.2971696848799159e-2,-5.80762649977922e-3 1.297169684879916e-2 -1.2971696848799156e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.10045406699861979,-0.9429687266989286 c 0.0,-1.1492871127790514e-2 -9.316812882698002e-3,-2.0809684010488518e-2 -2.0809684010488515e-2 -2.0809684010488518e-2c -1.1492871127790514e-2,-7.037353919830842e-19 -2.0809684010488518e-2,9.316812882698e-3 -2.0809684010488518e-2 2.080968401048851e-2c -1.4074707839661684e-18,1.1492871127790514e-2 9.316812882698e-3,2.0809684010488518e-2 2.0809684010488508e-2 2.0809684010488518e-2c 1.1492871127790514e-2,2.1112061759492524e-18 2.0809684010488518e-2,-9.316812882697999e-3 2.080968401048852e-2 -2.080968401048851e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.17726164164547786,-0.9409359677776453 c 0.0,-2.1219461131503317e-2 -1.720177200593971e-2,-3.8421233137443035e-2 -3.842123313744303e-2 -3.8421233137443035e-2c -2.1219461131503317e-2,-1.2993172577163606e-18 -3.8421233137443035e-2,1.720177200593971e-2 -3.8421233137443035e-2 3.842123313744302e-2c -2.598634515432721e-18,2.1219461131503317e-2 1.7201772005939708e-2,3.8421233137443035e-2 3.842123313744302e-2 3.8421233137443035e-2c 2.1219461131503317e-2,3.897951773149082e-18 3.8421233137443035e-2,-1.7201772005939708e-2 3.8421233137443035e-2 -3.842123313744302e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2640575062574082,-0.7534668428935347 c 0.0,-6.786845892243782e-3 -5.501825656849516e-3,-1.22886715490933e-2 -1.2288671549093296e-2 -1.22886715490933e-2c -6.786845892243782e-3,-4.155744549121355e-19 -1.22886715490933e-2,5.501825656849516e-3 -1.22886715490933e-2 1.2288671549093296e-2c -8.31148909824271e-19,6.786845892243782e-3 5.501825656849515e-3,1.22886715490933e-2 1.2288671549093294e-2 1.22886715490933e-2c 6.786845892243782e-3,1.2467233647364064e-18 1.22886715490933e-2,-5.501825656849514e-3 1.2288671549093301e-2 -1.2288671549093296e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2819469132884337,-0.7914807659043678 c 0.0,-1.4336594576705889e-2 -1.1622106222290044e-2,-2.5958700798995937e-2 -2.595870079899593e-2 -2.5958700798995937e-2c -1.4336594576705889e-2,-8.778632329518085e-19 -2.5958700798995937e-2,1.1622106222290044e-2 -2.5958700798995937e-2 2.595870079899593e-2c -1.755726465903617e-18,1.4336594576705889e-2 1.1622106222290042e-2,2.5958700798995937e-2 2.5958700798995926e-2 2.5958700798995937e-2c 1.4336594576705889e-2,2.6335896988554254e-18 2.5958700798995937e-2,-1.162210622229004e-2 2.595870079899594e-2 -2.595870079899593e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.35695857498568706,-0.9844521311989763 c 0.0,-9.404714003508303e-3 -7.624027069624129e-3,-1.7028741073132434e-2 -1.702874107313243e-2 -1.7028741073132434e-2c -9.404714003508303e-3,-5.758726450646366e-19 -1.7028741073132434e-2,7.624027069624128e-3 -1.7028741073132434e-2 1.7028741073132427e-2c -1.1517452901292732e-18,9.404714003508303e-3 7.624027069624127e-3,1.7028741073132434e-2 1.7028741073132427e-2 1.7028741073132434e-2c 9.404714003508303e-3,1.72761793519391e-18 1.7028741073132434e-2,-7.624027069624126e-3 1.7028741073132434e-2 -1.7028741073132427e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.382055107780434,-0.8959769429016404 c 0.0,-7.7546625349169855e-3 -6.2863960626503455e-3,-1.4041058597567333e-2 -1.404105859756733e-2 -1.4041058597567333e-2c -7.7546625349169855e-3,-4.748361325926993e-19 -1.4041058597567333e-2,6.286396062650345e-3 -1.4041058597567333e-2 1.4041058597567328e-2c -9.496722651853986e-19,7.7546625349169855e-3 6.286396062650344e-3,1.4041058597567333e-2 1.4041058597567326e-2 1.4041058597567333e-2c 7.7546625349169855e-3,1.424508397778098e-18 1.4041058597567333e-2,-6.286396062650343e-3 1.4041058597567336e-2 -1.4041058597567328e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5859321656989218,-0.9544546117306303 c 0.0,-5.6498838851723205e-3 -4.580135840889835e-3,-1.0230019726062156e-2 -1.0230019726062155e-2 -1.0230019726062156e-2c -5.6498838851723205e-3,-3.459556107765247e-19 -1.0230019726062156e-2,4.580135840889834e-3 -1.0230019726062156e-2 1.0230019726062153e-2c -6.919112215530494e-19,5.6498838851723205e-3 4.580135840889834e-3,1.0230019726062156e-2 1.0230019726062151e-2 1.0230019726062156e-2c 5.6498838851723205e-3,1.037866832329574e-18 1.0230019726062156e-2,-4.580135840889833e-3 1.0230019726062158e-2 -1.0230019726062153e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5656961505521556,-0.9577204447445603 c 0.0,-7.558954598446599e-3 -6.127743433252587e-3,-1.3686698031699187e-2 -1.3686698031699184e-2 -1.3686698031699187e-2c -7.558954598446599e-3,-4.628524776943897e-19 -1.3686698031699187e-2,6.127743433252586e-3 -1.3686698031699187e-2 1.3686698031699182e-2c -9.257049553887794e-19,7.558954598446599e-3 6.1277434332525854e-3,1.3686698031699187e-2 1.368669803169918e-2 1.3686698031699187e-2c 7.558954598446599e-3,1.388557433083169e-18 1.3686698031699187e-2,-6.127743433252585e-3 1.368669803169919e-2 -1.3686698031699182e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5384279448241144,-0.9603492467736724 c 0.0,-1.0611583946848949e-2 -8.602388465208558e-3,-1.921397241205751e-2 -1.9213972412057505e-2 -1.921397241205751e-2c -1.0611583946848949e-2,-6.497721157196001e-19 -1.921397241205751e-2,8.602388465208558e-3 -1.921397241205751e-2 1.9213972412057502e-2c -1.2995442314392002e-18,1.0611583946848949e-2 8.602388465208556e-3,1.921397241205751e-2 1.9213972412057502e-2 1.921397241205751e-2c 1.0611583946848949e-2,1.9493163471588002e-18 1.921397241205751e-2,-8.602388465208555e-3 1.9213972412057516e-2 -1.9213972412057502e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.4999999999999995,-0.9603492467736722 c 0.0,-1.591737592027342e-2 -1.2903582697812836e-2,-2.882095861808626e-2 -2.8820958618086253e-2 -2.882095861808626e-2c -1.591737592027342e-2,-9.746581735794e-19 -2.882095861808626e-2,1.2903582697812834e-2 -2.882095861808626e-2 2.882095861808625e-2c -1.9493163471588e-18,1.591737592027342e-2 1.2903582697812832e-2,2.882095861808626e-2 2.8820958618086246e-2 2.882095861808626e-2c 1.591737592027342e-2,2.9239745207382e-18 2.882095861808626e-2,-1.2903582697812832e-2 2.8820958618086267e-2 -2.882095861808625e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.4429065784768549,-0.9512109760477583 c 0.0,-2.6276521685745003e-2 -2.1301329583542233e-2,-4.757785126928724e-2 -4.757785126928723e-2 -4.757785126928724e-2c -2.6276521685745003e-2,-1.6089729087586815e-18 -4.757785126928724e-2,2.1301329583542233e-2 -4.757785126928724e-2 4.757785126928723e-2c -3.217945817517363e-18,2.6276521685745003e-2 2.130132958354223e-2,4.757785126928724e-2 4.757785126928722e-2 4.757785126928724e-2c 2.6276521685745003e-2,4.826918726276045e-18 4.757785126928724e-2,-2.1301329583542226e-2 4.757785126928725e-2 -4.757785126928723e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.3546655755682038,-0.908009819886162 c 0.0,-5.0166241399447906e-2 -4.0667773870424404e-2,-9.083401526987232e-2 -9.083401526987231e-2 -9.083401526987232e-2c -5.0166241399447906e-2,-3.0717963477543657e-18 -9.083401526987232e-2,4.06677738704244e-2 -9.083401526987232e-2 9.08340152698723e-2c -6.1435926955087314e-18,5.0166241399447906e-2 4.06677738704244e-2,9.083401526987232e-2 9.083401526987228e-2 9.083401526987232e-2c 5.0166241399447906e-2,9.215389043263097e-18 9.083401526987232e-2,-4.066777387042439e-2 9.083401526987234e-2 -9.08340152698723e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.11060095281483646,-0.5005503215029328 c 0.0,-5.781160090295894e-3 -4.686556231885914e-3,-1.046771632218181e-2 -1.0467716322181807e-2 -1.046771632218181e-2c -5.781160090295894e-3,-3.5399395999696446e-19 -1.046771632218181e-2,4.686556231885914e-3 -1.046771632218181e-2 1.0467716322181806e-2c -7.079879199939289e-19,5.781160090295894e-3 4.686556231885913e-3,1.046771632218181e-2 1.0467716322181804e-2 1.046771632218181e-2c 5.781160090295894e-3,1.0619818799908934e-18 1.046771632218181e-2,-4.686556231885912e-3 1.0467716322181811e-2 -1.0467716322181806e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.14945412480835726,-0.5029506984649774 c 0.0,-1.0755618943579601e-2 -8.719151900400535e-3,-1.9474770843980138e-2 -1.9474770843980135e-2 -1.9474770843980138e-2c -1.0755618943579601e-2,-6.5859171560516975e-19 -1.9474770843980138e-2,8.719151900400533e-3 -1.9474770843980138e-2 1.947477084398013e-2c -1.3171834312103395e-18,1.0755618943579601e-2 8.719151900400533e-3,1.9474770843980138e-2 1.947477084398013e-2 1.9474770843980138e-2c 1.0755618943579601e-2,1.975775146815509e-18 1.9474770843980138e-2,-8.719151900400532e-3 1.9474770843980145e-2 -1.947477084398013e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2350432177030595,-0.5763701996290996 c 0.0,-1.0161915987974838e-2 -8.23786056042379e-3,-1.839977654839863e-2 -1.8399776548398628e-2 -1.839977654839863e-2c -1.0161915987974838e-2,-6.222378943938849e-19 -1.839977654839863e-2,8.23786056042379e-3 -1.839977654839863e-2 1.8399776548398625e-2c -1.2444757887877698e-18,1.0161915987974838e-2 8.237860560423789e-3,1.839977654839863e-2 1.8399776548398625e-2 1.839977654839863e-2c 1.0161915987974838e-2,1.866713683181655e-18 1.839977654839863e-2,-8.237860560423789e-3 1.839977654839864e-2 -1.8399776548398625e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2809532606348325,-0.4359730691716529 c 0.0,-6.720898536196804e-3 -5.4483647618680485e-3,-1.2169263298064854e-2 -1.216926329806485e-2 -1.2169263298064854e-2c -6.720898536196804e-3,-4.115363439873774e-19 -1.2169263298064854e-2,5.448364761868048e-3 -1.2169263298064854e-2 1.216926329806485e-2c -8.230726879747548e-19,6.720898536196804e-3 5.448364761868047e-3,1.2169263298064854e-2 1.2169263298064848e-2 1.2169263298064854e-2c 6.720898536196804e-3,1.234609031962132e-18 1.2169263298064854e-2,-5.448364761868046e-3 1.2169263298064855e-2 -1.216926329806485e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2669369630217881,-0.4602667925488491 c 0.0,-1.1918255654844135e-2 -9.661655176471768e-3,-2.1579910831315906e-2 -2.1579910831315902e-2 -2.1579910831315906e-2c -1.1918255654844135e-2,-7.297826819562355e-19 -2.1579910831315906e-2,9.661655176471768e-3 -2.1579910831315906e-2 2.15799108313159e-2c -1.459565363912471e-18,1.1918255654844135e-2 9.661655176471766e-3,2.1579910831315906e-2 2.1579910831315895e-2 2.1579910831315906e-2c 1.1918255654844135e-2,2.1893480458687068e-18 2.1579910831315906e-2,-9.661655176471764e-3 2.1579910831315916e-2 -2.15799108313159e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2463976991714326,-0.511948549786795 c 0.0,-2.6934746782619017e-2 -2.183492645364391e-2,-4.876967323626293e-2 -4.876967323626292e-2 -4.876967323626293e-2c -2.6934746782619017e-2,-1.6492775716589425e-18 -4.876967323626293e-2,2.1834926453643908e-2 -4.876967323626293e-2 4.876967323626292e-2c -3.298555143317885e-18,2.6934746782619017e-2 2.1834926453643905e-2,4.876967323626293e-2 4.876967323626291e-2 4.876967323626293e-2c 2.6934746782619017e-2,4.947832714976827e-18 4.876967323626293e-2,-2.18349264536439e-2 4.876967323626294e-2 -4.876967323626292e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.2430240241669012,-0.7135625619434267 c 0.0,-0.11826992710458896 -9.587671942299299e-2,-0.21414664652758197 -0.21414664652758192 -0.21414664652758197c -0.11826992710458896,-7.241944383201283e-18 -0.21414664652758197,9.587671942299297e-2 -0.21414664652758197 0.2141466465275819c -1.4483888766402565e-17,0.11826992710458896 9.587671942299296e-2,0.21414664652758197 0.2141466465275819 0.21414664652758197c 0.11826992710458896,2.172583314960385e-17 0.21414664652758197,-9.587671942299295e-2 0.214146646527582 -0.2141466465275819Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1464782054036886,-0.4007514181467787 c 0.0,-6.813741487451083e-3 -5.523628844680387e-3,-1.2337370332131472e-2 -1.2337370332131468e-2 -1.2337370332131472e-2c -6.813741487451083e-3,-4.172213351412247e-19 -1.2337370332131472e-2,5.5236288446803864e-3 -1.2337370332131472e-2 1.2337370332131468e-2c -8.344426702824494e-19,6.813741487451083e-3 5.5236288446803864e-3,1.2337370332131472e-2 1.2337370332131467e-2 1.2337370332131472e-2c 6.813741487451083e-3,1.251664005423674e-18 1.2337370332131472e-2,-5.523628844680386e-3 1.2337370332131474e-2 -1.2337370332131468e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1567163826845843,-0.3646405290425924 c 0.0,-1.3141103011620997e-2 -1.0652968824776999e-2,-2.3794071836398e-2 -2.3794071836397993e-2 -2.3794071836398e-2c -1.3141103011620997e-2,-8.046604870223649e-19 -2.3794071836398e-2,1.0652968824776999e-2 -2.3794071836398e-2 2.3794071836397993e-2c -1.6093209740447297e-18,1.3141103011620997e-2 1.0652968824776997e-2,2.3794071836398e-2 2.379407183639799e-2 2.3794071836398e-2c 1.3141103011620997e-2,2.4139814610670945e-18 2.3794071836398e-2,-1.0652968824776995e-2 2.3794071836398003e-2 -2.3794071836397993e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.05022924323426,-0.2902598089988285 c 0.0,-1.0129440664974006e-2 -8.211534109501331e-3,-1.834097477447534e-2 -1.8340974774475337e-2 -1.834097477447534e-2c -1.0129440664974006e-2,-6.202493543756727e-19 -1.834097477447534e-2,8.211534109501331e-3 -1.834097477447534e-2 1.8340974774475334e-2c -1.2404987087513454e-18,1.0129440664974006e-2 8.21153410950133e-3,1.834097477447534e-2 1.8340974774475334e-2 1.834097477447534e-2c 1.0129440664974006e-2,1.8607480631270183e-18 1.834097477447534e-2,-8.21153410950133e-3 1.8340974774475348e-2 -1.8340974774475334e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1817831762795104,-0.2335176820922233 c 0.0,-6.676213669332863e-3 -5.412140520020167e-3,-1.208835418935303e-2 -1.2088354189353027e-2 -1.208835418935303e-2c -6.676213669332863e-3,-4.0880018502861477e-19 -1.208835418935303e-2,5.412140520020166e-3 -1.208835418935303e-2 1.2088354189353027e-2c -8.176003700572295e-19,6.676213669332863e-3 5.412140520020165e-3,1.208835418935303e-2 1.2088354189353025e-2 1.208835418935303e-2c 6.676213669332863e-3,1.2264005550858445e-18 1.208835418935303e-2,-5.412140520020165e-3 1.2088354189353032e-2 -1.2088354189353027e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.117519265072669,-0.208134276200301 c 0.0,-5.800110082080863e-3 -4.701918235481543e-3,-1.0502028317562407e-2 -1.0502028317562405e-2 -1.0502028317562407e-2c -5.800110082080863e-3,-3.55154312336131e-19 -1.0502028317562407e-2,4.7019182354815425e-3 -1.0502028317562407e-2 1.0502028317562404e-2c -7.10308624672262e-19,5.800110082080863e-3 4.701918235481542e-3,1.0502028317562407e-2 1.0502028317562402e-2 1.0502028317562407e-2c 5.800110082080863e-3,1.065462937008393e-18 1.0502028317562407e-2,-4.701918235481542e-3 1.0502028317562412e-2 -1.0502028317562404e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1832153379831103,-6.760675601637041e-2 c 0.0,-6.417166871064001e-3 -5.202141598036518e-3,-1.161930846910052e-2 -1.1619308469100519e-2 -1.161930846910052e-2c -6.417166871064001e-3,-3.929381434121482e-19 -1.161930846910052e-2,5.202141598036518e-3 -1.161930846910052e-2 1.1619308469100517e-2c -7.858762868242964e-19,6.417166871064001e-3 5.202141598036517e-3,1.161930846910052e-2 1.1619308469100515e-2 1.161930846910052e-2c 6.417166871064001e-3,1.1788144302364446e-18 1.161930846910052e-2,-5.2021415980365165e-3 1.1619308469100526e-2 -1.1619308469100517e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.185219858227034,-9.499637513321703e-2 c 0.0,-8.760103656944662e-3 -7.1014671353477965e-3,-1.586157079229246e-2 -1.5861570792292456e-2 -1.586157079229246e-2c -8.760103656944662e-3,-5.364016451838151e-19 -1.586157079229246e-2,7.101467135347796e-3 -1.586157079229246e-2 1.5861570792292452e-2c -1.0728032903676302e-18,8.760103656944662e-3 7.101467135347795e-3,1.586157079229246e-2 1.5861570792292452e-2 1.586157079229246e-2c 8.760103656944662e-3,1.6092049355514455e-18 1.586157079229246e-2,-7.101467135347794e-3 1.5861570792292466e-2 -1.5861570792292452e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1865464238912928,-0.13332175333930568 c 0.0,-1.2638970665534292e-2 -1.0245910130842147e-2,-2.288488079637644e-2 -2.2884880796376437e-2 -2.288488079637644e-2c -1.2638970665534292e-2,-7.739137485031931e-19 -2.288488079637644e-2,1.0245910130842145e-2 -2.288488079637644e-2 2.2884880796376433e-2c -1.5478274970063861e-18,1.2638970665534292e-2 1.0245910130842143e-2,2.288488079637644e-2 2.288488079637643e-2 2.288488079637644e-2c 1.2638970665534292e-2,2.321741245509579e-18 2.288488079637644e-2,-1.0245910130842143e-2 2.288488079637645e-2 -2.2884880796376433e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1852692688882618,-0.1901795125921752 c 0.0,-1.9711654517431496e-2 -1.5979453237165497e-2,-3.5691107754596996e-2 -3.569110775459699e-2 -3.5691107754596996e-2c -1.9711654517431496e-2,-1.2069907305335472e-18 -3.5691107754596996e-2,1.5979453237165497e-2 -3.5691107754596996e-2 3.569110775459698e-2c -2.4139814610670945e-18,1.9711654517431496e-2 1.5979453237165493e-2,3.5691107754596996e-2 3.569110775459698e-2 3.5691107754596996e-2c 1.9711654517431496e-2,3.620972191600641e-18 3.5691107754596996e-2,-1.5979453237165493e-2 3.569110775459701e-2 -3.569110775459698e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.174616663394286,-0.28091990458952476 c 0.0,-3.4498193997629455e-2 -2.796631187221188e-2,-6.246450586984134e-2 -6.246450586984133e-2 -6.246450586984134e-2c -3.4498193997629455e-2,-2.112405142778067e-18 -6.246450586984134e-2,2.7966311872211876e-2 -6.246450586984134e-2 6.246450586984132e-2c -4.224810285556134e-18,3.4498193997629455e-2 2.7966311872211873e-2,6.246450586984134e-2 6.2464505869841314e-2 6.246450586984134e-2c 3.4498193997629455e-2,6.3372154283342014e-18 6.246450586984134e-2,-2.796631187221187e-2 6.2464505869841355e-2 -6.246450586984132e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0773889315437524,-0.5590548317331246 c 0.0,-6.813741487451083e-3 -5.523628844680387e-3,-1.2337370332131472e-2 -1.2337370332131468e-2 -1.2337370332131472e-2c -6.813741487451083e-3,-4.172213351412247e-19 -1.2337370332131472e-2,5.5236288446803864e-3 -1.2337370332131472e-2 1.2337370332131468e-2c -8.344426702824494e-19,6.813741487451083e-3 5.5236288446803864e-3,1.2337370332131472e-2 1.2337370332131467e-2 1.2337370332131472e-2c 6.813741487451083e-3,1.251664005423674e-18 1.2337370332131472e-2,-5.523628844680386e-3 1.2337370332131474e-2 -1.2337370332131468e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0615400953389924,-0.582716799605614 c 0.0,-1.3141103011620997e-2 -1.0652968824776999e-2,-2.3794071836398e-2 -2.3794071836397993e-2 -2.3794071836398e-2c -1.3141103011620997e-2,-8.046604870223649e-19 -2.3794071836398e-2,1.0652968824776999e-2 -2.3794071836398e-2 2.3794071836397993e-2c -1.6093209740447297e-18,1.3141103011620997e-2 1.0652968824776997e-2,2.3794071836398e-2 2.379407183639799e-2 2.3794071836398e-2c 1.3141103011620997e-2,2.4139814610670945e-18 2.3794071836398e-2,-1.0652968824776995e-2 2.3794071836398003e-2 -2.3794071836397993e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9328470046776177,-0.5592163057134169 c 0.0,-1.0129440664974006e-2 -8.211534109501331e-3,-1.834097477447534e-2 -1.8340974774475337e-2 -1.834097477447534e-2c -1.0129440664974006e-2,-6.202493543756727e-19 -1.834097477447534e-2,8.211534109501331e-3 -1.834097477447534e-2 1.8340974774475334e-2c -1.2404987087513454e-18,1.0129440664974006e-2 8.21153410950133e-3,1.834097477447534e-2 1.8340974774475334e-2 1.834097477447534e-2c 1.0129440664974006e-2,1.8607480631270183e-18 1.834097477447534e-2,-8.21153410950133e-3 1.8340974774475348e-2 -1.8340974774475334e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9786988258983795,-0.6988423861334564 c 0.0,-6.676213669332863e-3 -5.412140520020167e-3,-1.208835418935303e-2 -1.2088354189353027e-2 -1.208835418935303e-2c -6.676213669332863e-3,-4.0880018502861477e-19 -1.208835418935303e-2,5.412140520020166e-3 -1.208835418935303e-2 1.2088354189353027e-2c -8.176003700572295e-19,6.676213669332863e-3 5.412140520020165e-3,1.208835418935303e-2 1.2088354189353025e-2 1.208835418935303e-2c 6.676213669332863e-3,1.2264005550858445e-18 1.208835418935303e-2,-5.412140520020165e-3 1.2088354189353032e-2 -1.2088354189353027e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9158803213754712,-0.6701471374719759 c 0.0,-5.800110082080863e-3 -4.701918235481543e-3,-1.0502028317562407e-2 -1.0502028317562405e-2 -1.0502028317562407e-2c -5.800110082080863e-3,-3.55154312336131e-19 -1.0502028317562407e-2,4.7019182354815425e-3 -1.0502028317562407e-2 1.0502028317562404e-2c -7.10308624672262e-19,5.800110082080863e-3 4.701918235481542e-3,1.0502028317562407e-2 1.0502028317562402e-2 1.0502028317562407e-2c 5.800110082080863e-3,1.065462937008393e-18 1.0502028317562407e-2,-4.701918235481542e-3 1.0502028317562412e-2 -1.0502028317562404e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.857874700848296,-0.8130558041740951 c 0.0,-6.417166871064001e-3 -5.202141598036518e-3,-1.161930846910052e-2 -1.1619308469100519e-2 -1.161930846910052e-2c -6.417166871064001e-3,-3.929381434121482e-19 -1.161930846910052e-2,5.202141598036518e-3 -1.161930846910052e-2 1.1619308469100517e-2c -7.858762868242964e-19,6.417166871064001e-3 5.202141598036517e-3,1.161930846910052e-2 1.1619308469100515e-2 1.161930846910052e-2c 6.417166871064001e-3,1.1788144302364446e-18 1.161930846910052e-2,-5.2021415980365165e-3 1.1619308469100526e-2 -1.1619308469100517e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8806776990150188,-0.7927901235803936 c 0.0,-8.760103656944662e-3 -7.1014671353477965e-3,-1.586157079229246e-2 -1.5861570792292456e-2 -1.586157079229246e-2c -8.760103656944662e-3,-5.364016451838151e-19 -1.586157079229246e-2,7.101467135347796e-3 -1.586157079229246e-2 1.5861570792292452e-2c -1.0728032903676302e-18,8.760103656944662e-3 7.101467135347795e-3,1.586157079229246e-2 1.5861570792292452e-2 1.586157079229246e-2c 8.760103656944662e-3,1.6092049355514455e-18 1.586157079229246e-2,-7.101467135347794e-3 1.5861570792292466e-2 -1.5861570792292452e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9119278543347755,-0.7625519444559237 c 0.0,-1.2638970665534292e-2 -1.0245910130842147e-2,-2.288488079637644e-2 -2.2884880796376437e-2 -2.288488079637644e-2c -1.2638970665534292e-2,-7.739137485031931e-19 -2.288488079637644e-2,1.0245910130842145e-2 -2.288488079637644e-2 2.2884880796376433e-2c -1.5478274970063861e-18,1.2638970665534292e-2 1.0245910130842143e-2,2.288488079637644e-2 2.288488079637643e-2 2.288488079637644e-2c 1.2638970665534292e-2,2.321741245509579e-18 2.288488079637644e-2,-1.0245910130842143e-2 2.288488079637645e-2 -2.2884880796376433e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.9568461792588412,-0.7135625619434268 c 0.0,-1.9711654517431496e-2 -1.5979453237165497e-2,-3.5691107754596996e-2 -3.569110775459699e-2 -3.5691107754596996e-2c -1.9711654517431496e-2,-1.2069907305335472e-18 -3.5691107754596996e-2,1.5979453237165497e-2 -3.5691107754596996e-2 3.569110775459698e-2c -2.4139814610670945e-18,1.9711654517431496e-2 1.5979453237165493e-2,3.5691107754596996e-2 3.569110775459698e-2 3.5691107754596996e-2c 1.9711654517431496e-2,3.620972191600641e-18 3.5691107754596996e-2,-1.5979453237165493e-2 3.569110775459701e-2 -3.569110775459698e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.0247018493066669,-0.6244178962653983 c 0.0,-3.4498193997629455e-2 -2.796631187221188e-2,-6.246450586984134e-2 -6.246450586984133e-2 -6.246450586984134e-2c -3.4498193997629455e-2,-2.112405142778067e-18 -6.246450586984134e-2,2.7966311872211876e-2 -6.246450586984134e-2 6.246450586984132e-2c -4.224810285556134e-18,3.4498193997629455e-2 2.7966311872211873e-2,6.246450586984134e-2 6.2464505869841314e-2 6.246450586984134e-2c 3.4498193997629455e-2,6.3372154283342014e-18 6.246450586984134e-2,-2.796631187221187e-2 6.2464505869841355e-2 -6.246450586984132e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8981500034364769,-0.34275084060721 c 0.0,-7.329739168101476e-3 -5.941927613114424e-3,-1.3271666781215902e-2 -1.3271666781215899e-2 -1.3271666781215902e-2c -7.329739168101476e-3,-4.488170805400228e-19 -1.3271666781215902e-2,5.9419276131144234e-3 -1.3271666781215902e-2 1.3271666781215897e-2c -8.976341610800456e-19,7.329739168101476e-3 5.9419276131144234e-3,1.3271666781215902e-2 1.3271666781215897e-2 1.3271666781215902e-2c 7.329739168101476e-3,1.3464512416200685e-18 1.3271666781215902e-2,-5.941927613114423e-3 1.3271666781215904e-2 -1.3271666781215897e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8662980031615588,-0.41573294175499337 c 0.0,-7.329739168101476e-3 -5.941927613114424e-3,-1.3271666781215902e-2 -1.3271666781215899e-2 -1.3271666781215902e-2c -7.329739168101476e-3,-4.488170805400228e-19 -1.3271666781215902e-2,5.9419276131144234e-3 -1.3271666781215902e-2 1.3271666781215897e-2c -8.976341610800456e-19,7.329739168101476e-3 5.9419276131144234e-3,1.3271666781215902e-2 1.3271666781215897e-2 1.3271666781215902e-2c 7.329739168101476e-3,1.3464512416200685e-18 1.3271666781215902e-2,-5.941927613114423e-3 1.3271666781215904e-2 -1.3271666781215897e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8130125456108009,-0.34771266723960403 c 0.0,-9.003752887841722e-3 -7.29898386272083e-3,-1.6302736750562555e-2 -1.630273675056255e-2 -1.6302736750562555e-2c -9.003752887841722e-3,-5.513208577204552e-19 -1.6302736750562555e-2,7.298983862720829e-3 -1.6302736750562555e-2 1.6302736750562548e-2c -1.1026417154409103e-18,9.003752887841722e-3 7.298983862720828e-3,1.6302736750562555e-2 1.6302736750562548e-2 1.6302736750562555e-2c 9.003752887841722e-3,1.6539625731613655e-18 1.6302736750562555e-2,-7.298983862720827e-3 1.630273675056256e-2 -1.6302736750562548e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8788869348878731,-0.36826661138012057 c 0.0,-1.937532185636159e-2 -1.5706801744367407e-2,-3.5082123600729e-2 -3.5082123600728994e-2 -3.5082123600729e-2c -1.937532185636159e-2,-1.1863962946921488e-18 -3.5082123600729e-2,1.5706801744367404e-2 -3.5082123600729e-2 3.508212360072899e-2c -2.3727925893842977e-18,1.937532185636159e-2 1.57068017443674e-2,3.5082123600729e-2 3.508212360072899e-2 3.5082123600729e-2c 1.937532185636159e-2,3.5591888840764465e-18 3.5082123600729e-2,-1.57068017443674e-2 3.5082123600729015e-2 -3.508212360072899e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1258395686563292,-0.43445275820843954 c 0.0,-7.200867700199429e-2 -5.837456646807433e-2,-0.13038324347006863 -0.1303832434700686 -0.13038324347006863c -7.200867700199429e-2,-4.4092597900663965e-18 -0.13038324347006863,5.8374566468074325e-2 -0.13038324347006863 0.13038324347006858c -8.818519580132793e-18,7.200867700199429e-2 5.837456646807432e-2,0.13038324347006863 0.13038324347006858 0.13038324347006863c 7.200867700199429e-2,1.3227779370199189e-17 0.13038324347006863,-5.8374566468074304e-2 0.1303832434700687 -0.13038324347006858Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.186606055596469,-0.1433030277982337 c 0.0,-0.4740025670592543 -0.3842550024363312,-0.8582575694955856 -0.8582575694955854 -0.8582575694955856c -0.4740025670592543,-2.902428632683722e-17 -0.8582575694955856,0.38425500243633115 -0.8582575694955856 0.8582575694955853c -5.804857265367444e-17,0.4740025670592543 0.3842550024363311,0.8582575694955856 0.8582575694955853 0.8582575694955856c 0.4740025670592543,8.707285898051167e-17 0.8582575694955856,-0.38425500243633104 0.8582575694955857 -0.8582575694955853Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5158949967676473,-0.10375499245784359 c 0.0,-7.315470261151113e-3 -5.930360378554932e-3,-1.3245830639706047e-2 -1.3245830639706043e-2 -1.3245830639706047e-2c -7.315470261151113e-3,-4.479433619788181e-19 -1.3245830639706047e-2,5.930360378554932e-3 -1.3245830639706047e-2 1.3245830639706042e-2c -8.958867239576363e-19,7.315470261151113e-3 5.930360378554931e-3,1.3245830639706047e-2 1.3245830639706042e-2 1.3245830639706047e-2c 7.315470261151113e-3,1.3438300859364543e-18 1.3245830639706047e-2,-5.93036037855493e-3 1.3245830639706049e-2 -1.3245830639706042e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.529034386861202,-0.14113204805336937 c 0.0,-1.336270757010781e-2 -1.083261481422711e-2,-2.4195322384334923e-2 -2.4195322384334916e-2 -2.4195322384334923e-2c -1.336270757010781e-2,-8.182298526837317e-19 -2.4195322384334923e-2,1.0832614814227108e-2 -2.4195322384334923e-2 2.4195322384334916e-2c -1.6364597053674634e-18,1.336270757010781e-2 1.0832614814227108e-2,2.4195322384334923e-2 2.4195322384334913e-2 2.4195322384334923e-2c 1.336270757010781e-2,2.4546895580511953e-18 2.4195322384334923e-2,-1.0832614814227107e-2 2.4195322384334927e-2 -2.4195322384334916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.4311216806735284,-0.29799506141470217 c 0.0,-7.315470261151113e-3 -5.930360378554932e-3,-1.3245830639706047e-2 -1.3245830639706043e-2 -1.3245830639706047e-2c -7.315470261151113e-3,-4.479433619788181e-19 -1.3245830639706047e-2,5.930360378554932e-3 -1.3245830639706047e-2 1.3245830639706042e-2c -8.958867239576363e-19,7.315470261151113e-3 5.930360378554931e-3,1.3245830639706047e-2 1.3245830639706042e-2 1.3245830639706047e-2c 7.315470261151113e-3,1.3438300859364543e-18 1.3245830639706047e-2,-5.93036037855493e-3 1.3245830639706049e-2 -1.3245830639706042e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.47096561313879803,-0.2741843236014584 c 0.0,-1.336270757010781e-2 -1.083261481422711e-2,-2.4195322384334923e-2 -2.4195322384334916e-2 -2.4195322384334923e-2c -1.336270757010781e-2,-8.182298526837317e-19 -2.4195322384334923e-2,1.0832614814227108e-2 -2.4195322384334923e-2 2.4195322384334916e-2c -1.6364597053674634e-18,1.336270757010781e-2 1.0832614814227108e-2,2.4195322384334923e-2 2.4195322384334913e-2 2.4195322384334923e-2c 1.336270757010781e-2,2.4546895580511953e-18 2.4195322384334923e-2,-1.0832614814227107e-2 2.4195322384334927e-2 -2.4195322384334916e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.6293483592297736,-0.2694430819683559 c 0.0,-6.6145487239110375e-3 -5.362151204771717e-3,-1.1976699928682756e-2 -1.1976699928682753e-2 -1.1976699928682756e-2c -6.6145487239110375e-3,-4.050242961270931e-19 -1.1976699928682756e-2,5.362151204771716e-3 -1.1976699928682756e-2 1.1976699928682753e-2c -8.100485922541862e-19,6.6145487239110375e-3 5.362151204771716e-3,1.1976699928682756e-2 1.197669992868275e-2 1.1976699928682756e-2c 6.6145487239110375e-3,1.2150728883812793e-18 1.1976699928682756e-2,-5.362151204771715e-3 1.1976699928682758e-2 -1.1976699928682753e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.6082780784024937,-0.255629228796675 c 0.0,-1.245840238389173e-2 -1.00995306166278e-2,-2.255793300051953e-2 -2.2557933000519528e-2 -2.255793300051953e-2c -1.245840238389173e-2,-7.62857130096138e-19 -2.255793300051953e-2,1.0099530616627798e-2 -2.255793300051953e-2 2.2557933000519524e-2c -1.525714260192276e-18,1.245840238389173e-2 1.0099530616627796e-2,2.255793300051953e-2 2.255793300051952e-2 2.255793300051953e-2c 1.245840238389173e-2,2.2885713902884142e-18 2.255793300051953e-2,-1.0099530616627796e-2 2.255793300051954e-2 -2.2557933000519524e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5699090833947008,-0.2233030277982336 c 0.0,-3.2174767194618675e-2 -2.6082802300965324e-2,-5.8257569495584006e-2 -5.825756949558399e-2 -5.8257569495584006e-2c -3.2174767194618675e-2,-1.9701362829100513e-18 -5.8257569495584006e-2,2.608280230096532e-2 -5.8257569495584006e-2 5.8257569495583986e-2c -3.940272565820103e-18,3.2174767194618675e-2 2.6082802300965317e-2,5.8257569495584006e-2 5.825756949558398e-2 5.8257569495584006e-2c 3.2174767194618675e-2,5.910408848730154e-18 5.8257569495584006e-2,-2.6082802300965314e-2 5.825756949558402e-2 -5.8257569495583986e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.8999999999999999,-0.6110100926607787 c 0.0,-0.18409491661026448 -0.1492384167230688,-0.3333333333333333 -0.33333333333333326 -0.3333333333333333c -0.18409491661026448,-1.1272562518302965e-17 -0.3333333333333333,0.14923841672306878 -0.3333333333333333 0.3333333333333332c -2.254512503660593e-17,0.18409491661026448 0.14923841672306876,0.3333333333333333 0.33333333333333315 0.3333333333333333c 0.18409491661026448,3.3817687554908895e-17 0.3333333333333333,-0.14923841672306876 0.33333333333333337 -0.3333333333333332Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 1.1666666666666667,0.0 c 0.0,-0.18409491661026448 -0.1492384167230688,-0.3333333333333333 -0.33333333333333326 -0.3333333333333333c -0.18409491661026448,-1.1272562518302965e-17 -0.3333333333333333,0.14923841672306878 -0.3333333333333333 0.3333333333333332c -2.254512503660593e-17,0.18409491661026448 0.14923841672306876,0.3333333333333333 0.33333333333333315 0.3333333333333333c 0.18409491661026448,3.3817687554908895e-17 0.3333333333333333,-0.14923841672306876 0.33333333333333337 -0.3333333333333332Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.574772708486757e-3"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Apollonian_apollonian3.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="400.0" font-size="1" viewBox="0 0 400 400"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(228.42712474619026,0.0,0.0,228.42712474619026,152.45310429357164,128.59547920896833)"><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.3017051402601224,0.9108332875546336 c 0.0,-7.466947295738953e-3 -6.053156777434609e-3,-1.3520104073173564e-2 -1.352010407317356e-2 -1.3520104073173564e-2c -7.466947295738953e-3,-4.5721865525643475e-19 -1.3520104073173564e-2,6.0531567774346085e-3 -1.3520104073173564e-2 1.3520104073173559e-2c -9.144373105128695e-19,7.466947295738953e-3 6.053156777434608e-3,1.3520104073173564e-2 1.3520104073173559e-2 1.3520104073173564e-2c 7.466947295738953e-3,1.3716559657693042e-18 1.3520104073173564e-2,-6.053156777434607e-3 1.3520104073173566e-2 -1.3520104073173559e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.38073868560109964,0.8887079423916017 c 0.0,-7.599946752379501e-3 -6.160974139801459e-3,-1.3760920892180962e-2 -1.3760920892180959e-2 -1.3760920892180962e-2c -7.599946752379501e-3,-4.6536252319959395e-19 -1.3760920892180962e-2,6.160974139801458e-3 -1.3760920892180962e-2 1.3760920892180957e-2c -9.307250463991879e-19,7.599946752379501e-3 6.160974139801457e-3,1.3760920892180962e-2 1.3760920892180955e-2 1.3760920892180962e-2c 7.599946752379501e-3,1.3960875695987817e-18 1.3760920892180962e-2,-6.1609741398014565e-3 1.3760920892180966e-2 -1.3760920892180957e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.32158718448435497,0.8221020568844073 c 0.0,-9.237625985968698e-3 -7.488575468623122e-3,-1.6726201454591822e-2 -1.672620145459182e-2 -1.6726201454591822e-2c -9.237625985968698e-3,-5.656414547718489e-19 -1.6726201454591822e-2,7.488575468623121e-3 -1.6726201454591822e-2 1.6726201454591815e-2c -1.1312829095436979e-18,9.237625985968698e-3 7.48857546862312e-3,1.6726201454591822e-2 1.6726201454591815e-2 1.6726201454591822e-2c 9.237625985968698e-3,1.6969243643155468e-18 1.6726201454591822e-2,-7.488575468623119e-3 1.6726201454591822e-2 -1.6726201454591815e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.35586148213913704,0.8726958116881639 c 0.0,-1.9901376319442183e-2 -1.613325314577386e-2,-3.6034629465216045e-2 -3.603462946521604e-2 -3.6034629465216045e-2c -1.9901376319442183e-2,-1.21860784041159e-18 -3.6034629465216045e-2,1.613325314577386e-2 -3.6034629465216045e-2 3.603462946521603e-2c -2.43721568082318e-18,1.9901376319442183e-2 1.6133253145773855e-2,3.6034629465216045e-2 3.603462946521603e-2 3.6034629465216045e-2c 1.9901376319442183e-2,3.65582352123477e-18 3.6034629465216045e-2,-1.613325314577385e-2 3.603462946521606e-2 -3.603462946521603e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.23174627506999068,1.0492770193791974 c 0.0,-1.0101302820282933e-2 -8.188723879490552e-3,-1.8290026699773487e-2 -1.8290026699773483e-2 -1.8290026699773487e-2c -1.0101302820282933e-2,-6.185264083038812e-19 -1.8290026699773487e-2,8.18872387949055e-3 -1.8290026699773487e-2 1.829002669977348e-2c -1.2370528166077624e-18,1.0101302820282933e-2 8.18872387949055e-3,1.8290026699773487e-2 1.829002669977348e-2 1.8290026699773487e-2c 1.0101302820282933e-2,1.8555792249116437e-18 1.8290026699773487e-2,-8.188723879490548e-3 1.8290026699773487e-2 -1.829002669977348e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.3167460077703901,1.1702830668669666 c 0.0,-6.900571721865372e-3 -5.5940186574263565e-3,-1.249459037929173e-2 -1.2494590379291726e-2 -1.249459037929173e-2c -6.900571721865372e-3,-4.2253815357345833e-19 -1.249459037929173e-2,5.594018657426356e-3 -1.249459037929173e-2 1.2494590379291726e-2c -8.450763071469167e-19,6.900571721865372e-3 5.594018657426356e-3,1.249459037929173e-2 1.2494590379291725e-2 1.249459037929173e-2c 6.900571721865372e-3,1.267614460720375e-18 1.249459037929173e-2,-5.594018657426355e-3 1.2494590379291732e-2 -1.2494590379291726e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2926964082023204,1.1620644630418109 c 0.0,-1.3210455269423946e-2 -1.0709189938000857e-2,-2.3919645207424806e-2 -2.39196452074248e-2 -2.3919645207424806e-2c -1.3210455269423946e-2,-8.08907088048966e-19 -2.3919645207424806e-2,1.0709189938000855e-2 -2.3919645207424806e-2 2.39196452074248e-2c -1.617814176097932e-18,1.3210455269423946e-2 1.0709189938000855e-2,2.3919645207424806e-2 2.3919645207424796e-2 2.3919645207424806e-2c 1.3210455269423946e-2,2.4267212641468984e-18 2.3919645207424806e-2,-1.0709189938000853e-2 2.391964520742481e-2 -2.39196452074248e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.13129311029539462,1.1085629078128194 c 0.0,-5.656422009483308e-3 -4.585436037866898e-3,-1.0241858047350207e-2 -1.0241858047350205e-2 -1.0241858047350207e-2c -5.656422009483308e-3,-3.463559554270186e-19 -1.0241858047350207e-2,4.585436037866897e-3 -1.0241858047350207e-2 1.0241858047350203e-2c -6.927119108540372e-19,5.656422009483308e-3 4.585436037866897e-3,1.0241858047350207e-2 1.0241858047350201e-2 1.0241858047350207e-2c 5.656422009483308e-3,1.0390678662810557e-18 1.0241858047350207e-2,-4.585436037866896e-3 1.0241858047350212e-2 -1.0241858047350203e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.14610358570449666,1.1731861961369108 c 0.0,-6.5150530878402705e-3 -5.281494055343246e-3,-1.1796547143183518e-2 -1.1796547143183515e-2 -1.1796547143183518e-2c -6.5150530878402705e-3,-3.9893194551493336e-19 -1.1796547143183518e-2,5.281494055343246e-3 -1.1796547143183518e-2 1.1796547143183515e-2c -7.978638910298667e-19,6.5150530878402705e-3 5.281494055343245e-3,1.1796547143183518e-2 1.1796547143183513e-2 1.1796547143183518e-2c 6.5150530878402705e-3,1.1967958365448e-18 1.1796547143183518e-2,-5.281494055343244e-3 1.179654714318352e-2 -1.1796547143183515e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -1.157122277802417e-2,1.1458401900332829 c 0.0,-6.054278245555616e-3 -4.907962242544949e-3,-1.0962240488100567e-2 -1.0962240488100565e-2 -1.0962240488100567e-2c -6.054278245555616e-3,-3.7071762372835694e-19 -1.0962240488100567e-2,4.907962242544949e-3 -1.0962240488100567e-2 1.0962240488100563e-2c -7.414352474567139e-19,6.054278245555616e-3 4.907962242544948e-3,1.0962240488100567e-2 1.0962240488100562e-2 1.0962240488100567e-2c 6.054278245555616e-3,1.1121528711850708e-18 1.0962240488100567e-2,-4.907962242544947e-3 1.0962240488100568e-2 -1.0962240488100563e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.8405137438491807e-2,1.1483700801359367 c 0.0,-8.311796818424349e-3 -6.738042636622851e-3,-1.5049839455047202e-2 -1.5049839455047198e-2 -1.5049839455047202e-2c -8.311796818424349e-3,-5.089507684423266e-19 -1.5049839455047202e-2,6.73804263662285e-3 -1.5049839455047202e-2 1.5049839455047197e-2c -1.0179015368846532e-18,8.311796818424349e-3 6.7380426366228496e-3,1.5049839455047202e-2 1.5049839455047195e-2 1.5049839455047202e-2c 8.311796818424349e-3,1.5268523053269799e-18 1.5049839455047202e-2,-6.738042636622849e-3 1.5049839455047205e-2 -1.5049839455047197e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 6.216833578612091e-2,1.1495845344912479 c 0.0,-1.209038755691817e-2 -9.801195653775893e-3,-2.1891583210694066e-2 -2.1891583210694062e-2 -2.1891583210694066e-2c -1.209038755691817e-2,-7.403227211015413e-19 -2.1891583210694066e-2,9.801195653775891e-3 -2.1891583210694066e-2 2.189158321069406e-2c -1.4806454422030825e-18,1.209038755691817e-2 9.80119565377589e-3,2.1891583210694066e-2 2.1891583210694055e-2 2.1891583210694066e-2c 1.209038755691817e-2,2.2209681633046238e-18 2.1891583210694066e-2,-9.80119565377589e-3 2.1891583210694076e-2 -2.189158321069406e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.1312113566523716,1.1461450870326921 c 0.0,-1.909465721547036e-2 -1.5479278098369999e-2,-3.4573935313840364e-2 -3.457393531384036e-2 -3.4573935313840364e-2c -1.909465721547036e-2,-1.1692105419870845e-18 -3.4573935313840364e-2,1.5479278098369997e-2 -3.4573935313840364e-2 3.457393531384035e-2c -2.338421083974169e-18,1.909465721547036e-2 1.5479278098369995e-2,3.4573935313840364e-2 3.457393531384035e-2 3.4573935313840364e-2c 1.909465721547036e-2,3.507631625961253e-18 3.4573935313840364e-2,-1.5479278098369994e-2 3.4573935313840364e-2 -3.457393531384035e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.25274285535404695,1.126148370413529 c 0.0,-3.41390875686669e-2 -2.7675198592821856e-2,-6.181428616148876e-2 -6.181428616148875e-2 -6.181428616148876e-2c -3.41390875686669e-2,-2.0904162158389557e-18 -6.181428616148876e-2,2.7675198592821852e-2 -6.181428616148876e-2 6.181428616148874e-2c -4.1808324316779115e-18,3.41390875686669e-2 2.767519859282185e-2,6.181428616148876e-2 6.1814286161488735e-2 6.181428616148876e-2c 3.41390875686669e-2,6.271248647516867e-18 6.181428616148876e-2,-2.7675198592821845e-2 6.181428616148878e-2 -6.181428616148874e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5260300010746738,0.974901953892551 c 0.0,-1.0781979473715515e-2 -8.740521332288724e-3,-1.952250080600424e-2 -1.9522500806004237e-2 -1.952250080600424e-2c -1.0781979473715515e-2,-6.6020583254790845e-19 -1.952250080600424e-2,8.740521332288722e-3 -1.952250080600424e-2 1.9522500806004234e-2c -1.3204116650958169e-18,1.0781979473715515e-2 8.74052133228872e-3,1.952250080600424e-2 1.9522500806004234e-2 1.952250080600424e-2c 1.0781979473715515e-2,1.9806174976437256e-18 1.952250080600424e-2,-8.74052133228872e-3 1.9522500806004248e-2 -1.9522500806004234e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5536881527809275,1.1104170400656455 c 0.0,-5.559590255154559e-3 -4.506938391269013e-3,-1.0066528646423573e-2 -1.006652864642357e-2 -1.0066528646423573e-2c -5.559590255154559e-3,-3.4042672052729234e-19 -1.0066528646423573e-2,4.506938391269012e-3 -1.0066528646423573e-2 1.0066528646423569e-2c -6.808534410545847e-19,5.559590255154559e-3 4.506938391269011e-3,1.0066528646423573e-2 1.0066528646423567e-2 1.0066528646423573e-2c 5.559590255154559e-3,1.021280161581877e-18 1.0066528646423573e-2,-4.506938391269011e-3 1.0066528646423578e-2 -1.0066528646423569e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.49134361402388804,1.131744402412572 c 0.0,-7.171184944885295e-3 -5.813394019285579e-3,-1.2984578964170875e-2 -1.2984578964170872e-2 -1.2984578964170875e-2c -7.171184944885295e-3,-4.391084344423733e-19 -1.2984578964170875e-2,5.813394019285578e-3 -1.2984578964170875e-2 1.2984578964170872e-2c -8.782168688847465e-19,7.171184944885295e-3 5.813394019285577e-3,1.2984578964170875e-2 1.298457896417087e-2 1.2984578964170875e-2c 7.171184944885295e-3,1.3173253033271198e-18 1.2984578964170875e-2,-5.813394019285577e-3 1.2984578964170877e-2 -1.2984578964170872e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5336281236553467,1.1081479769283407 c 0.0,-1.3929224895203311e-2 -1.1291867846305275e-2,-2.5221092741508588e-2 -2.522109274150858e-2 -2.5221092741508588e-2c -1.3929224895203311e-2,-8.52919034125718e-19 -2.5221092741508588e-2,1.1291867846305273e-2 -2.5221092741508588e-2 2.522109274150858e-2c -1.705838068251436e-18,1.3929224895203311e-2 1.1291867846305271e-2,2.5221092741508588e-2 2.5221092741508577e-2 2.5221092741508588e-2c 1.3929224895203311e-2,2.558757102377154e-18 2.5221092741508588e-2,-1.129186784630527e-2 2.522109274150859e-2 -2.522109274150858e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6374829453699326,0.9846538181487168 c 0.0,-6.327477840802748e-3 -5.129434273358166e-3,-1.1456912114160916e-2 -1.1456912114160915e-2 -1.1456912114160916e-2c -6.327477840802748e-3,-3.874462742207446e-19 -1.1456912114160916e-2,5.1294342733581655e-3 -1.1456912114160916e-2 1.1456912114160913e-2c -7.748925484414892e-19,6.327477840802748e-3 5.1294342733581655e-3,1.1456912114160916e-2 1.1456912114160911e-2 1.1456912114160916e-2c 6.327477840802748e-3,1.1623388226622337e-18 1.1456912114160916e-2,-5.129434273358165e-3 1.1456912114160922e-2 -1.1456912114160913e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6584996209399732,1.0559255853853369 c 0.0,-7.294743624925639e-3 -5.913558120071972e-3,-1.3208301744997613e-2 -1.320830174499761e-2 -1.3208301744997613e-2c -7.294743624925639e-3,-4.466742215432872e-19 -1.3208301744997613e-2,5.913558120071972e-3 -1.3208301744997613e-2 1.3208301744997607e-2c -8.933484430865745e-19,7.294743624925639e-3 5.913558120071971e-3,1.3208301744997613e-2 1.3208301744997607e-2 1.3208301744997613e-2c 7.294743624925639e-3,1.3400226646298615e-18 1.3208301744997613e-2,-5.91355812007197e-3 1.3208301744997614e-2 -1.3208301744997607e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8222599923298499,0.932426508229543 c 0.0,-5.56185247638636e-3 -4.5087722839213884e-3,-1.007062476030775e-2 -1.0070624760307748e-2 -1.007062476030775e-2c -5.56185247638636e-3,-3.4056524162681673e-19 -1.007062476030775e-2,4.5087722839213884e-3 -1.007062476030775e-2 1.0070624760307746e-2c -6.811304832536335e-19,5.56185247638636e-3 4.508772283921388e-3,1.007062476030775e-2 1.0070624760307744e-2 1.007062476030775e-2c 5.56185247638636e-3,1.0216957248804502e-18 1.007062476030775e-2,-4.508772283921387e-3 1.0070624760307751e-2 -1.0070624760307746e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.806528649969414,0.9460367672182712 c 0.0,-7.255332804185467e-3 -5.88160933736076e-3,-1.3136942141546228e-2 -1.3136942141546225e-2 -1.3136942141546228e-2c -7.255332804185467e-3,-4.442610047697261e-19 -1.3136942141546228e-2,5.8816093373607594e-3 -1.3136942141546228e-2 1.3136942141546223e-2c -8.885220095394522e-19,7.255332804185467e-3 5.881609337360759e-3,1.3136942141546228e-2 1.3136942141546223e-2 1.3136942141546228e-2c 7.255332804185467e-3,1.3327830143091784e-18 1.3136942141546228e-2,-5.881609337360758e-3 1.313694214154623e-2 -1.3136942141546223e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.7852512037658934,0.9629029001342589 c 0.0,-9.846243106923629e-3 -7.981957128444586e-3,-1.7828200235368217e-2 -1.7828200235368213e-2 -1.7828200235368217e-2c -9.846243106923629e-3,-6.029085052260356e-19 -1.7828200235368217e-2,7.981957128444584e-3 -1.7828200235368217e-2 1.782820023536821e-2c -1.2058170104520713e-18,9.846243106923629e-3 7.981957128444584e-3,1.7828200235368217e-2 1.782820023536821e-2 1.7828200235368217e-2c 9.846243106923629e-3,1.8087255156781068e-18 1.7828200235368217e-2,-7.981957128444583e-3 1.7828200235368217e-2 -1.782820023536821e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.7550513307285885,0.9839534429378295 c 0.0,-1.4086096038544845e-2 -1.1419037034313819e-2,-2.5505133072858666e-2 -2.550513307285866e-2 -2.5505133072858666e-2c -1.4086096038544845e-2,-8.625246213043078e-19 -2.5505133072858666e-2,1.1419037034313817e-2 -2.5505133072858666e-2 2.550513307285866e-2c -1.7250492426086155e-18,1.4086096038544845e-2 1.1419037034313816e-2,2.5505133072858666e-2 2.5505133072858656e-2 2.5505133072858666e-2c 1.4086096038544845e-2,2.5875738639129234e-18 2.5505133072858666e-2,-1.1419037034313814e-2 2.550513307285867e-2 -2.550513307285866e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.7093813641381923,1.0097061322041785 c 0.0,-2.1682150183554533e-2 -1.7576855592356194e-2,-3.925900577591073e-2 -3.9259005775910724e-2 -3.925900577591073e-2c -2.1682150183554533e-2,-1.3276487910461127e-18 -3.925900577591073e-2,1.757685559235619e-2 -3.925900577591073e-2 3.925900577591072e-2c -2.6552975820922255e-18,2.1682150183554533e-2 1.757685559235619e-2,3.925900577591073e-2 3.925900577591071e-2 3.925900577591073e-2c 2.1682150183554533e-2,3.9829463731383384e-18 3.925900577591073e-2,-1.7576855592356187e-2 3.925900577591074e-2 -3.925900577591072e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6343804477698137,1.036843084636483 c 0.0,-3.7108135989350345e-2 -3.0082087895555706e-2,-6.719022388490606e-2 -6.719022388490604e-2 -6.719022388490606e-2c -3.7108135989350345e-2,-2.27221799808413e-18 -6.719022388490606e-2,3.0082087895555703e-2 -6.719022388490606e-2 6.719022388490603e-2c -4.54443599616826e-18,3.7108135989350345e-2 3.00820878955557e-2,6.719022388490606e-2 6.719022388490603e-2 6.719022388490606e-2c 3.7108135989350345e-2,6.81665399425239e-18 6.719022388490606e-2,-3.0082087895555696e-2 6.719022388490609e-2 -6.719022388490603e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5000000000000017,1.036843084636483 c 0.0,-7.421627197870069e-2 -6.016417579111141e-2,-0.13438044776981212 -0.1343804477698121 -0.13438044776981212c -7.421627197870069e-2,-4.54443599616826e-18 -0.13438044776981212,6.0164175791111406e-2 -0.13438044776981212 0.13438044776981206c -9.08887199233652e-18,7.421627197870069e-2 6.01641757911114e-2,0.13438044776981212 0.13438044776981206 0.13438044776981212c 7.421627197870069e-2,1.363330798850478e-17 0.13438044776981212,-6.016417579111139e-2 0.13438044776981217 -0.13438044776981206Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.25544557587771727,0.6315582735098788 c 0.0,-6.7531839473194575e-3 -5.474537258794721e-3,-1.222772120611418e-2 -1.2227721206114176e-2 -1.222772120611418e-2c -6.7531839473194575e-3,-4.135132552569031e-19 -1.222772120611418e-2,5.47453725879472e-3 -1.222772120611418e-2 1.2227721206114176e-2c -8.270265105138062e-19,6.7531839473194575e-3 5.474537258794719e-3,1.222772120611418e-2 1.2227721206114175e-2 1.222772120611418e-2c 6.7531839473194575e-3,1.2405397657707093e-18 1.222772120611418e-2,-5.474537258794719e-3 1.2227721206114182e-2 -1.2227721206114176e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2545735297982303,0.5983044935697073 c 0.0,-1.2707371565366204e-2 -1.0301360016049779e-2,-2.3008731581415986e-2 -2.3008731581415982e-2 -2.3008731581415986e-2c -1.2707371565366204e-2,-7.781020956550906e-19 -2.3008731581415986e-2,1.0301360016049777e-2 -2.3008731581415986e-2 2.300873158141598e-2c -1.5562041913101812e-18,1.2707371565366204e-2 1.0301360016049777e-2,2.3008731581415986e-2 2.3008731581415975e-2 2.3008731581415986e-2c 1.2707371565366204e-2,2.334306286965272e-18 2.3008731581415986e-2,-1.0301360016049775e-2 2.300873158141599e-2 -2.300873158141598e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 9.678598267753673e-2,0.5062863772072611 c 0.0,-7.2615962832132475e-3 -5.88668689034536e-3,-1.3148283173558609e-2 -1.3148283173558605e-2 -1.3148283173558609e-2c -7.2615962832132475e-3,-4.44644532246871e-19 -1.3148283173558609e-2,5.886686890345359e-3 -1.3148283173558609e-2 1.3148283173558603e-2c -8.89289064493742e-19,7.2615962832132475e-3 5.8866868903453586e-3,1.3148283173558609e-2 1.3148283173558603e-2 1.3148283173558609e-2c 7.2615962832132475e-3,1.333933596740613e-18 1.3148283173558609e-2,-5.886686890345358e-3 1.314828317355861e-2 -1.3148283173558603e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.1450001809616545,0.5100968574704572 c 0.0,-1.3367794516879769e-2 -1.0836738599371102e-2,-2.4204533116250874e-2 -2.4204533116250867e-2 -2.4204533116250874e-2c -1.3367794516879769e-2,-8.1854133833781735e-19 -2.4204533116250874e-2,1.08367385993711e-2 -2.4204533116250874e-2 2.4204533116250867e-2c -1.6370826766756347e-18,1.3367794516879769e-2 1.08367385993711e-2,2.4204533116250874e-2 2.4204533116250863e-2 2.4204533116250874e-2c 1.3367794516879769e-2,2.455624015013452e-18 2.4204533116250874e-2,-1.0836738599371098e-2 2.4204533116250877e-2 -2.4204533116250867e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2979906411858083,0.4279995456742372 c 0.0,-7.606819649739211e-3 -6.166545723955706e-3,-1.3773365373694918e-2 -1.3773365373694915e-2 -1.3773365373694918e-2c -7.606819649739211e-3,-4.657833667872157e-19 -1.3773365373694918e-2,6.166545723955705e-3 -1.3773365373694918e-2 1.3773365373694913e-2c -9.315667335744314e-19,7.606819649739211e-3 6.166545723955704e-3,1.3773365373694918e-2 1.3773365373694911e-2 1.3773365373694918e-2c 7.606819649739211e-3,1.3973501003616472e-18 1.3773365373694918e-2,-6.166545723955703e-3 1.3773365373694921e-2 -1.3773365373694913e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.283442708492751,0.45696016456888544 c 0.0,-1.380014879585948e-2 -1.1187230993438536e-2,-2.498737978929802e-2 -2.4987379789298013e-2 -2.498737978929802e-2c -1.380014879585948e-2,-8.450154025303257e-19 -2.498737978929802e-2,1.1187230993438534e-2 -2.498737978929802e-2 2.4987379789298013e-2c -1.6900308050606514e-18,1.380014879585948e-2 1.1187230993438532e-2,2.498737978929802e-2 2.498737978929801e-2 2.498737978929802e-2c 1.380014879585948e-2,2.535046207590977e-18 2.498737978929802e-2,-1.1187230993438532e-2 2.4987379789298023e-2 -2.4987379789298013e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2628641126967003,0.5209161999633579 c 0.0,-3.2741633548801614e-2 -2.6542338277023465e-2,-5.928397182582509e-2 -5.928397182582507e-2 -5.928397182582509e-2c -3.2741633548801614e-2,-2.0048468362197747e-18 -5.928397182582509e-2,2.6542338277023462e-2 -5.928397182582509e-2 5.9283971825825066e-2c -4.009693672439549e-18,3.2741633548801614e-2 2.654233827702346e-2,5.928397182582509e-2 5.928397182582506e-2 5.928397182582509e-2c 3.2741633548801614e-2,6.014540508659324e-18 5.928397182582509e-2,-2.6542338277023455e-2 5.92839718258251e-2 -5.9283971825825066e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.32295307733969514,0.6930041944286635 c 0.0,-6.087112961263875e-3 -4.934580038821347e-3,-1.1021693000085224e-2 -1.1021693000085223e-2 -1.1021693000085224e-2c -6.087112961263875e-3,-3.727281702030086e-19 -1.1021693000085224e-2,4.934580038821347e-3 -1.1021693000085224e-2 1.102169300008522e-2c -7.454563404060172e-19,6.087112961263875e-3 4.934580038821346e-3,1.1021693000085224e-2 1.1021693000085219e-2 1.1021693000085224e-2c 6.087112961263875e-3,1.1181845106090257e-18 1.1021693000085224e-2,-4.9345800388213455e-3 1.1021693000085226e-2 -1.102169300008522e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.3328909416542157,0.7190895606235768 c 0.0,-1.2777582370773151e-2 -1.0358277119621773e-2,-2.3135859490394928e-2 -2.3135859490394924e-2 -2.3135859490394928e-2c -1.2777582370773151e-2,-7.824012675604494e-19 -2.3135859490394928e-2,1.0358277119621773e-2 -2.3135859490394928e-2 2.313585949039492e-2c -1.5648025351208988e-18,1.2777582370773151e-2 1.0358277119621772e-2,2.3135859490394928e-2 2.3135859490394917e-2 2.3135859490394928e-2c 1.2777582370773151e-2,2.3472038026813483e-18 2.3135859490394928e-2,-1.035827711962177e-2 2.3135859490394938e-2 -2.313585949039492e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.46956256181581757,0.7223182530271479 c 0.0,-5.656422009483308e-3 -4.585436037866898e-3,-1.0241858047350207e-2 -1.0241858047350205e-2 -1.0241858047350207e-2c -5.656422009483308e-3,-3.463559554270186e-19 -1.0241858047350207e-2,4.585436037866897e-3 -1.0241858047350207e-2 1.0241858047350203e-2c -6.927119108540372e-19,5.656422009483308e-3 4.585436037866897e-3,1.0241858047350207e-2 1.0241858047350201e-2 1.0241858047350207e-2c 5.656422009483308e-3,1.0390678662810557e-18 1.0241858047350207e-2,-4.585436037866896e-3 1.0241858047350212e-2 -1.0241858047350203e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.5043107603840378,0.7799745988905966 c 0.0,-7.050832843869578e-3 -5.715829364402116e-3,-1.2766662208271695e-2 -1.2766662208271691e-2 -1.2766662208271695e-2c -7.050832843869578e-3,-4.317389936783954e-19 -1.2766662208271695e-2,5.715829364402115e-3 -1.2766662208271695e-2 1.2766662208271691e-2c -8.634779873567908e-19,7.050832843869578e-3 5.715829364402114e-3,1.2766662208271695e-2 1.276666220827169e-2 1.2766662208271695e-2c 7.050832843869578e-3,1.2952169810351863e-18 1.2766662208271695e-2,-5.715829364402113e-3 1.2766662208271697e-2 -1.2766662208271691e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.5648375651537648,0.6769616012630096 c 0.0,-6.0837263615315116e-3 -4.93183465730056e-3,-1.1015561018832073e-2 -1.1015561018832071e-2 -1.1015561018832073e-2c -6.0837263615315116e-3,-3.7252080077689697e-19 -1.1015561018832073e-2,4.93183465730056e-3 -1.1015561018832073e-2 1.101556101883207e-2c -7.450416015537939e-19,6.0837263615315116e-3 4.931834657300559e-3,1.1015561018832073e-2 1.1015561018832068e-2 1.1015561018832073e-2c 6.0837263615315116e-3,1.1175624023306908e-18 1.1015561018832073e-2,-4.931834657300558e-3 1.1015561018832075e-2 -1.101556101883207e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.5399017191680052,0.6991848786895014 c 0.0,-9.789577173056506e-3 -7.936020312761801e-3,-1.772559748581831e-2 -1.7725597485818305e-2 -1.772559748581831e-2c -9.789577173056506e-3,-5.994387174994822e-19 -1.772559748581831e-2,7.9360203127618e-3 -1.772559748581831e-2 1.77255974858183e-2c -1.1988774349989644e-18,9.789577173056506e-3 7.9360203127618e-3,1.772559748581831e-2 1.77255974858183e-2 1.772559748581831e-2c 9.789577173056506e-3,1.7983161524984465e-18 1.772559748581831e-2,-7.936020312761798e-3 1.772559748581831e-2 -1.77255974858183e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4883057040260258,0.7344551841493836 c 0.0,-1.8194205616812033e-2 -1.4749317850722227e-2,-3.2943523467534264e-2 -3.294352346753426e-2 -3.2943523467534264e-2c -1.8194205616812033e-2,-1.1140737835828826e-18 -3.2943523467534264e-2,1.4749317850722225e-2 -3.2943523467534264e-2 3.294352346753425e-2c -2.2281475671657653e-18,1.8194205616812033e-2 1.4749317850722221e-2,3.2943523467534264e-2 3.294352346753425e-2 3.2943523467534264e-2c 1.8194205616812033e-2,3.3422213507486478e-18 3.2943523467534264e-2,-1.474931785072222e-2 3.294352346753428e-2 -3.294352346753425e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.34512948252160425,0.8551591697528576 c 0.0,-6.864001835721665e-3 -5.564372907243131e-3,-1.2428374742964798e-2 -1.2428374742964795e-2 -1.2428374742964798e-2c -6.864001835721665e-3,-4.202988938729047e-19 -1.2428374742964798e-2,5.56437290724313e-3 -1.2428374742964798e-2 1.2428374742964795e-2c -8.405977877458094e-19,6.864001835721665e-3 5.56437290724313e-3,1.2428374742964798e-2 1.2428374742964793e-2 1.2428374742964798e-2c 6.864001835721665e-3,1.2608966816187141e-18 1.2428374742964798e-2,-5.564372907243129e-3 1.24283747429648e-2 -1.2428374742964795e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4172536896932789,0.8879637456750967 c 0.0,-8.170729428123002e-3 -6.6236849217686305e-3,-1.4794414349891634e-2 -1.479441434989163e-2 -1.4794414349891634e-2c -8.170729428123002e-3,-5.003128820424959e-19 -1.4794414349891634e-2,6.62368492176863e-3 -1.4794414349891634e-2 1.4794414349891628e-2c -1.0006257640849917e-18,8.170729428123002e-3 6.623684921768629e-3,1.4794414349891634e-2 1.4794414349891627e-2 1.4794414349891634e-2c 8.170729428123002e-3,1.5009386461274876e-18 1.4794414349891634e-2,-6.623684921768628e-3 1.4794414349891637e-2 -1.4794414349891628e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.28127141908361697,1.0152547478734617 c 0.0,-6.741942034977276e-3 -5.465423888204274e-3,-1.2207365923181552e-2 -1.2207365923181548e-2 -1.2207365923181552e-2c -6.741942034977276e-3,-4.128248866585957e-19 -1.2207365923181552e-2,5.465423888204274e-3 -1.2207365923181552e-2 1.2207365923181548e-2c -8.256497733171914e-19,6.741942034977276e-3 5.465423888204273e-3,1.2207365923181552e-2 1.2207365923181546e-2 1.2207365923181552e-2c 6.741942034977276e-3,1.238474659975787e-18 1.2207365923181552e-2,-5.465423888204272e-3 1.2207365923181553e-2 -1.2207365923181548e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.2967282887249274,0.9941755833936868 c 0.0,-9.4290189347478e-3 -7.643730109357836e-3,-1.7072749044105637e-2 -1.7072749044105634e-2 -1.7072749044105637e-2c -9.4290189347478e-3,-5.77360892876934e-19 -1.7072749044105637e-2,7.643730109357835e-3 -1.7072749044105637e-2 1.707274904410563e-2c -1.154721785753868e-18,9.4290189347478e-3 7.643730109357834e-3,1.7072749044105637e-2 1.707274904410563e-2 1.7072749044105637e-2c 9.4290189347478e-3,1.7320826786308019e-18 1.7072749044105637e-2,-7.643730109357832e-3 1.7072749044105637e-2 -1.707274904410563e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.3155339300888933,0.9614592006976497 c 0.0,-1.4075217267427173e-2 -1.1410218047850813e-2,-2.548543531527799e-2 -2.548543531527798e-2 -2.548543531527799e-2c -1.4075217267427173e-2,-8.6185848869291205e-19 -2.548543531527799e-2,1.1410218047850812e-2 -2.548543531527799e-2 2.548543531527798e-2c -1.7237169773858241e-18,1.4075217267427173e-2 1.141021804785081e-2,2.548543531527799e-2 2.5485435315277978e-2 2.548543531527799e-2c 1.4075217267427173e-2,2.5855754660787364e-18 2.548543531527799e-2,-1.1410218047850808e-2 2.5485435315277992e-2 -2.548543531527798e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.33635042046579233,0.9053372689171527 c 0.0,-2.3095179136891512e-2 -1.872234188639821e-2,-4.181752102328973e-2 -4.181752102328972e-2 -4.181752102328973e-2c -2.3095179136891512e-2,-1.414171860286446e-18 -4.181752102328973e-2,1.872234188639821e-2 -4.181752102328973e-2 4.1817521023289714e-2c -2.828343720572892e-18,2.3095179136891512e-2 1.8722341886398205e-2,4.181752102328973e-2 4.181752102328971e-2 4.181752102328973e-2c 2.3095179136891512e-2,4.242515580859338e-18 4.181752102328973e-2,-1.87223418863982e-2 4.181752102328975e-2 -4.1817521023289714e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.3466383678456644,0.7939907236320357 c 0.0,-4.383613679838704e-2 -3.553621018714417e-2,-7.937234698553122e-2 -7.937234698553121e-2 -7.937234698553122e-2c -4.383613679838704e-2,-2.6841892308565096e-18 -7.937234698553122e-2,3.553621018714417e-2 -7.937234698553122e-2 7.93723469855312e-2c -5.368378461713019e-18,4.383613679838704e-2 3.553621018714416e-2,7.937234698553122e-2 7.937234698553118e-2 7.937234698553122e-2c 4.383613679838704e-2,8.05256769256953e-18 7.937234698553122e-2,-3.553621018714415e-2 7.937234698553126e-2 -7.93723469855312e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.22397833111827972,0.5576830327591873 c 0.0,-9.37130136291973e-3 -7.596940772664977e-3,-1.6968242135584708e-2 -1.6968242135584705e-2 -1.6968242135584708e-2c -9.37130136291973e-3,-5.738267108972438e-19 -1.6968242135584708e-2,7.596940772664976e-3 -1.6968242135584708e-2 1.69682421355847e-2c -1.1476534217944875e-18,9.37130136291973e-3 7.596940772664975e-3,1.6968242135584708e-2 1.69682421355847e-2 1.6968242135584708e-2c 9.37130136291973e-3,1.7214801326917312e-18 1.6968242135584708e-2,-7.5969407726649745e-3 1.6968242135584708e-2 -1.69682421355847e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.23283750721523913,0.45322792179845933 c 0.0,-9.952499491942407e-3 -8.068094947776612e-3,-1.8020594439719023e-2 -1.802059443971902e-2 -1.8020594439719023e-2c -9.952499491942407e-3,-6.094148323161465e-19 -1.8020594439719023e-2,8.068094947776612e-3 -1.8020594439719023e-2 1.8020594439719016e-2c -1.218829664632293e-18,9.952499491942407e-3 8.06809494777661e-3,1.8020594439719023e-2 1.8020594439719016e-2 1.8020594439719023e-2c 9.952499491942407e-3,1.8282444969484394e-18 1.8020594439719023e-2,-8.06809494777661e-3 1.8020594439719023e-2 -1.8020594439719016e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.10205998047871821,0.4987970733669948 c 0.0,-6.39439510965042e-3 -5.183681438017256e-3,-1.1578076547667676e-2 -1.1578076547667675e-2 -1.1578076547667676e-2c -6.39439510965042e-3,-3.9154377517584373e-19 -1.1578076547667676e-2,5.183681438017255e-3 -1.1578076547667676e-2 1.1578076547667673e-2c -7.830875503516875e-19,6.39439510965042e-3 5.183681438017254e-3,1.1578076547667676e-2 1.1578076547667671e-2 1.1578076547667676e-2c 6.39439510965042e-3,1.1746313255275313e-18 1.1578076547667676e-2,-5.183681438017253e-3 1.1578076547667678e-2 -1.1578076547667673e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.1252059143859995,0.49960528922809183 c 0.0,-1.1259511696284938e-2 -9.12763768586725e-3,-2.038714938215219e-2 -2.0387149382152185e-2 -2.038714938215219e-2c -1.1259511696284938e-2,-6.894462479408766e-19 -2.038714938215219e-2,9.127637685867248e-3 -2.038714938215219e-2 2.038714938215218e-2c -1.3788924958817532e-18,1.1259511696284938e-2 9.127637685867248e-3,2.038714938215219e-2 2.0387149382152178e-2 2.038714938215219e-2c 1.1259511696284938e-2,2.0683387438226297e-18 2.038714938215219e-2,-9.127637685867246e-3 2.0387149382152192e-2 -2.038714938215218e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.16590229650718036,0.5028062477165303 c 0.0,-2.507506931169679e-2 -2.0327359995611034e-2,-4.5402429307307826e-2 -4.540242930730782e-2 -4.5402429307307826e-2c -2.507506931169679e-2,-1.5354051685483748e-18 -4.5402429307307826e-2,2.032735999561103e-2 -4.5402429307307826e-2 4.540242930730781e-2c -3.0708103370967496e-18,2.507506931169679e-2 2.0327359995611027e-2,4.5402429307307826e-2 4.5402429307307805e-2 4.5402429307307826e-2c 2.507506931169679e-2,4.6062155056451244e-18 4.5402429307307826e-2,-2.0327359995611027e-2 4.540242930730785e-2 -4.540242930730781e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.5594883355615764,0.3705124246495106 c 0.0,-6.9659434565984505e-3 -5.647012919134619e-3,-1.2612956375733071e-2 -1.2612956375733068e-2 -1.2612956375733071e-2c -6.9659434565984505e-3,-4.265410178582371e-19 -1.2612956375733071e-2,5.647012919134619e-3 -1.2612956375733071e-2 1.2612956375733068e-2c -8.530820357164742e-19,6.9659434565984505e-3 5.647012919134618e-3,1.2612956375733071e-2 1.2612956375733066e-2 1.2612956375733071e-2c 6.9659434565984505e-3,1.2796230535747113e-18 1.2612956375733071e-2,-5.647012919134617e-3 1.2612956375733073e-2 -1.2612956375733068e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.6338241099386142,0.3325453439947185 c 0.0,-9.208731836905449e-3 -7.465152132780077e-3,-1.6673883969685527e-2 -1.6673883969685523e-2 -1.6673883969685527e-2c -9.208731836905449e-3,-5.638721984136291e-19 -1.6673883969685527e-2,7.465152132780075e-3 -1.6673883969685527e-2 1.667388396968552e-2c -1.1277443968272582e-18,9.208731836905449e-3 7.465152132780074e-3,1.6673883969685527e-2 1.667388396968552e-2 1.6673883969685527e-2c 9.208731836905449e-3,1.6916165952408875e-18 1.6673883969685527e-2,-7.4651521327800735e-3 1.6673883969685534e-2 -1.667388396968552e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.6269100474916388,0.4761340894483499 c 0.0,-6.864432724199211e-3 -5.564722211370356e-3,-1.242915493556957e-2 -1.2429154935569566e-2 -1.242915493556957e-2c -6.864432724199211e-3,-4.203252781826455e-19 -1.242915493556957e-2,5.5647222113703555e-3 -1.242915493556957e-2 1.2429154935569566e-2c -8.40650556365291e-19,6.864432724199211e-3 5.5647222113703555e-3,1.242915493556957e-2 1.2429154935569564e-2 1.242915493556957e-2c 6.864432724199211e-3,1.2609758345479365e-18 1.242915493556957e-2,-5.564722211370355e-3 1.2429154935569571e-2 -1.2429154935569566e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.6160418131173796,0.4431421505353047 c 0.0,-1.1414312473300709e-2 -9.253128510354505e-3,-2.0667440983655215e-2 -2.066744098365521e-2 -2.0667440983655215e-2c -1.1414312473300709e-2,-6.98925061744771e-19 -2.0667440983655215e-2,9.253128510354503e-3 -2.0667440983655215e-2 2.0667440983655208e-2c -1.397850123489542e-18,1.1414312473300709e-2 9.253128510354503e-3,2.0667440983655215e-2 2.0667440983655205e-2 2.0667440983655215e-2c 1.1414312473300709e-2,2.096775185234313e-18 2.0667440983655215e-2,-9.253128510354501e-3 2.0667440983655225e-2 -2.0667440983655208e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.583172093557966,0.3832327015572947 c 0.0,-2.2433228576788464e-2 -1.818572493163532e-2,-4.061895350842379e-2 -4.061895350842378e-2 -4.061895350842379e-2c -2.2433228576788464e-2,-1.3736390785552462e-18 -4.061895350842379e-2,1.818572493163532e-2 -4.061895350842379e-2 4.0618953508423775e-2c -2.7472781571104923e-18,2.2433228576788464e-2 1.8185724931635318e-2,4.061895350842379e-2 4.061895350842377e-2 4.061895350842379e-2c 2.2433228576788464e-2,4.1209172356657385e-18 4.061895350842379e-2,-1.8185724931635314e-2 4.061895350842381e-2 -4.0618953508423775e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4544439198409923,0.32802680884417307 c 0.0,-5.813876707686453e-3 -4.713078290559799e-3,-1.0526954998246253e-2 -1.0526954998246251e-2 -1.0526954998246253e-2c -5.813876707686453e-3,-3.559972750352783e-19 -1.0526954998246253e-2,4.713078290559798e-3 -1.0526954998246253e-2 1.052695499824625e-2c -7.119945500705566e-19,5.813876707686453e-3 4.713078290559798e-3,1.0526954998246253e-2 1.0526954998246248e-2 1.0526954998246253e-2c 5.813876707686453e-3,1.067991825105835e-18 1.0526954998246253e-2,-4.7130782905597975e-3 1.0526954998246255e-2 -1.052695499824625e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4242819535542838,0.26788822122623746 c 0.0,-6.488985095235322e-3 -5.260361771980164e-3,-1.1749346867215488e-2 -1.1749346867215484e-2 -1.1749346867215488e-2c -6.488985095235322e-3,-3.9733574132974103e-19 -1.1749346867215488e-2,5.260361771980164e-3 -1.1749346867215488e-2 1.1749346867215484e-2c -7.946714826594821e-19,6.488985095235322e-3 5.260361771980163e-3,1.1749346867215488e-2 1.1749346867215483e-2 1.1749346867215488e-2c 6.488985095235322e-3,1.192007223989223e-18 1.1749346867215488e-2,-5.260361771980162e-3 1.174934686721549e-2 -1.1749346867215484e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.3795509124773876,0.3304809129937424 c 0.0,-7.511792097850837e-3 -6.08951067241806e-3,-1.3601302770268898e-2 -1.3601302770268895e-2 -1.3601302770268898e-2c -7.511792097850837e-3,-4.599646074246704e-19 -1.3601302770268898e-2,6.08951067241806e-3 -1.3601302770268898e-2 1.3601302770268893e-2c -9.199292148493409e-19,7.511792097850837e-3 6.089510672418059e-3,1.3601302770268898e-2 1.3601302770268893e-2 1.3601302770268898e-2c 7.511792097850837e-3,1.3798938222740112e-18 1.3601302770268898e-2,-6.089510672418058e-3 1.36013027702689e-2 -1.3601302770268893e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4007565336306485,0.3085842791250906 c 0.0,-1.6221981418521395e-2 -1.3150514243347617e-2,-2.9372495661869013e-2 -2.9372495661869006e-2 -2.9372495661869013e-2c -1.6221981418521395e-2,-9.933098810010033e-19 -2.9372495661869013e-2,1.3150514243347615e-2 -2.9372495661869013e-2 2.9372495661869003e-2c -1.9866197620020066e-18,1.6221981418521395e-2 1.3150514243347613e-2,2.9372495661869013e-2 2.9372495661869e-2 2.9372495661869013e-2c 1.6221981418521395e-2,2.9799296430030098e-18 2.9372495661869013e-2,-1.3150514243347611e-2 2.937249566186902e-2 -2.9372495661869003e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.6325194371713578,0.16769214286857395 c 0.0,-6.254732140366953e-3 -5.070462231346641e-3,-1.1325194371713596e-2 -1.1325194371713594e-2 -1.1325194371713596e-2c -6.254732140366953e-3,-3.829918847612231e-19 -1.1325194371713596e-2,5.070462231346641e-3 -1.1325194371713596e-2 1.1325194371713592e-2c -7.659837695224462e-19,6.254732140366953e-3 5.07046223134664e-3,1.1325194371713596e-2 1.132519437171359e-2 1.1325194371713596e-2c 6.254732140366953e-3,1.1489756542836694e-18 1.1325194371713596e-2,-5.070462231346639e-3 1.1325194371713598e-2 -1.1325194371713592e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.6033933248593889,0.1381563670954732 c 0.0,-1.2695568883019497e-2 -1.0291792051551134e-2,-2.2987360934570635e-2 -2.298736093457063e-2 -2.2987360934570635e-2c -1.2695568883019497e-2,-7.773793897972283e-19 -2.2987360934570635e-2,1.0291792051551134e-2 -2.2987360934570635e-2 2.2987360934570628e-2c -1.5547587795944565e-18,1.2695568883019497e-2 1.0291792051551132e-2,2.2987360934570635e-2 2.2987360934570624e-2 2.2987360934570635e-2c 1.2695568883019497e-2,2.3321381693916847e-18 2.2987360934570635e-2,-1.029179205155113e-2 2.2987360934570645e-2 -2.2987360934570628e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.48245610652985516,0.13378726545490408 c 0.0,-1.0434529327203406e-2 -8.458857336832291e-3,-1.88933866640357e-2 -1.8893386664035696e-2 -1.88933866640357e-2c -1.0434529327203406e-2,-6.389306470584418e-19 -1.88933866640357e-2,8.458857336832291e-3 -1.88933866640357e-2 1.8893386664035693e-2c -1.2778612941168836e-18,1.0434529327203406e-2 8.45885733683229e-3,1.88933866640357e-2 1.8893386664035693e-2 1.88933866640357e-2c 1.0434529327203406e-2,1.9167919411753254e-18 1.88933866640357e-2,-8.458857336832288e-3 1.8893386664035706e-2 -1.8893386664035693e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.5782470564534029,-3.910612761102341e-3 c 0.0,-7.975438470926221e-3 -6.465370320860442e-3,-1.4440808791786665e-2 -1.4440808791786662e-2 -1.4440808791786665e-2c -7.975438470926221e-3,-4.883547597608229e-19 -1.4440808791786665e-2,6.465370320860441e-3 -1.4440808791786665e-2 1.444080879178666e-2c -9.767095195216457e-19,7.975438470926221e-3 6.465370320860441e-3,1.4440808791786665e-2 1.4440808791786658e-2 1.4440808791786665e-2c 7.975438470926221e-3,1.4650642792824686e-18 1.4440808791786665e-2,-6.4653703208604404e-3 1.4440808791786669e-2 -1.444080879178666e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4998990889153362,1.0171832616414063e-2 c 0.0,-7.019860400563288e-3 -5.6907212381909975e-3,-1.2710581638754288e-2 -1.2710581638754284e-2 -1.2710581638754288e-2c -7.019860400563288e-3,-4.298424785005544e-19 -1.2710581638754288e-2,5.6907212381909975e-3 -1.2710581638754288e-2 1.2710581638754284e-2c -8.596849570011088e-19,7.019860400563288e-3 5.690721238190997e-3,1.2710581638754288e-2 1.2710581638754282e-2 1.2710581638754288e-2c 7.019860400563288e-3,1.2895274355016631e-18 1.2710581638754288e-2,-5.690721238190996e-3 1.271058163875429e-2 -1.2710581638754284e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4338609114507997,-0.25166445664821363 c 0.0,-6.556234828695285e-3 -5.314878452458965e-3,-1.1871113281154252e-2 -1.1871113281154248e-2 -1.1871113281154252e-2c -6.556234828695285e-3,-4.0145359987100386e-19 -1.1871113281154252e-2,5.314878452458964e-3 -1.1871113281154252e-2 1.1871113281154248e-2c -8.029071997420077e-19,6.556234828695285e-3 5.314878452458964e-3,1.1871113281154252e-2 1.1871113281154247e-2 1.1871113281154252e-2c 6.556234828695285e-3,1.2043607996130116e-18 1.1871113281154252e-2,-5.314878452458963e-3 1.1871113281154254e-2 -1.1871113281154248e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.44590199195620817,-0.22968246473711668 c 0.0,-8.078462551422439e-3 -6.548887839652965e-3,-1.4627350391075405e-2 -1.4627350391075402e-2 -1.4627350391075405e-2c -8.078462551422439e-3,-4.946631652815625e-19 -1.4627350391075405e-2,6.548887839652964e-3 -1.4627350391075405e-2 1.46273503910754e-2c -9.89326330563125e-19,8.078462551422439e-3 6.548887839652963e-3,1.4627350391075405e-2 1.4627350391075399e-2 1.4627350391075405e-2c 8.078462551422439e-3,1.4839894958446876e-18 1.4627350391075405e-2,-6.548887839652962e-3 1.4627350391075409e-2 -1.46273503910754e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4592716525275904,-0.2014254803971274 c 0.0,-1.0188290473768707e-2 -8.259241305608053e-3,-1.8447531779376764e-2 -1.844753177937676e-2 -1.8447531779376764e-2c -1.0188290473768707e-2,-6.238528658742159e-19 -1.8447531779376764e-2,8.259241305608053e-3 -1.8447531779376764e-2 1.8447531779376757e-2c -1.2477057317484318e-18,1.0188290473768707e-2 8.259241305608052e-3,1.8447531779376764e-2 1.8447531779376757e-2 1.8447531779376764e-2c 1.0188290473768707e-2,1.871558597622648e-18 1.8447531779376764e-2,-8.259241305608052e-3 1.8447531779376764e-2 -1.8447531779376757e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4736732692736274,-0.16399483070824292 c 0.0,-1.3223235195189757e-2 -1.0719550114817502e-2,-2.394278531000726e-2 -2.3942785310007254e-2 -2.394278531000726e-2c -1.3223235195189757e-2,-8.09689632808088e-19 -2.394278531000726e-2,1.07195501148175e-2 -2.394278531000726e-2 2.3942785310007254e-2c -1.619379265616176e-18,1.3223235195189757e-2 1.0719550114817499e-2,2.394278531000726e-2 2.394278531000725e-2 2.394278531000726e-2c 1.3223235195189757e-2,2.4290688984242643e-18 2.394278531000726e-2,-1.0719550114817497e-2 2.3942785310007264e-2 -2.3942785310007254e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4879596157477828,-0.11256643029635213 c 0.0,-1.7792446605201906e-2 -1.4423627821356267e-2,-3.2216074426558175e-2 -3.221607442655817e-2 -3.2216074426558175e-2c -1.7792446605201906e-2,-1.089473139203035e-18 -3.2216074426558175e-2,1.4423627821356266e-2 -3.2216074426558175e-2 3.221607442655816e-2c -2.17894627840607e-18,1.7792446605201906e-2 1.4423627821356264e-2,3.2216074426558175e-2 3.221607442655816e-2 3.2216074426558175e-2c 1.7792446605201906e-2,3.2684194176091052e-18 3.2216074426558175e-2,-1.4423627821356262e-2 3.221607442655819e-2 -3.221607442655816e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4986244491419339,-3.87109388050273e-2 c 0.0,-2.5069320639512165e-2 -2.032269977603034e-2,-4.539202041554251e-2 -4.53920204155425e-2 -4.539202041554251e-2c -2.5069320639512165e-2,-1.5350531638988624e-18 -4.539202041554251e-2,2.0322699776030337e-2 -4.539202041554251e-2 4.5392020415542494e-2c -3.0701063277977248e-18,2.5069320639512165e-2 2.0322699776030333e-2,4.539202041554251e-2 4.539202041554249e-2 4.539202041554251e-2c 2.5069320639512165e-2,4.605159491696587e-18 4.539202041554251e-2,-2.0322699776030333e-2 4.539202041554253e-2 -4.5392020415542494e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.4952996101806683,7.29125889716095e-2 c 0.0,-3.7478781560135274e-2 -3.038255549763765e-2,-6.786133705777293e-2 -6.786133705777292e-2 -6.786133705777293e-2c -3.7478781560135274e-2,-2.2949134936781257e-18 -6.786133705777293e-2,3.0382555497637645e-2 -6.786133705777293e-2 6.78613370577729e-2c -4.589826987356251e-18,3.7478781560135274e-2 3.038255549763764e-2,6.786133705777293e-2 6.78613370577729e-2 6.786133705777293e-2c 3.7478781560135274e-2,6.884740481034377e-18 6.786133705777293e-2,-3.0382555497637638e-2 6.786133705777293e-2 -6.78613370577729e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.44642290554331865,0.24981615247712638 c 0.0,-6.0310954341014446e-2 -4.889168860629171e-2,-0.10920264294730617 -0.10920264294730614 -0.10920264294730617c -6.0310954341014446e-2,-3.692980859362276e-18 -0.10920264294730617,4.88916886062917e-2 -0.10920264294730617 0.10920264294730612c -7.385961718724551e-18,6.0310954341014446e-2 4.889168860629169e-2,0.10920264294730617 0.10920264294730612 0.10920264294730617c 6.0310954341014446e-2,1.1078942578086825e-17 0.10920264294730617,-4.8891688606291686e-2 0.10920264294730618 -0.10920264294730612Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -0.2555191835282655,0.5263695662493916 c 0.0,-0.10431543081681856 -8.456436506524816e-2,-0.18887979588206674 -0.1888797958820667 -0.18887979588206674c -0.10431543081681856,-6.387477922574701e-18 -0.18887979588206674,8.456436506524814e-2 -0.18887979588206674 0.1888797958820667c -1.2774955845149402e-17,0.10431543081681856 8.456436506524814e-2,0.18887979588206674 0.18887979588206666 0.18887979588206674c 0.10431543081681856,1.91624337677241e-17 0.18887979588206674,-8.456436506524813e-2 0.18887979588206677 -0.1888797958820667Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.28817057139413627,0.8172092064639943 c 0.0,-0.17548524447658514 -0.14225889843221237,-0.31774414290879754 -0.3177441429087975 -0.31774414290879754c -0.17548524447658514,-1.0745372147292036e-17 -0.31774414290879754,0.14225889843221234 -0.31774414290879754 0.31774414290879743c -2.149074429458407e-17,0.17548524447658514 0.14225889843221234,0.31774414290879754 0.3177441429087974 0.31774414290879754c 0.17548524447658514,3.223611644187611e-17 0.31774414290879754,-0.14225889843221232 0.3177441429087976 -0.31774414290879743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.9686107515590052,0.4053190800337798 c 0.0,-9.243091846170892e-3 -7.4930064237935575e-3,-1.673609826996445e-2 -1.6736098269964448e-2 -1.673609826996445e-2c -9.243091846170892e-3,-5.659761421819091e-19 -1.673609826996445e-2,7.493006423793557e-3 -1.673609826996445e-2 1.6736098269964444e-2c -1.1319522843638182e-18,9.243091846170892e-3 7.493006423793556e-3,1.673609826996445e-2 1.6736098269964444e-2 1.673609826996445e-2c 9.243091846170892e-3,1.6979284265457274e-18 1.673609826996445e-2,-7.493006423793555e-3 1.673609826996446e-2 -1.6736098269964444e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0829254099296135,0.34923433552622174 c 0.0,-5.818207485415463e-3 -4.716589079577539e-3,-1.0534796564993003e-2 -1.0534796564993001e-2 -1.0534796564993003e-2c -5.818207485415463e-3,-3.5626245868946083e-19 -1.0534796564993003e-2,4.716589079577538e-3 -1.0534796564993003e-2 1.0534796564993e-2c -7.1252491737892165e-19,5.818207485415463e-3 4.7165890795775375e-3,1.0534796564993003e-2 1.0534796564992998e-2 1.0534796564993003e-2c 5.818207485415463e-3,1.0687873760683825e-18 1.0534796564993003e-2,-4.7165890795775375e-3 1.0534796564993008e-2 -1.0534796564993e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0811842826306968,0.378148675791227 c 0.0,-1.1463543433510115e-2 -9.293038089014747e-3,-2.0756581522524863e-2 -2.075658152252486e-2 -2.0756581522524863e-2c -1.1463543433510115e-2,-7.01939588636741e-19 -2.0756581522524863e-2,9.293038089014745e-3 -2.0756581522524863e-2 2.0756581522524856e-2c -1.403879177273482e-18,1.1463543433510115e-2 9.293038089014745e-3,2.0756581522524863e-2 2.0756581522524853e-2 2.0756581522524863e-2c 1.1463543433510115e-2,2.105818765910223e-18 2.0756581522524863e-2,-9.293038089014743e-3 2.0756581522524867e-2 -2.0756581522524856e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.9971968222929488,0.5032842910057332 c 0.0,-5.566099107095804e-3 -4.512214858301792e-3,-1.0078313965397597e-2 -1.0078313965397595e-2 -1.0078313965397597e-2c -5.566099107095804e-3,-3.4082527276209084e-19 -1.0078313965397597e-2,4.512214858301791e-3 -1.0078313965397597e-2 1.0078313965397594e-2c -6.816505455241817e-19,5.566099107095804e-3 4.512214858301791e-3,1.0078313965397597e-2 1.0078313965397592e-2 1.0078313965397597e-2c 5.566099107095804e-3,1.0224758182862725e-18 1.0078313965397597e-2,-4.51221485830179e-3 1.0078313965397602e-2 -1.0078313965397594e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0628488043444573,0.5012855039923835 c 0.0,-6.301070495269041e-3 -5.108026890091562e-3,-1.1409097385360605e-2 -1.1409097385360603e-2 -1.1409097385360605e-2c -6.301070495269041e-3,-3.8582929066165295e-19 -1.1409097385360605e-2,5.108026890091561e-3 -1.1409097385360605e-2 1.1409097385360601e-2c -7.716585813233059e-19,6.301070495269041e-3 5.108026890091561e-3,1.1409097385360605e-2 1.14090973853606e-2 1.1409097385360605e-2c 6.301070495269041e-3,1.1574878719849587e-18 1.1409097385360605e-2,-5.10802689009156e-3 1.140909738536061e-2 -1.1409097385360601e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0116278925237379,0.6579303401576444 c 0.0,-6.727721014974476e-3 -5.45389547368592e-3,-1.2181616488660398e-2 -1.2181616488660394e-2 -1.2181616488660398e-2c -6.727721014974476e-3,-4.119541003272437e-19 -1.2181616488660398e-2,5.45389547368592e-3 -1.2181616488660398e-2 1.2181616488660394e-2c -8.239082006544874e-19,6.727721014974476e-3 5.453895473685919e-3,1.2181616488660398e-2 1.2181616488660393e-2 1.2181616488660398e-2c 6.727721014974476e-3,1.2358623009817311e-18 1.2181616488660398e-2,-5.453895473685918e-3 1.21816164886604e-2 -1.2181616488660394e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0228092368594435,0.6302897282701405 c 0.0,-9.023111518379538e-3 -7.314677133478037e-3,-1.6337788651857577e-2 -1.6337788651857574e-2 -1.6337788651857577e-2c -9.023111518379538e-3,-5.525062319666558e-19 -1.6337788651857577e-2,7.314677133478036e-3 -1.6337788651857577e-2 1.633778865185757e-2c -1.1050124639333115e-18,9.023111518379538e-3 7.314677133478035e-3,1.6337788651857577e-2 1.633778865185757e-2 1.6337788651857577e-2c 9.023111518379538e-3,1.6575186958999672e-18 1.6337788651857577e-2,-7.3146771334780345e-3 1.6337788651857577e-2 -1.633778865185757e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0367456545590608,0.5916262685258882 c 0.0,-1.270441883789639e-2 -1.029896635749188e-2,-2.3003385195388273e-2 -2.300338519538827e-2 -2.3003385195388273e-2c -1.270441883789639e-2,-7.779212932428575e-19 -2.3003385195388273e-2,1.029896635749188e-2 -2.3003385195388273e-2 2.3003385195388266e-2c -1.555842586485715e-18,1.270441883789639e-2 1.0298966357491878e-2,2.3003385195388273e-2 2.3003385195388262e-2 2.3003385195388273e-2c 1.270441883789639e-2,2.3337638797285724e-18 2.3003385195388273e-2,-1.0298966357491876e-2 2.3003385195388276e-2 -2.3003385195388266e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0539568218247939,0.5342725722272722 c 0.0,-1.9121369047410453e-2 -1.5500932316639108e-2,-3.462230136404956e-2 -3.4622301364049556e-2 -3.462230136404956e-2c -1.9121369047410453e-2,-1.1708461699613241e-18 -3.462230136404956e-2,1.5500932316639106e-2 -3.462230136404956e-2 3.462230136404955e-2c -2.3416923399226482e-18,1.9121369047410453e-2 1.5500932316639104e-2,3.462230136404956e-2 3.462230136404955e-2 3.462230136404956e-2c 1.9121369047410453e-2,3.512538509883973e-18 3.462230136404956e-2,-1.55009323166391e-2 3.4622301364049576e-2 -3.462230136404955e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.073343250465111,0.44237610026873025 c 0.0,-3.1664873365029746e-2 -2.566945168148129e-2,-5.7334325046511043e-2 -5.733432504651103e-2 -5.7334325046511043e-2c -3.1664873365029746e-2,-1.938914290594498e-18 -5.7334325046511043e-2,2.5669451681481287e-2 -5.7334325046511043e-2 5.733432504651102e-2c -3.877828581188996e-18,3.1664873365029746e-2 2.5669451681481284e-2,5.7334325046511043e-2 5.7334325046511016e-2 5.7334325046511043e-2c 3.1664873365029746e-2,5.816742871783493e-18 5.7334325046511043e-2,-2.566945168148128e-2 5.733432504651106e-2 -5.733432504651102e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8666357076385497,0.3042690285240695 c 0.0,-6.462360959750816e-3 -5.2387786457348045e-3,-1.1701139605485621e-2 -1.170113960548562e-2 -1.1701139605485621e-2c -6.462360959750816e-3,-3.9570548321468266e-19 -1.1701139605485621e-2,5.238778645734804e-3 -1.1701139605485621e-2 1.1701139605485618e-2c -7.914109664293653e-19,6.462360959750816e-3 5.238778645734803e-3,1.1701139605485621e-2 1.1701139605485616e-2 1.1701139605485621e-2c 6.462360959750816e-3,1.187116449644048e-18 1.1701139605485621e-2,-5.238778645734802e-3 1.1701139605485623e-2 -1.1701139605485618e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8732126958493431,0.2359573998884658 c 0.0,-6.183590410824911e-3 -5.012790464655375e-3,-1.1196380875480288e-2 -1.1196380875480286e-2 -1.1196380875480288e-2c -6.183590410824911e-3,-3.7863571019274967e-19 -1.1196380875480288e-2,5.012790464655375e-3 -1.1196380875480288e-2 1.1196380875480284e-2c -7.572714203854993e-19,6.183590410824911e-3 5.0127904646553745e-3,1.1196380875480288e-2 1.1196380875480283e-2 1.1196380875480288e-2c 6.183590410824911e-3,1.135907130578249e-18 1.1196380875480288e-2,-5.012790464655374e-3 1.1196380875480293e-2 -1.1196380875480284e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8046739735222452,0.2611765986743179 c 0.0,-7.88750574593845e-3 -6.394086762916787e-3,-1.4281592508855238e-2 -1.4281592508855235e-2 -1.4281592508855238e-2c -7.88750574593845e-3,-4.829704332509939e-19 -1.4281592508855238e-2,6.394086762916787e-3 -1.4281592508855238e-2 1.4281592508855233e-2c -9.659408665019879e-19,7.88750574593845e-3 6.394086762916786e-3,1.4281592508855238e-2 1.4281592508855231e-2 1.4281592508855238e-2c 7.88750574593845e-3,1.4489112997529817e-18 1.4281592508855238e-2,-6.3940867629167855e-3 1.4281592508855242e-2 -1.4281592508855233e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8650971322643312,0.2673361856211516 c 0.0,-1.6803131529712176e-2 -1.3621629492315398e-2,-3.042476102202758e-2 -3.0424761022027572e-2 -3.042476102202758e-2c -1.6803131529712176e-2,-1.0288950621756994e-18 -3.042476102202758e-2,1.3621629492315396e-2 -3.042476102202758e-2 3.042476102202757e-2c -2.0577901243513987e-18,1.6803131529712176e-2 1.3621629492315395e-2,3.042476102202758e-2 3.0424761022027565e-2 3.042476102202758e-2c 1.6803131529712176e-2,3.0866851865270977e-18 3.042476102202758e-2,-1.3621629492315393e-2 3.0424761022027586e-2 -3.042476102202757e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0738827000517162,0.18321572281246123 c 0.0,-1.0115319045647301e-2 -8.200086275152136e-3,-1.831540532079944e-2 -1.8315405320799436e-2 -1.831540532079944e-2c -1.0115319045647301e-2,-6.193846545803114e-19 -1.831540532079944e-2,8.200086275152134e-3 -1.831540532079944e-2 1.8315405320799432e-2c -1.2387693091606227e-18,1.0115319045647301e-2 8.200086275152134e-3,1.831540532079944e-2 1.8315405320799432e-2 1.831540532079944e-2c 1.0115319045647301e-2,1.858153963740934e-18 1.831540532079944e-2,-8.200086275152133e-3 1.831540532079944e-2 -1.8315405320799432e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.9760187478749677,0.15814915905163418 c 0.0,-7.886936852546817e-3 -6.393625583702202e-3,-1.428056243624902e-2 -1.4280562436249016e-2 -1.428056243624902e-2c -7.886936852546817e-3,-4.829355985774379e-19 -1.428056243624902e-2,6.393625583702201e-3 -1.428056243624902e-2 1.4280562436249014e-2c -9.658711971548758e-19,7.886936852546817e-3 6.3936255837022e-3,1.428056243624902e-2 1.4280562436249013e-2 1.428056243624902e-2c 7.886936852546817e-3,1.4488067957323139e-18 1.428056243624902e-2,-6.393625583702199e-3 1.4280562436249023e-2 -1.4280562436249014e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0215673318061875,-9.266662252995064e-3 c 0.0,-6.001118403468635e-3 -4.864867675826928e-3,-1.0865986079295564e-2 -1.0865986079295563e-2 -1.0865986079295564e-2c -6.001118403468635e-3,-3.674625222056069e-19 -1.0865986079295564e-2,4.8648676758269276e-3 -1.0865986079295564e-2 1.086598607929556e-2c -7.349250444112138e-19,6.001118403468635e-3 4.864867675826927e-3,1.0865986079295564e-2 1.0865986079295559e-2 1.0865986079295564e-2c 6.001118403468635e-3,1.1023875666168207e-18 1.0865986079295564e-2,-4.864867675826927e-3 1.086598607929557e-2 -1.086598607929556e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0313276243604805,1.712630830627881e-2 c 0.0,-8.803324322943527e-3 -7.136504407870876e-3,-1.5939828730814405e-2 -1.59398287308144e-2 -1.5939828730814405e-2c -8.803324322943527e-3,-5.390481476974415e-19 -1.5939828730814405e-2,7.136504407870875e-3 -1.5939828730814405e-2 1.5939828730814398e-2c -1.078096295394883e-18,8.803324322943527e-3 7.136504407870874e-3,1.5939828730814405e-2 1.5939828730814398e-2 1.5939828730814405e-2c 8.803324322943527e-3,1.6171444430923247e-18 1.5939828730814405e-2,-7.1365044078708735e-3 1.5939828730814412e-2 -1.5939828730814398e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.044811315633278,5.842177743375764e-2 c 0.0,-1.4104264741852035e-2 -1.1433765678457842e-2,-2.553803042030988e-2 -2.5538030420309873e-2 -2.553803042030988e-2c -1.4104264741852035e-2,-8.636371335217982e-19 -2.553803042030988e-2,1.143376567845784e-2 -2.553803042030988e-2 2.5538030420309873e-2c -1.7272742670435965e-18,1.4104264741852035e-2 1.1433765678457839e-2,2.553803042030988e-2 2.553803042030987e-2 2.553803042030988e-2c 1.4104264741852035e-2,2.590911400565395e-18 2.553803042030988e-2,-1.1433765678457839e-2 2.5538030420309884e-2 -2.5538030420309873e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0635291667513684,0.13087009548699335 c 0.0,-2.5935713740136233e-2 -2.10250501558111e-2,-4.696076389594734e-2 -4.6960763895947326e-2 -4.696076389594734e-2c -2.5935713740136233e-2,-1.5881044407729932e-18 -4.696076389594734e-2,2.1025050155811097e-2 -4.696076389594734e-2 4.6960763895947326e-2c -3.1762088815459865e-18,2.5935713740136233e-2 2.1025050155811097e-2,4.696076389594734e-2 4.696076389594732e-2 4.696076389594734e-2c 2.5935713740136233e-2,4.76431332231898e-18 4.696076389594734e-2,-2.1025050155811093e-2 4.696076389594735e-2 -4.6960763895947326e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0830572575138904,0.2811694778859956 c 0.0,-6.037755592557886e-2 -4.8945679858275505e-2,-0.10932323578385438 -0.10932323578385435 -0.10932323578385438c -6.037755592557886e-2,-3.697059030230023e-18 -0.10932323578385438,4.89456798582755e-2 -0.10932323578385438 0.10932323578385433c -7.394118060460046e-18,6.037755592557886e-2 4.894567985827549e-2,0.10932323578385438 0.10932323578385433 0.10932323578385438c 6.037755592557886e-2,1.109117709069007e-17 0.10932323578385438,-4.8945679858275484e-2 0.10932323578385439 -0.10932323578385433Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.4473789119677711,0.2734559629808798 c 0.0,-7.265456109925964e-3 -5.889815898131331e-3,-1.3155272008057297e-2 -1.3155272008057294e-2 -1.3155272008057297e-2c -7.265456109925964e-3,-4.448808784683206e-19 -1.3155272008057297e-2,5.889815898131331e-3 -1.3155272008057297e-2 1.3155272008057292e-2c -8.897617569366412e-19,7.265456109925964e-3 5.88981589813133e-3,1.3155272008057297e-2 1.3155272008057292e-2 1.3155272008057297e-2c 7.265456109925964e-3,1.3346426354049617e-18 1.3155272008057297e-2,-5.889815898131329e-3 1.3155272008057299e-2 -1.3155272008057292e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.4843426984104453,0.2482913651055037 c 0.0,-1.2970933337118939e-2 -1.0515019047213445e-2,-2.3485952384332386e-2 -2.348595238433238e-2 -2.3485952384332386e-2c -1.2970933337118939e-2,-7.942405996628202e-19 -2.3485952384332386e-2,1.0515019047213444e-2 -2.3485952384332386e-2 2.348595238433238e-2c -1.5884811993256404e-18,1.2970933337118939e-2 1.0515019047213442e-2,2.3485952384332386e-2 2.3485952384332376e-2 2.3485952384332386e-2c 1.2970933337118939e-2,2.3827217989884608e-18 2.3485952384332386e-2,-1.051501904721344e-2 2.348595238433239e-2 -2.348595238433238e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.630413304243916,0.22590623538416194 c 0.0,-6.002106592413176e-3 -4.865668761246461e-3,-1.0867775353659638e-2 -1.0867775353659636e-2 -1.0867775353659638e-2c -6.002106592413176e-3,-3.6752303132700113e-19 -1.0867775353659638e-2,4.86566876124646e-3 -1.0867775353659638e-2 1.0867775353659634e-2c -7.350460626540023e-19,6.002106592413176e-3 4.865668761246459e-3,1.0867775353659638e-2 1.0867775353659632e-2 1.0867775353659638e-2c 6.002106592413176e-3,1.1025690939810034e-18 1.0867775353659638e-2,-4.865668761246459e-3 1.086777535365964e-2 -1.0867775353659634e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6097876128322353,0.21762463431098977 c 0.0,-1.1368879553919551e-2 -9.216297852124517e-3,-2.058517740604407e-2 -2.0585177406044066e-2 -2.058517740604407e-2c -1.1368879553919551e-2,-6.961430977799683e-19 -2.058517740604407e-2,9.216297852124515e-3 -2.058517740604407e-2 2.0585177406044063e-2c -1.3922861955599365e-18,1.1368879553919551e-2 9.216297852124515e-3,2.058517740604407e-2 2.058517740604406e-2 2.058517740604407e-2c 1.1368879553919551e-2,2.088429293339905e-18 2.058517740604407e-2,-9.216297852124513e-3 2.058517740604408e-2 -2.0585177406044063e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5154518925895232,8.857384934087843e-2 c 0.0,-6.400383474912798e-3 -5.188535967229536e-3,-1.1588919442142336e-2 -1.1588919442142335e-2 -1.1588919442142336e-2c -6.400383474912798e-3,-3.919104567933786e-19 -1.1588919442142336e-2,5.188535967229535e-3 -1.1588919442142336e-2 1.1588919442142333e-2c -7.838209135867572e-19,6.400383474912798e-3 5.188535967229535e-3,1.1588919442142336e-2 1.1588919442142331e-2 1.1588919442142336e-2c 6.400383474912798e-3,1.1757313703801358e-18 1.1588919442142336e-2,-5.1885359672295345e-3 1.1588919442142341e-2 -1.1588919442142333e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5287161636738964,0.12153349688469099 c 0.0,-1.1894624453053494e-2 -9.642498302368803e-3,-2.15371227554223e-2 -2.1537122755422296e-2 -2.15371227554223e-2c -1.1894624453053494e-2,-7.283356881745899e-19 -2.15371227554223e-2,9.642498302368803e-3 -2.15371227554223e-2 2.1537122755422293e-2c -1.4566713763491798e-18,1.1894624453053494e-2 9.642498302368801e-3,2.15371227554223e-2 2.153712275542229e-2 2.15371227554223e-2c 1.1894624453053494e-2,2.1850070645237695e-18 2.15371227554223e-2,-9.6424983023688e-3 2.153712275542231e-2 -2.1537122755422293e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5717865048559383,0.19613746089843434 c 0.0,-2.973494390669162e-2 -2.4104934735261967e-2,-5.3839878641953595e-2 -5.383987864195358e-2 -5.3839878641953595e-2c -2.973494390669162e-2,-1.8207401939077995e-18 -5.3839878641953595e-2,2.4104934735261964e-2 -5.3839878641953595e-2 5.3839878641953574e-2c -3.641480387815599e-18,2.973494390669162e-2 2.4104934735261964e-2,5.3839878641953595e-2 5.3839878641953574e-2 5.3839878641953595e-2c 2.973494390669162e-2,5.4622205817233976e-18 5.3839878641953595e-2,-2.410493473526196e-2 5.38398786419536e-2 -5.3839878641953574e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.9909670496684223,0.6049858236060313 c 0.0,-0.2033652106509653 -0.16486007660035099,-0.3682252872513163 -0.36822528725131626 -0.3682252872513163c -0.2033652106509653,-1.2452527714081593e-17 -0.3682252872513163,0.16486007660035096 -0.3682252872513163 0.3682252872513162c -2.4905055428163187e-17,0.2033652106509653 0.16486007660035093,0.3682252872513163 0.36822528725131615 0.3682252872513163c 0.2033652106509653,3.735758314224478e-17 0.3682252872513163,-0.16486007660035093 0.3682252872513165 -0.3682252872513162Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.3076052170471883,-0.5410495948291731 c 0.0,-9.961566053610328e-3 -8.07544484821578e-3,-1.803701090182611e-2 -1.8037010901826106e-2 -1.803701090182611e-2c -9.961566053610328e-3,-6.099699991024409e-19 -1.803701090182611e-2,8.07544484821578e-3 -1.803701090182611e-2 1.8037010901826103e-2c -1.2199399982048818e-18,9.961566053610328e-3 8.075444848215778e-3,1.803701090182611e-2 1.8037010901826103e-2 1.803701090182611e-2c 9.961566053610328e-3,1.8299099973073226e-18 1.803701090182611e-2,-8.075444848215778e-3 1.803701090182611e-2 -1.8037010901826103e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2738996973151541,-0.4459144789218237 c 0.0,-8.513982893520464e-3 -6.901946834991756e-3,-1.5415929728512223e-2 -1.541592972851222e-2 -1.5415929728512223e-2c -8.513982893520464e-3,-5.213310949272579e-19 -1.5415929728512223e-2,6.901946834991755e-3 -1.5415929728512223e-2 1.5415929728512218e-2c -1.0426621898545157e-18,8.513982893520464e-3 6.9019468349917545e-3,1.5415929728512223e-2 1.5415929728512216e-2 1.5415929728512223e-2c 8.513982893520464e-3,1.5639932847817736e-18 1.5415929728512223e-2,-6.901946834991754e-3 1.5415929728512226e-2 -1.5415929728512218e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.18478687554836654,-0.5504232911347144 c 0.0,-6.528277559293247e-3 -5.292214607643014e-3,-1.1820492166936262e-2 -1.1820492166936258e-2 -1.1820492166936262e-2c -6.528277559293247e-3,-3.997417108466985e-19 -1.1820492166936262e-2,5.292214607643013e-3 -1.1820492166936262e-2 1.1820492166936258e-2c -7.99483421693397e-19,6.528277559293247e-3 5.292214607643012e-3,1.1820492166936262e-2 1.1820492166936257e-2 1.1820492166936262e-2c 6.528277559293247e-3,1.1992251325400955e-18 1.1820492166936262e-2,-5.292214607643011e-3 1.1820492166936264e-2 -1.1820492166936258e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.1738464866304503,-0.4838498813912311 c 0.0,-5.873791680578355e-3 -4.7616489727765315e-3,-1.0635440653354887e-2 -1.0635440653354885e-2 -1.0635440653354887e-2c -5.873791680578355e-3,-3.596660090239317e-19 -1.0635440653354887e-2,4.761648972776531e-3 -1.0635440653354887e-2 1.0635440653354884e-2c -7.193320180478634e-19,5.873791680578355e-3 4.761648972776531e-3,1.0635440653354887e-2 1.0635440653354882e-2 1.0635440653354887e-2c 5.873791680578355e-3,1.078998027071795e-18 1.0635440653354887e-2,-4.76164897277653e-3 1.0635440653354892e-2 -1.0635440653354884e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -6.0548781016948265e-2,-0.5057748745990867 c 0.0,-5.953510447921187e-3 -4.8262738024047475e-3,-1.0779784250325936e-2 -1.0779784250325934e-2 -1.0779784250325936e-2c -5.953510447921187e-3,-3.645473756868503e-19 -1.0779784250325936e-2,4.8262738024047475e-3 -1.0779784250325936e-2 1.0779784250325932e-2c -7.290947513737006e-19,5.953510447921187e-3 4.826273802404747e-3,1.0779784250325936e-2 1.077978425032593e-2 1.0779784250325936e-2c 5.953510447921187e-3,1.0936421270605509e-18 1.0779784250325936e-2,-4.826273802404746e-3 1.0779784250325938e-2 -1.0779784250325932e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -3.480339338881612e-2,-0.5109053090501261 c 0.0,-7.263043237534475e-3 -5.887859878583964e-3,-1.315090311611844e-2 -1.3150903116118436e-2 -1.315090311611844e-2c -7.263043237534475e-3,-4.447331326457712e-19 -1.315090311611844e-2,5.887859878583963e-3 -1.315090311611844e-2 1.3150903116118435e-2c -8.894662652915424e-19,7.263043237534475e-3 5.887859878583962e-3,1.315090311611844e-2 1.3150903116118435e-2 1.315090311611844e-2c 7.263043237534475e-3,1.3341993979373134e-18 1.315090311611844e-2,-5.887859878583961e-3 1.3150903116118441e-2 -1.3150903116118435e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M -2.482615284120908e-3,-0.5160404853187014 c 0.0,-9.049352787277623e-3 -7.3359498850306785e-3,-1.6385302672308304e-2 -1.63853026723083e-2 -1.6385302672308304e-2c -9.049352787277623e-3,-5.541130462647359e-19 -1.6385302672308304e-2,7.335949885030678e-3 -1.6385302672308304e-2 1.6385302672308297e-2c -1.1082260925294719e-18,9.049352787277623e-3 7.335949885030677e-3,1.6385302672308304e-2 1.6385302672308297e-2 1.6385302672308304e-2c 9.049352787277623e-3,1.662339138794208e-18 1.6385302672308304e-2,-7.335949885030676e-3 1.638530267230831e-2 -1.6385302672308297e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 3.9131228691510395e-2,-0.5206311696823659 c 0.0,-1.1569581548497024e-2 -9.378998965525244e-3,-2.094858051402227e-2 -2.0948580514022267e-2 -2.094858051402227e-2c -1.1569581548497024e-2,-7.0843255054205795e-19 -2.094858051402227e-2,9.378998965525243e-3 -2.094858051402227e-2 2.0948580514022264e-2c -1.4168651010841159e-18,1.1569581548497024e-2 9.37899896552524e-3,2.094858051402227e-2 2.094858051402226e-2 2.094858051402227e-2c 1.1569581548497024e-2,2.1252976516261737e-18 2.094858051402227e-2,-9.37899896552524e-3 2.094858051402228e-2 -2.0948580514022264e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 9.436485227573449e-2,-0.5234232541806119 c 0.0,-1.5274507232964073e-2 -1.2382434657326772e-2,-2.765694189029085e-2 -2.7656941890290842e-2 -2.765694189029085e-2c -1.5274507232964073e-2,-9.352938195701273e-19 -2.765694189029085e-2,1.238243465732677e-2 -2.765694189029085e-2 2.765694189029084e-2c -1.8705876391402547e-18,1.5274507232964073e-2 1.2382434657326769e-2,2.765694189029085e-2 2.7656941890290835e-2 2.765694189029085e-2c 1.5274507232964073e-2,2.805881458710382e-18 2.765694189029085e-2,-1.2382434657326767e-2 2.7656941890290856e-2 -2.765694189029084e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.17039842226136812,-0.5214941583162296 c 0.0,-2.1003914412140223e-2 -1.7027036865394248e-2,-3.8030951277534475e-2 -3.803095127753447e-2 -3.8030951277534475e-2c -2.1003914412140223e-2,-1.2861188277196242e-18 -3.8030951277534475e-2,1.7027036865394245e-2 -3.8030951277534475e-2 3.803095127753446e-2c -2.5722376554392484e-18,2.1003914412140223e-2 1.7027036865394245e-2,3.8030951277534475e-2 3.803095127753446e-2 3.8030951277534475e-2c 2.1003914412140223e-2,3.858356483158873e-18 3.8030951277534475e-2,-1.702703686539424e-2 3.803095127753449e-2 -3.803095127753446e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.2795801540130412,-0.5076932205801712 c 0.0,-3.0433629874662405e-2 -2.4671331622077314e-2,-5.510496149673973e-2 -5.510496149673971e-2 -5.510496149673973e-2c -3.0433629874662405e-2,-1.863522370622029e-18 -5.510496149673973e-2,2.467133162207731e-2 -5.510496149673973e-2 5.5104961496739706e-2c -3.727044741244058e-18,3.0433629874662405e-2 2.4671331622077308e-2,5.510496149673973e-2 5.51049614967397e-2 5.510496149673973e-2c 3.0433629874662405e-2,5.590567111866087e-18 5.510496149673973e-2,-2.4671331622077308e-2 5.510496149673974e-2 -5.5104961496739706e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.450274459358806,-0.5194049763320321 c 0.0,-6.865664443305705e-3 -5.565720716992811e-3,-1.2431385160298517e-2 -1.2431385160298514e-2 -1.2431385160298517e-2c -6.865664443305705e-3,-4.204006992257063e-19 -1.2431385160298517e-2,5.56572071699281e-3 -1.2431385160298517e-2 1.2431385160298514e-2c -8.408013984514126e-19,6.865664443305705e-3 5.5657207169928094e-3,1.2431385160298517e-2 1.2431385160298512e-2 1.2431385160298517e-2c 6.865664443305705e-3,1.2612020976771188e-18 1.2431385160298517e-2,-5.565720716992809e-3 1.2431385160298519e-2 -1.2431385160298514e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5301684731919074,-0.49127160057880365 c 0.0,-8.330793834784803e-3 -6.753442761168921e-3,-1.5084236595953726e-2 -1.5084236595953723e-2 -1.5084236595953726e-2c -8.330793834784803e-3,-5.101140002062857e-19 -1.5084236595953726e-2,6.7534427611689206e-3 -1.5084236595953726e-2 1.5084236595953721e-2c -1.0202280004125713e-18,8.330793834784803e-3 6.75344276116892e-3,1.5084236595953726e-2 1.508423659595372e-2 1.5084236595953726e-2c 8.330793834784803e-3,1.530342000618857e-18 1.5084236595953726e-2,-6.753442761168919e-3 1.508423659595373e-2 -1.5084236595953721e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5,-0.49127160057880365 c 0.0,-1.6661587669569607e-2 -1.3506885522337843e-2,-3.0168473191907453e-2 -3.0168473191907446e-2 -3.0168473191907453e-2c -1.6661587669569607e-2,-1.0202280004125713e-18 -3.0168473191907453e-2,1.3506885522337841e-2 -3.0168473191907453e-2 3.0168473191907443e-2c -2.0404560008251427e-18,1.6661587669569607e-2 1.350688552233784e-2,3.0168473191907453e-2 3.016847319190744e-2 3.0168473191907453e-2c 1.6661587669569607e-2,3.060684001237714e-18 3.0168473191907453e-2,-1.3506885522337838e-2 3.016847319190746e-2 -3.0168473191907443e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.4052113254764039,-0.32496869758018376 c 0.0,-6.040423776468084e-3 -4.896730976254531e-3,-1.0937154752722616e-2 -1.0937154752722614e-2 -1.0937154752722616e-2c -6.040423776468084e-3,-3.6986928216726027e-19 -1.0937154752722616e-2,4.8967309762545305e-3 -1.0937154752722616e-2 1.0937154752722613e-2c -7.397385643345205e-19,6.040423776468084e-3 4.89673097625453e-3,1.0937154752722616e-2 1.0937154752722611e-2 1.0937154752722616e-2c 6.040423776468084e-3,1.1096078465017809e-18 1.0937154752722616e-2,-4.89673097625453e-3 1.0937154752722618e-2 -1.0937154752722613e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.40604504562492694,-0.35733895867254173 c 0.0,-1.2972472118100212e-2 -1.0516266475668055e-2,-2.348873859376827e-2 -2.3488738593768262e-2 -2.348873859376827e-2c -1.2972472118100212e-2,-7.943348228229855e-19 -2.348873859376827e-2,1.0516266475668053e-2 -2.348873859376827e-2 2.3488738593768262e-2c -1.588669645645971e-18,1.2972472118100212e-2 1.0516266475668052e-2,2.348873859376827e-2 2.348873859376826e-2 2.348873859376827e-2c 1.2972472118100212e-2,2.3830044684689562e-18 2.348873859376827e-2,-1.0516266475668052e-2 2.3488738593768273e-2 -2.3488738593768262e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.4430964406271152,-0.46331649788705553 c 0.0,-4.7140452079103175e-2 -3.82148869802242e-2,-8.535533905932738e-2 -8.535533905932736e-2 -8.535533905932738e-2c -4.7140452079103175e-2,-2.8865201874516446e-18 -8.535533905932738e-2,3.821488698022419e-2 -8.535533905932738e-2 8.535533905932735e-2c -5.773040374903289e-18,4.7140452079103175e-2 3.821488698022418e-2,8.535533905932738e-2 8.535533905932734e-2 8.535533905932738e-2c 4.7140452079103175e-2,8.659560562354934e-18 8.535533905932738e-2,-3.821488698022418e-2 8.535533905932742e-2 -8.535533905932735e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8215602636897266,-0.3078422932526459 c 0.0,-5.667856269810783e-3 -4.594705337308144e-3,-1.0262561607118928e-2 -1.0262561607118926e-2 -1.0262561607118928e-2c -5.667856269810783e-3,-3.470561019425516e-19 -1.0262561607118928e-2,4.594705337308143e-3 -1.0262561607118928e-2 1.0262561607118924e-2c -6.941122038851032e-19,5.667856269810783e-3 4.594705337308143e-3,1.0262561607118928e-2 1.0262561607118923e-2 1.0262561607118928e-2c 5.667856269810783e-3,1.0411683058276549e-18 1.0262561607118928e-2,-4.5947053373081425e-3 1.0262561607118933e-2 -1.0262561607118924e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.896083741687615,-0.22488325913749535 c 0.0,-6.56253030569967e-3 -5.319981944928775e-3,-1.1882512250628446e-2 -1.1882512250628443e-2 -1.1882512250628446e-2c -6.56253030569967e-3,-4.018390866591301e-19 -1.1882512250628446e-2,5.319981944928775e-3 -1.1882512250628446e-2 1.1882512250628443e-2c -8.036781733182602e-19,6.56253030569967e-3 5.319981944928774e-3,1.1882512250628446e-2 1.1882512250628441e-2 1.1882512250628446e-2c 6.56253030569967e-3,1.2055172599773903e-18 1.1882512250628446e-2,-5.319981944928773e-3 1.1882512250628448e-2 -1.1882512250628443e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8789603184148168,-0.24358316916265663 c 0.0,-9.810656468040229e-3 -7.953108457654302e-3,-1.7763764925694533e-2 -1.776376492569453e-2 -1.7763764925694533e-2c -9.810656468040229e-3,-6.007294520559872e-19 -1.7763764925694533e-2,7.953108457654302e-3 -1.7763764925694533e-2 1.7763764925694526e-2c -1.2014589041119743e-18,9.810656468040229e-3 7.9531084576543e-3,1.7763764925694533e-2 1.7763764925694526e-2 1.7763764925694533e-2c 9.810656468040229e-3,1.8021883561679616e-18 1.7763764925694533e-2,-7.9531084576543e-3 1.7763764925694533e-2 -1.7763764925694526e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.8514198771596939,-0.2698085682987137 c 0.0,-1.6173653245225805e-2 -1.3111336518082009e-2,-2.9284989763307817e-2 -2.928498976330781e-2 -2.9284989763307817e-2c -1.6173653245225805e-2,-9.903506338642491e-19 -2.9284989763307817e-2,1.3111336518082007e-2 -2.9284989763307817e-2 2.9284989763307807e-2c -1.9807012677284982e-18,1.6173653245225805e-2 1.3111336518082006e-2,2.9284989763307817e-2 2.9284989763307803e-2 2.9284989763307817e-2c 1.6173653245225805e-2,2.9710519015927474e-18 2.9284989763307817e-2,-1.3111336518082004e-2 2.9284989763307824e-2 -2.9284989763307807e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6992667667583485,-0.4056142600622088 c 0.0,-6.878249776795346e-3 -5.57592314560143e-3,-1.2454172922396778e-2 -1.2454172922396775e-2 -1.2454172922396778e-2c -6.878249776795346e-3,-4.211713286444209e-19 -1.2454172922396778e-2,5.575923145601429e-3 -1.2454172922396778e-2 1.2454172922396775e-2c -8.423426572888418e-19,6.878249776795346e-3 5.575923145601429e-3,1.2454172922396778e-2 1.2454172922396773e-2 1.2454172922396778e-2c 6.878249776795346e-3,1.2635139859332626e-18 1.2454172922396778e-2,-5.5759231456014285e-3 1.245417292239678e-2 -1.2454172922396775e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.7317648233257684,-0.37741212486568976 c 0.0,-1.2800017747005005e-2 -1.0376464585571834e-2,-2.3176482332576843e-2 -2.317648233257684e-2 -2.3176482332576843e-2c -1.2800017747005005e-2,-7.837750381449498e-19 -2.3176482332576843e-2,1.0376464585571833e-2 -2.3176482332576843e-2 2.3176482332576836e-2c -1.5675500762898996e-18,1.2800017747005005e-2 1.0376464585571833e-2,2.3176482332576843e-2 2.3176482332576832e-2 2.3176482332576843e-2c 1.2800017747005005e-2,2.3513251144348493e-18 2.3176482332576843e-2,-1.037646458557183e-2 2.3176482332576846e-2 -2.3176482332576836e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.7048704776162736,-0.25972802116034777 c 0.0,-9.428903373168235e-3 -7.6436364281878945e-3,-1.7072539801356132e-2 -1.707253980135613e-2 -1.7072539801356132e-2c -9.428903373168235e-3,-5.77353816771008e-19 -1.7072539801356132e-2,7.643636428187894e-3 -1.7072539801356132e-2 1.7072539801356125e-2c -1.154707633542016e-18,9.428903373168235e-3 7.643636428187893e-3,1.7072539801356132e-2 1.7072539801356125e-2 1.7072539801356132e-2c 9.428903373168235e-3,1.7320614503130242e-18 1.7072539801356132e-2,-7.643636428187892e-3 1.707253980135614e-2 -1.7072539801356125e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.801050744670565,-0.3063994990916172 c 0.0,-3.1174825351266946e-2 -2.5272189274463976e-2,-5.644701462573093e-2 -5.6447014625730915e-2 -5.644701462573093e-2c -3.1174825351266946e-2,-1.908907504020341e-18 -5.644701462573093e-2,2.5272189274463973e-2 -5.644701462573093e-2 5.644701462573091e-2c -3.817815008040682e-18,3.1174825351266946e-2 2.5272189274463973e-2,5.644701462573093e-2 5.64470146257309e-2 5.644701462573093e-2c 3.1174825351266946e-2,5.726722512061023e-18 5.644701462573093e-2,-2.527218927446397e-2 5.644701462573094e-2 -5.644701462573091e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0837018413705573,0.3125921270093061 c 0.0,-0.483554438155668 -0.39199832390016864,-0.8755527620558368 -0.8755527620558365 -0.8755527620558368c -0.483554438155668,-2.960916974504178e-17 -0.8755527620558368,0.3919983239001686 -0.8755527620558368 0.8755527620558364c -5.921833949008356e-17,0.483554438155668 0.39199832390016853,0.8755527620558368 0.8755527620558363 0.8755527620558368c 0.483554438155668,8.882750923512535e-17 0.8755527620558368,-0.3919983239001685 0.875552762055837 -0.8755527620558364Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5224905072673962,-0.10722949730494183 c 0.0,-9.315873134806191e-3 -7.552007315741006e-3,-1.68678804505472e-2 -1.6867880450547195e-2 -1.68678804505472e-2c -9.315873134806191e-3,-5.70432710790161e-19 -1.68678804505472e-2,7.552007315741005e-3 -1.68678804505472e-2 1.686788045054719e-2c -1.140865421580322e-18,9.315873134806191e-3 7.552007315741004e-3,1.68678804505472e-2 1.686788045054719e-2 1.68678804505472e-2c 9.315873134806191e-3,1.7112981323704831e-18 1.68678804505472e-2,-7.552007315741003e-3 1.6867880450547205e-2 -1.686788045054719e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.4902368927062182,-0.1966498312203888 c 0.0,-8.088022903976172e-3 -6.55663803669645e-3,-1.4644660940672623e-2 -1.464466094067262e-2 -1.4644660940672623e-2c -8.088022903976172e-3,-4.95248568039245e-19 -1.4644660940672623e-2,6.556638036696449e-3 -1.4644660940672623e-2 1.4644660940672618e-2c -9.9049713607849e-19,8.088022903976172e-3 6.556638036696448e-3,1.4644660940672623e-2 1.4644660940672617e-2 1.4644660940672623e-2c 8.088022903976172e-3,1.4857457041177348e-18 1.4644660940672623e-2,-6.556638036696447e-3 1.4644660940672627e-2 -1.4644660940672618e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5717962664743185,-0.18076626707540638 c 0.0,-7.4347468253538745e-3 -6.02705313858085e-3,-1.3461799963934725e-2 -1.3461799963934722e-2 -1.3461799963934725e-2c -7.4347468253538745e-3,-4.552469451070284e-19 -1.3461799963934725e-2,6.027053138580849e-3 -1.3461799963934725e-2 1.346179996393472e-2c -9.104938902140567e-19,7.4347468253538745e-3 6.027053138580848e-3,1.3461799963934725e-2 1.346179996393472e-2 1.3461799963934725e-2c 7.4347468253538745e-3,1.3657408353210852e-18 1.3461799963934725e-2,-6.027053138580847e-3 1.3461799963934727e-2 -1.346179996393472e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5491241128486429,-0.16052615256058625 c 0.0,-2.0347873781454362e-2 -1.649521085502791e-2,-3.6843084636482275e-2 -3.684308463648227e-2 -3.6843084636482275e-2c -2.0347873781454362e-2,-1.2459479247956217e-18 -3.6843084636482275e-2,1.6495210855027906e-2 -3.6843084636482275e-2 3.684308463648226e-2c -2.4918958495912433e-18,2.0347873781454362e-2 1.6495210855027902e-2,3.6843084636482275e-2 3.684308463648226e-2 3.6843084636482275e-2c 2.0347873781454362e-2,3.737843774386865e-18 3.6843084636482275e-2,-1.6495210855027902e-2 3.6843084636482275e-2 -3.684308463648226e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.6904761904761905,-0.33671751485073687 c 0.0,-7.889782140439906e-2 -6.395932145274377e-2,-0.14285714285714285 -0.14285714285714282 -0.14285714285714285c -7.889782140439906e-2,-4.831098222129842e-18 -0.14285714285714285,6.395932145274376e-2 -0.14285714285714285 0.1428571428571428c -9.662196444259683e-18,7.889782140439906e-2 6.395932145274376e-2,0.14285714285714285 0.1428571428571428 0.14285714285714285c 7.889782140439906e-2,1.4493294666389525e-17 0.14285714285714285,-6.395932145274374e-2 0.1428571428571429 -0.1428571428571428Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 1.0,0.0 c 0.0,-0.13807118745769836 -0.11192881254230161,-0.25 -0.24999999999999994 -0.25c -0.13807118745769836,-8.454421888727224e-18 -0.25,0.1119288125423016 -0.25 0.24999999999999992c -1.6908843777454448e-17,0.13807118745769836 0.11192881254230158,0.25 0.2499999999999999 0.25c 0.13807118745769836,2.536326566618167e-17 0.25,-0.11192881254230157 0.25000000000000006 -0.24999999999999992Z" /></g><g fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.6266582861675103e-3"><path d="M 0.5,0.0 c 0.0,-0.2761423749153967 -0.22385762508460322,-0.5 -0.4999999999999999 -0.5c -0.2761423749153967,-1.6908843777454448e-17 -0.5,0.2238576250846032 -0.5 0.49999999999999983c -3.3817687554908895e-17,0.2761423749153967 0.22385762508460316,0.5 0.4999999999999998 0.5c 0.2761423749153967,5.072653133236334e-17 0.5,-0.22385762508460313 0.5000000000000001 -0.49999999999999983Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_colorBarsEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="200.0" font-size="1" viewBox="0 0 200 200"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M 200.00000000000003,200.0 l -2.220446049250313e-14,-200.0 h -200.0 l -2.220446049250313e-14,200.0 h 200.00000000000006 Z" /></clipPath><g transform="matrix(200.0,0.0,0.0,200.0,100.0,100.0)"><g><g stroke="rgb(148,148,148)" stroke-opacity="1.0" fill="rgb(148,148,148)" fill-opacity="1.0"><path d="M 0.5,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 h 0.25 Z" /></g><g stroke="rgb(255,177,89)" stroke-opacity="1.0" fill="rgb(255,177,89)" fill-opacity="1.0"><path d="M 0.25,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 h 0.25 Z" /></g></g><g stroke="rgb(89,89,255)" stroke-opacity="1.0" fill="rgb(89,89,255)" fill-opacity="1.0"><path d="M 2.7755575615628914e-17,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 h 0.25 Z" /></g><g stroke="rgb(255,255,89)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0"><path d="M -0.24999999999999997,0.5 l -2.7755575615628914e-17,-1.0 h -0.25 l -2.7755575615628914e-17,1.0 h 0.25 Z" /></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_ensquareEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="100.0" font-size="1" viewBox="0 0 200 100"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(100.0,0.0,0.0,100.0,50.0,50.0)"><g><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1104899379850617,0.13228727693161313 l -0.11048993798506163,0.19137418631526112 l -0.11048993798506163,-0.19137418631526107 l 0.22097987597012325,-5.551115123125783e-17 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.0990867003435452,7.863926177779756e-2 l 5.890173781772905e-2,2.622474329097557e-2 l -6.73957501115411e-3,6.412277292269172e-2 l -6.306702424435173e-2,1.340530982813936e-2 l -3.223798954116893e-2,-5.5837835819178595e-2 l 4.3142850978945727e-2,-4.7914990222628066e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0780643589287613,8.310769838717735e-2 c -2.467849394946079e-3,-1.1610318569121465e-2 4.943586236282656e-3,-2.3022928629217634e-2 1.655390480540412e-2 -2.549077802416371e-2c 1.1610318569121465e-2,-2.46784939494608e-3 2.3022928629217634e-2,4.943586236282656e-3 2.549077802416371e-2 1.6553904805404116e-2c 2.4678493949460804e-3,1.1610318569121465e-2 -4.943586236282654e-3,2.3022928629217634e-2 -1.6553904805404113e-2 2.549077802416371e-2c -1.1610318569121465e-2,2.4678493949460813e-3 -2.3022928629217634e-2,-4.943586236282652e-3 -2.549077802416372e-2 -1.6553904805404116e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0536973243608814,0.1479285096413229 c -1.1804676534021863e-2,-1.2407214996670356e-3 -2.0368454136846254e-2,-1.1816106110593416e-2 -1.9127732637179217e-2 -2.3620782644615278e-2c 1.240721499667035e-3,-1.1804676534021863e-2 1.1816106110593414e-2,-2.0368454136846254e-2 2.3620782644615274e-2 -1.9127732637179217e-2c 1.1804676534021863e-2,1.240721499667034e-3 2.0368454136846254e-2,1.1816106110593414e-2 1.9127732637179217e-2 2.362078264461527e-2c -1.2407214996670334e-3,1.1804676534021863e-2 -1.1816106110593413e-2,2.0368454136846254e-2 -2.3620782644615274e-2 1.912773263717922e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1078157515116782,0.19113366891659608 c -4.8278419292777375e-3,1.0843510511754495e-2 -1.7531983191147044e-2,1.5720173438195578e-2 -2.8375493702901537e-2 1.0892331508917842e-2c -1.0843510511754495e-2,-4.827841929277737e-3 -1.5720173438195578e-2,-1.7531983191147044e-2 -1.0892331508917844e-2 -2.8375493702901534e-2c 4.827841929277736e-3,-1.0843510511754495e-2 1.753198319114704e-2,-1.572017343819558e-2 2.837549370290153e-2 -1.0892331508917844e-2c 1.0843510511754497e-2,4.827841929277736e-3 1.572017343819558e-2,1.753198319114704e-2 1.089233150891785e-2 2.8375493702901537e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1656298134764354,0.15301511458392214 c 8.820906129416353e-3,7.942379553298082e-3 9.533092634525531e-3,2.153170760444158e-2 1.5907130812274507e-3 3.0352613733857933e-2c -7.942379553298082e-3,8.820906129416353e-3 -2.1531707604441577e-2,9.533092634525533e-3 -3.0352613733857926e-2 1.5907130812274524e-3c -8.820906129416354e-3,-7.94237955329808e-3 -9.533092634525533e-3,-2.1531707604441577e-2 -1.5907130812274541e-3 -3.0352613733857926e-2c 7.94237955329808e-3,-8.820906129416354e-3 2.1531707604441577e-2,-9.533092634525533e-3 3.0352613733857933e-2 -1.5907130812274559e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1472424416475513,8.625139312904692e-2 c 1.0279461728829323e-2,-5.934849996264074e-3 2.3423758457185105e-2,-2.412846302826104e-3 2.9358608453449175e-2 7.86661542600322e-3c 5.9348499962640746e-3,1.0279461728829323e-2 2.412846302826104e-3,2.3423758457185105e-2 -7.866615426003216e-3 2.9358608453449175e-2c -1.0279461728829323e-2,5.9348499962640746e-3 -2.34237584571851e-2,2.412846302826106e-3 -2.9358608453449175e-2 -7.866615426003216e-3c -5.934849996264075e-3,-1.0279461728829322e-2 -2.412846302826106e-3,-2.34237584571851e-2 7.866615426003216e-3 -2.935860845344918e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.8487511368498798,0.16898677799146491 l -6.739575011154141e-3,-6.412277292269171e-2 l 5.890173781772902e-2,-2.6224743290975596e-2 l 4.314285097894575e-2,4.7914990222628025e-2 l -3.223798954116888e-2,5.5837835819178616e-2 l -6.306702424435173e-2,-1.3405309828139332e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.863132087176195,0.18495844139900763 c -8.820906129416346e-3,7.942379553298089e-3 -2.2410234180559842e-2,7.230193048188928e-3 -3.0352613733857933e-2 -1.590713081227416e-3c -7.942379553298089e-3,-8.820906129416346e-3 -7.230193048188929e-3,-2.2410234180559842e-2 1.5907130812274125e-3 -3.035261373385793e-2c 8.820906129416344e-3,-7.94237955329809e-3 2.2410234180559842e-2,-7.23019304818893e-3 3.0352613733857926e-2 1.5907130812274125e-3c 7.94237955329809e-3,8.820906129416344e-3 7.2301930481889305e-3,2.2410234180559842e-2 -1.5907130812274073e-3 3.0352613733857933e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9314520737001412,0.1736505067226124 c 4.827841929277749e-3,1.084351051175449e-2 -4.882099716331696e-5,2.35476517736238e-2 -1.0892331508917805e-2 2.837549370290155e-2c -1.084351051175449e-2,4.82784192927775e-3 -2.35476517736238e-2,-4.882099716331523e-5 -2.8375493702901548e-2 -1.0892331508917802e-2c -4.8278419292777505e-3,-1.084351051175449e-2 4.882099716331523e-5,-2.35476517736238e-2 1.0892331508917798e-2 -2.8375493702901548e-2c 1.0843510511754488e-2,-4.8278419292777505e-3 2.35476517736238e-2,4.882099716331349e-5 2.8375493702901555e-2 1.0892331508917798e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9418096256316824,0.10517999435952839 c 1.1804676534021862e-2,-1.2407214996670482e-3 2.238006114494825e-2,7.323056103157328e-3 2.36207826446153e-2 1.9127732637179186e-2c 1.2407214996670488e-3,1.1804676534021862e-2 -7.323056103157326e-3,2.238006114494825e-2 -1.9127732637179186e-2 2.36207826446153e-2c -1.1804676534021862e-2,1.2407214996670497e-3 -2.238006114494825e-2,-7.323056103157326e-3 -2.36207826446153e-2 -1.912773263717918e-2c -1.2407214996670503e-3,-1.1804676534021862e-2 7.323056103157324e-3,-2.238006114494825e-2 1.9127732637179186e-2 -2.3620782644615305e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8798909582416709,7.417082516841784e-2 c 2.4678493949460666e-3,-1.1610318569121465e-2 1.3880459455042224e-2,-1.9021754200350214e-2 2.5490778024163687e-2 -1.6553904805404147e-2c 1.1610318569121465e-2,2.4678493949460657e-3 1.9021754200350214e-2,1.3880459455042224e-2 1.6553904805404147e-2 2.5490778024163684e-2c -2.4678493949460653e-3,1.1610318569121465e-2 -1.388045945504222e-2,1.9021754200350214e-2 -2.549077802416368e-2 1.6553904805404147e-2c -1.1610318569121465e-2,-2.4678493949460644e-3 -1.9021754200350214e-2,-1.388045945504222e-2 -1.655390480540415e-2 -2.5490778024163684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8312655653250026,0.12347661700849943 c -1.0279461728829329e-2,-5.934849996264065e-3 -1.380146542226731e-2,-1.907914672461984e-2 -7.866615426003247e-3 -2.935860845344917e-2c 5.934849996264064e-3,-1.0279461728829329e-2 1.907914672461984e-2,-1.3801465422267312e-2 2.935860845344916e-2 -7.866615426003249e-3c 1.0279461728829329e-2,5.934849996264064e-3 1.3801465422267314e-2,1.9079146724619838e-2 7.86661542600325e-3 2.935860845344916e-2c -5.934849996264063e-3,1.027946172882933e-2 -1.9079146724619835e-2,1.3801465422267314e-2 -2.9358608453449165e-2 7.866615426003254e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.052162162806575,0.340609977340838 l -5.21621628065749e-2,3.7898029631716124e-2 l -5.2162162806574895e-2,-3.789802963171614e-2 l 1.9924173265406006e-2,-6.1320300050767364e-2 l 6.447597908233779e-2,2.38609055041538e-18 l 1.9924173265406006e-2,6.132030005076738e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0588035538950435,0.32016987732391544 c 1.1288755524362419e-2,3.667939015823378e-3 1.7466647944277176e-2,1.5792735581028707e-2 1.37987089284538e-2 2.7081491105391126e-2c -3.667939015823377e-3,1.1288755524362419e-2 -1.5792735581028707e-2,1.7466647944277176e-2 -2.7081491105391122e-2 1.37987089284538e-2c -1.1288755524362419e-2,-3.6679390158233767e-3 -1.7466647944277176e-2,-1.5792735581028703e-2 -1.37987089284538e-2 -2.708149110539112e-2c 3.667939015823376e-3,-1.1288755524362419e-2 1.5792735581028703e-2,-1.7466647944277176e-2 2.7081491105391122e-2 -1.3798708928453807e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0148506019389771,0.2666570007461652 c 6.976834604744115e-3,-9.60278901208745e-3 2.041727513400957e-2,-1.1731545663030377e-2 3.0020064146097016e-2 -4.754711058286265e-3c 9.60278901208745e-3,6.9768346047441145e-3 1.1731545663030378e-2,2.0417275134009566e-2 4.754711058286265e-3 3.0020064146097016e-2c -6.9768346047441145e-3,9.60278901208745e-3 -2.0417275134009566e-2,1.173154566303038e-2 -3.0020064146097016e-2 4.7547110582862664e-3c -9.602789012087451e-3,-6.976834604744114e-3 -1.173154566303038e-2,-2.0417275134009566e-2 -4.7547110582862664e-3 -3.0020064146097016e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9503746228566395,0.29192235383397597 c -6.976834604744118e-3,-9.602789012087446e-3 -4.848077953801199e-3,-2.30432295413529e-2 4.754711058286246e-3 -3.0020064146097016e-2c 9.602789012087446e-3,-6.976834604744119e-3 2.30432295413529e-2,-4.8480779538012005e-3 3.0020064146097016e-2 4.754711058286242e-3c 6.976834604744119e-3,9.602789012087446e-3 4.848077953801201e-3,2.30432295413529e-2 -4.754711058286242e-3 3.0020064146097016e-2c -9.602789012087444e-3,6.97683460474412e-3 -2.30432295413529e-2,4.848077953801202e-3 -3.002006414609702e-2 -4.754711058286242e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9544792282818937,0.36105007735776046 c -1.1288755524362419e-2,3.6679390158233806e-3 -2.3413552089567753e-2,-2.509953404091371e-3 -2.7081491105391133e-2 -1.379870892845379e-2c -3.6679390158233815e-3,-1.1288755524362419e-2 2.5099534040913694e-3,-2.3413552089567753e-2 1.3798708928453786e-2 -2.7081491105391133e-2c 1.1288755524362419e-2,-3.667939015823382e-3 2.341355208956775e-2,2.5099534040913677e-3 2.7081491105391133e-2 1.3798708928453782e-2c 3.667939015823383e-3,1.1288755524362419e-2 -2.5099534040913677e-3,2.341355208956775e-2 -1.3798708928453786e-2 2.7081491105391136e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.021491993027446,0.3785080069725541 c 0.0,1.1869699992528135e-2 -9.622293034917797e-3,2.1491993027445935e-2 -2.1491993027445932e-2 2.1491993027445935e-2c -1.1869699992528135e-2,7.268095051344471e-19 -2.1491993027445935e-2,-9.622293034917797e-3 -2.1491993027445935e-2 -2.149199302744593e-2c -1.4536190102688943e-18,-1.1869699992528135e-2 9.622293034917795e-3,-2.1491993027445935e-2 2.1491993027445925e-2 -2.1491993027445935e-2c 1.1869699992528135e-2,-2.1804285154033415e-18 2.1491993027445935e-2,9.622293034917793e-3 2.1491993027445946e-2 2.149199302744593e-2Z" /></g></g></g><g></g><g fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1104899379850617,-0.13228727693161313 l -0.11048993798506163,-0.19137418631526112 l -0.11048993798506163,0.19137418631526107 l 0.22097987597012325,5.551115123125783e-17 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.0990867003435452,-7.863926177779756e-2 l 5.890173781772905e-2,-2.622474329097557e-2 l -6.73957501115411e-3,-6.412277292269172e-2 l -6.306702424435173e-2,-1.340530982813936e-2 l -3.223798954116893e-2,5.5837835819178595e-2 l 4.3142850978945727e-2,4.7914990222628066e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0780643589287613,-8.310769838717735e-2 c -2.467849394946079e-3,1.1610318569121465e-2 4.943586236282656e-3,2.3022928629217634e-2 1.655390480540412e-2 2.549077802416371e-2c 1.1610318569121465e-2,2.46784939494608e-3 2.3022928629217634e-2,-4.943586236282656e-3 2.549077802416371e-2 -1.6553904805404116e-2c 2.4678493949460804e-3,-1.1610318569121465e-2 -4.943586236282654e-3,-2.3022928629217634e-2 -1.6553904805404113e-2 -2.549077802416371e-2c -1.1610318569121465e-2,-2.4678493949460813e-3 -2.3022928629217634e-2,4.943586236282652e-3 -2.549077802416372e-2 1.6553904805404116e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0536973243608814,-0.1479285096413229 c -1.1804676534021863e-2,1.2407214996670356e-3 -2.0368454136846254e-2,1.1816106110593416e-2 -1.9127732637179217e-2 2.3620782644615278e-2c 1.240721499667035e-3,1.1804676534021863e-2 1.1816106110593414e-2,2.0368454136846254e-2 2.3620782644615274e-2 1.9127732637179217e-2c 1.1804676534021863e-2,-1.240721499667034e-3 2.0368454136846254e-2,-1.1816106110593414e-2 1.9127732637179217e-2 -2.362078264461527e-2c -1.2407214996670334e-3,-1.1804676534021863e-2 -1.1816106110593413e-2,-2.0368454136846254e-2 -2.3620782644615274e-2 -1.912773263717922e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1078157515116782,-0.19113366891659608 c -4.8278419292777375e-3,-1.0843510511754495e-2 -1.7531983191147044e-2,-1.5720173438195578e-2 -2.8375493702901537e-2 -1.0892331508917842e-2c -1.0843510511754495e-2,4.827841929277737e-3 -1.5720173438195578e-2,1.7531983191147044e-2 -1.0892331508917844e-2 2.8375493702901534e-2c 4.827841929277736e-3,1.0843510511754495e-2 1.753198319114704e-2,1.572017343819558e-2 2.837549370290153e-2 1.0892331508917844e-2c 1.0843510511754497e-2,-4.827841929277736e-3 1.572017343819558e-2,-1.753198319114704e-2 1.089233150891785e-2 -2.8375493702901537e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1656298134764354,-0.15301511458392214 c 8.820906129416353e-3,-7.942379553298082e-3 9.533092634525531e-3,-2.153170760444158e-2 1.5907130812274507e-3 -3.0352613733857933e-2c -7.942379553298082e-3,-8.820906129416353e-3 -2.1531707604441577e-2,-9.533092634525533e-3 -3.0352613733857926e-2 -1.5907130812274524e-3c -8.820906129416354e-3,7.94237955329808e-3 -9.533092634525533e-3,2.1531707604441577e-2 -1.5907130812274541e-3 3.0352613733857926e-2c 7.94237955329808e-3,8.820906129416354e-3 2.1531707604441577e-2,9.533092634525533e-3 3.0352613733857933e-2 1.5907130812274559e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1472424416475513,-8.625139312904692e-2 c 1.0279461728829323e-2,5.934849996264074e-3 2.3423758457185105e-2,2.412846302826104e-3 2.9358608453449175e-2 -7.86661542600322e-3c 5.9348499962640746e-3,-1.0279461728829323e-2 2.412846302826104e-3,-2.3423758457185105e-2 -7.866615426003216e-3 -2.9358608453449175e-2c -1.0279461728829323e-2,-5.9348499962640746e-3 -2.34237584571851e-2,-2.412846302826106e-3 -2.9358608453449175e-2 7.866615426003216e-3c -5.934849996264075e-3,1.0279461728829322e-2 -2.412846302826106e-3,2.34237584571851e-2 7.866615426003216e-3 2.935860845344918e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.8487511368498798,-0.16898677799146491 l -6.739575011154141e-3,6.412277292269171e-2 l 5.890173781772902e-2,2.6224743290975596e-2 l 4.314285097894575e-2,-4.7914990222628025e-2 l -3.223798954116888e-2,-5.5837835819178616e-2 l -6.306702424435173e-2,1.3405309828139332e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.863132087176195,-0.18495844139900763 c -8.820906129416346e-3,-7.942379553298089e-3 -2.2410234180559842e-2,-7.230193048188928e-3 -3.0352613733857933e-2 1.590713081227416e-3c -7.942379553298089e-3,8.820906129416346e-3 -7.230193048188929e-3,2.2410234180559842e-2 1.5907130812274125e-3 3.035261373385793e-2c 8.820906129416344e-3,7.94237955329809e-3 2.2410234180559842e-2,7.23019304818893e-3 3.0352613733857926e-2 -1.5907130812274125e-3c 7.94237955329809e-3,-8.820906129416344e-3 7.2301930481889305e-3,-2.2410234180559842e-2 -1.5907130812274073e-3 -3.0352613733857933e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9314520737001412,-0.1736505067226124 c 4.827841929277749e-3,-1.084351051175449e-2 -4.882099716331696e-5,-2.35476517736238e-2 -1.0892331508917805e-2 -2.837549370290155e-2c -1.084351051175449e-2,-4.82784192927775e-3 -2.35476517736238e-2,4.882099716331523e-5 -2.8375493702901548e-2 1.0892331508917802e-2c -4.8278419292777505e-3,1.084351051175449e-2 4.882099716331523e-5,2.35476517736238e-2 1.0892331508917798e-2 2.8375493702901548e-2c 1.0843510511754488e-2,4.8278419292777505e-3 2.35476517736238e-2,-4.882099716331349e-5 2.8375493702901555e-2 -1.0892331508917798e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9418096256316824,-0.10517999435952839 c 1.1804676534021862e-2,1.2407214996670482e-3 2.238006114494825e-2,-7.323056103157328e-3 2.36207826446153e-2 -1.9127732637179186e-2c 1.2407214996670488e-3,-1.1804676534021862e-2 -7.323056103157326e-3,-2.238006114494825e-2 -1.9127732637179186e-2 -2.36207826446153e-2c -1.1804676534021862e-2,-1.2407214996670497e-3 -2.238006114494825e-2,7.323056103157326e-3 -2.36207826446153e-2 1.912773263717918e-2c -1.2407214996670503e-3,1.1804676534021862e-2 7.323056103157324e-3,2.238006114494825e-2 1.9127732637179186e-2 2.3620782644615305e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8798909582416709,-7.417082516841784e-2 c 2.4678493949460666e-3,1.1610318569121465e-2 1.3880459455042224e-2,1.9021754200350214e-2 2.5490778024163687e-2 1.6553904805404147e-2c 1.1610318569121465e-2,-2.4678493949460657e-3 1.9021754200350214e-2,-1.3880459455042224e-2 1.6553904805404147e-2 -2.5490778024163684e-2c -2.4678493949460653e-3,-1.1610318569121465e-2 -1.388045945504222e-2,-1.9021754200350214e-2 -2.549077802416368e-2 -1.6553904805404147e-2c -1.1610318569121465e-2,2.4678493949460644e-3 -1.9021754200350214e-2,1.388045945504222e-2 -1.655390480540415e-2 2.5490778024163684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8312655653250026,-0.12347661700849943 c -1.0279461728829329e-2,5.934849996264065e-3 -1.380146542226731e-2,1.907914672461984e-2 -7.866615426003247e-3 2.935860845344917e-2c 5.934849996264064e-3,1.0279461728829329e-2 1.907914672461984e-2,1.3801465422267312e-2 2.935860845344916e-2 7.866615426003249e-3c 1.0279461728829329e-2,-5.934849996264064e-3 1.3801465422267314e-2,-1.9079146724619838e-2 7.86661542600325e-3 -2.935860845344916e-2c -5.934849996264063e-3,-1.027946172882933e-2 -1.9079146724619835e-2,-1.3801465422267314e-2 -2.9358608453449165e-2 -7.866615426003254e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.052162162806575,-0.340609977340838 l -5.21621628065749e-2,-3.7898029631716124e-2 l -5.2162162806574895e-2,3.789802963171614e-2 l 1.9924173265406006e-2,6.1320300050767364e-2 l 6.447597908233779e-2,-2.38609055041538e-18 l 1.9924173265406006e-2,-6.132030005076738e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0588035538950435,-0.32016987732391544 c 1.1288755524362419e-2,-3.667939015823378e-3 1.7466647944277176e-2,-1.5792735581028707e-2 1.37987089284538e-2 -2.7081491105391126e-2c -3.667939015823377e-3,-1.1288755524362419e-2 -1.5792735581028707e-2,-1.7466647944277176e-2 -2.7081491105391122e-2 -1.37987089284538e-2c -1.1288755524362419e-2,3.6679390158233767e-3 -1.7466647944277176e-2,1.5792735581028703e-2 -1.37987089284538e-2 2.708149110539112e-2c 3.667939015823376e-3,1.1288755524362419e-2 1.5792735581028703e-2,1.7466647944277176e-2 2.7081491105391122e-2 1.3798708928453807e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0148506019389771,-0.2666570007461652 c 6.976834604744115e-3,9.60278901208745e-3 2.041727513400957e-2,1.1731545663030377e-2 3.0020064146097016e-2 4.754711058286265e-3c 9.60278901208745e-3,-6.9768346047441145e-3 1.1731545663030378e-2,-2.0417275134009566e-2 4.754711058286265e-3 -3.0020064146097016e-2c -6.9768346047441145e-3,-9.60278901208745e-3 -2.0417275134009566e-2,-1.173154566303038e-2 -3.0020064146097016e-2 -4.7547110582862664e-3c -9.602789012087451e-3,6.976834604744114e-3 -1.173154566303038e-2,2.0417275134009566e-2 -4.7547110582862664e-3 3.0020064146097016e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9503746228566395,-0.29192235383397597 c -6.976834604744118e-3,9.602789012087446e-3 -4.848077953801199e-3,2.30432295413529e-2 4.754711058286246e-3 3.0020064146097016e-2c 9.602789012087446e-3,6.976834604744119e-3 2.30432295413529e-2,4.8480779538012005e-3 3.0020064146097016e-2 -4.754711058286242e-3c 6.976834604744119e-3,-9.602789012087446e-3 4.848077953801201e-3,-2.30432295413529e-2 -4.754711058286242e-3 -3.0020064146097016e-2c -9.602789012087444e-3,-6.97683460474412e-3 -2.30432295413529e-2,-4.848077953801202e-3 -3.002006414609702e-2 4.754711058286242e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9544792282818937,-0.36105007735776046 c -1.1288755524362419e-2,-3.6679390158233806e-3 -2.3413552089567753e-2,2.509953404091371e-3 -2.7081491105391133e-2 1.379870892845379e-2c -3.6679390158233815e-3,1.1288755524362419e-2 2.5099534040913694e-3,2.3413552089567753e-2 1.3798708928453786e-2 2.7081491105391133e-2c 1.1288755524362419e-2,3.667939015823382e-3 2.341355208956775e-2,-2.5099534040913677e-3 2.7081491105391133e-2 -1.3798708928453782e-2c 3.667939015823383e-3,-1.1288755524362419e-2 -2.5099534040913677e-3,-2.341355208956775e-2 -1.3798708928453786e-2 -2.7081491105391136e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.021491993027446,-0.3785080069725541 c 0.0,-1.1869699992528135e-2 -9.622293034917797e-3,-2.1491993027445935e-2 -2.1491993027445932e-2 -2.1491993027445935e-2c -1.1869699992528135e-2,-7.268095051344471e-19 -2.1491993027445935e-2,9.622293034917797e-3 -2.1491993027445935e-2 2.149199302744593e-2c -1.4536190102688943e-18,1.1869699992528135e-2 9.622293034917795e-3,2.1491993027445935e-2 2.1491993027445925e-2 2.1491993027445935e-2c 1.1869699992528135e-2,2.1804285154033415e-18 2.1491993027445935e-2,-9.622293034917793e-3 2.1491993027445946e-2 -2.149199302744593e-2Z" /></g></g></g></g><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><path d="M 0.4,5.684341886080803e-17 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.40000000000000013 -0.39999999999999997Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_factorDiagram'Ex.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="88.71119695091166" height="200.0" font-size="1" viewBox="0 0 89 200"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(3.27066542773286,0.0,0.0,3.27066542773286,44.35559847545583,100.0)"><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.708203932499362,19.52139491384038 l -9.70820393249937,7.053423027509675 l -9.708203932499368,-7.053423027509677 l 3.7082039324993694,-11.412678195541842 h 12.0 l 3.7082039324993694,11.412678195541844 Z" /></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 10.635254915624207,16.668225364954914 l 2.007391819076574,2.2294344764321834 l -0.9270509831248436,2.8531695488854605 l -2.934442802201417,0.6237350724532773 l -2.007391819076574,-2.2294344764321825 l 0.9270509831248417,-2.85316954888546 l 2.934442802201419,-0.6237350724532784 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 11.268507802572689,16.770858269286407 c 0.41042755402683134,-0.3695506295370292 1.0427248022992233,-0.3364133349082955 1.4122754318362525 7.401421911853578e-2c 0.3695506295370292,0.41042755402683134 0.33641333490829556,1.0427248022992233 -7.401421911853567e-2 1.4122754318362523c -0.4104275540268313,0.3695506295370293 -1.0427248022992233,0.3364133349082956 -1.4122754318362523 -7.401421911853556e-2c -0.3695506295370293,-0.4104275540268313 -0.33641333490829567,-1.0427248022992233 7.401421911853534e-2 -1.4122754318362525Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.106321259312278,16.794863802456717 c -0.11482645615018389,-0.5402160029688606 0.23001990694718472,-1.0712328354013816 0.7702359099160452 -1.1860592915515655c 0.5402160029688606,-0.11482645615018391 1.0712328354013816,0.23001990694718466 1.1860592915515655 0.7702359099160451c 0.11482645615018396,0.5402160029688606 -0.2300199069471846,1.0712328354013816 -0.770235909916045 1.1860592915515655c -0.5402160029688606,0.11482645615018398 -1.0712328354013816,-0.23001990694718455 -1.1860592915515658 -0.7702359099160451Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.546017389238956,19.54540044701069 c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202066 -1.2600735106701006c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701004 -0.6420395219202066c 0.5252540101770149,0.17066537343183133 0.8127048953520379,0.7348195004930858 0.6420395219202066 1.2600735106701002c -0.1706653734318313,0.5252540101770149 -0.7348195004930856,0.8127048953520379 -1.2600735106701004 0.6420395219202071Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.147900062426041,22.271931558394343 c -0.4104275540268312,0.3695506295370293 -1.042724802299223,0.3364133349082958 -1.4122754318362523 -7.401421911853534e-2c -0.3695506295370293,-0.4104275540268312 -0.33641333490829584,-1.042724802299223 7.401421911853523e-2 -1.4122754318362523c 0.4104275540268311,-0.36955062953702933 1.0427248022992228,-0.3364133349082959 1.412275431836252 7.401421911853512e-2c 0.36955062953702933,0.4104275540268311 0.3364133349082959,1.0427248022992228 -7.401421911853512e-2 1.4122754318362525Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 11.310086605686449,22.247926025224032 c 0.11482645615018368,0.5402160029688606 -0.23001990694718516,1.0712328354013816 -0.7702359099160456 1.1860592915515653c -0.5402160029688606,0.1148264561501837 -1.0712328354013816,-0.2300199069471851 -1.1860592915515653 -0.7702359099160456c -0.11482645615018375,-0.5402160029688606 0.23001990694718505,-1.0712328354013816 0.7702359099160454 -1.186059291551565c 0.5402160029688606,-0.11482645615018378 1.0712328354013816,0.230019906947185 1.1860592915515655 0.7702359099160454Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 12.870390475759772,19.497389380670064 c 0.5252540101770149,0.17066537343183144 0.8127048953520379,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.1706653734318314,0.5252540101770149 -0.7348195004930859,0.8127048953520379 -1.2600735106701006 0.6420395219202065c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202065 -1.2600735106701004c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 3.5729490168751514,6.345360961421112 l 2.7406363729278036,-1.2202099292273996 l 2.4270509831248415,1.7633557568774207 l -0.313585389802961,2.9835656861048196 l -2.7406363729278023,1.2202099292273998 l -2.427050983124842,-1.7633557568774187 l 0.31358538980296036,-2.983565686104822 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.8662446131299903,5.77481698844653 c -0.22463444516813508,-0.5045372245332016 2.2715900335990025e-3,-1.095647655550266 0.5068088145668005 -1.3202821007184011c 0.5045372245332016,-0.2246344451681351 1.095647655550266,2.271590033598947e-3 1.3202821007184011 0.5068088145668004c 0.22463444516813513,0.5045372245332016 -2.2715900335988914e-3,1.095647655550266 -0.5068088145668003 1.3202821007184011c -0.5045372245332016,0.22463444516813516 -1.095647655550266,-2.271590033598836e-3 -1.3202821007184014 -0.5068088145668004Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.9119058506275195,8.789653223863848 c -0.5492592761847135,-5.772947618597291e-2 -0.9477229082865937,-0.5497910824512127 -0.8899934321006208 -1.0990503586359262c 5.772947618597288e-2,-0.5492592761847135 0.5497910824512127,-0.9477229082865937 1.099050358635926 -0.8899934321006208c 0.5492592761847135,5.772947618597284e-2 0.9477229082865937,0.5497910824512127 0.8899934321006208 1.099050358635926c -5.772947618597281e-2,0.5492592761847135 -0.5497910824512126,0.9477229082865937 -1.099050358635926 0.8899934321006211Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 5.045661237497521,11.12355295371585 c -0.32462483101657824,0.4468077483472284 -0.9499944983201921,0.545856573099053 -1.3968022466674204 0.22123174208247487c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247498 -1.3968022466674204c 0.3246248310165782,-0.4468077483472285 0.949994498320192,-0.5458565730990531 1.3968022466674204 -0.22123174208247498c 0.4468077483472285,0.3246248310165782 0.5458565730990532,0.949994498320192 0.22123174208247498 1.3968022466674204Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.133755386869995,10.442616448150533 c 0.22463444516813524,0.5045372245332015 -2.271590033598614e-3,1.095647655550266 -0.5068088145667999 1.3202821007184011c -0.5045372245332015,0.22463444516813527 -1.095647655550266,-2.271590033598614e-3 -1.3202821007184011 -0.5068088145667999c -0.2246344451681353,-0.5045372245332015 2.2715900335985584e-3,-1.0956476555502659 0.5068088145667997 -1.3202821007184011c 0.5045372245332015,-0.22463444516813533 1.0956476555502659,2.271590033598503e-3 1.3202821007184014 0.5068088145667999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 9.088094149372468,7.427780212733219 c 0.5492592761847134,5.772947618597309e-2 0.9477229082865933,0.549791082451213 0.8899934321006203 1.0990503586359264c -5.772947618597306e-2,0.5492592761847134 -0.5497910824512129,0.9477229082865933 -1.0990503586359262 0.8899934321006203c -0.5492592761847134,-5.7729476185973023e-2 -0.9477229082865933,-0.5497910824512129 -0.8899934321006203 -1.0990503586359262c 5.772947618597299e-2,-0.5492592761847134 0.5497910824512129,-0.9477229082865934 1.0990503586359262 -0.8899934321006204Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.954338762502465,5.093880482881216 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -8.42705098312485,9.872072475175953 l -0.31358538980295925,-2.9835656861048205 l 2.4270509831248432,-1.763355756877418 l 2.7406363729278023,1.2202099292274013 l 0.3135853898029597,2.983565686104819 l -2.4270509831248415,1.763355756877419 l -2.7406363729278045,-1.2202099292274007 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.879037222837173,9.416824003469769 c -0.5492592761847134,5.772947618597328e-2 -1.0413208824499534,-0.34073415591590633 -1.0990503586359268 -0.8899934321006195c -5.7729476185973315e-2,-0.5492592761847134 0.3407341559159063,-1.0413208824499534 0.8899934321006195 -1.0990503586359268c 0.5492592761847134,-5.772947618597335e-2 1.0413208824499534,0.3407341559159062 1.0990503586359268 0.8899934321006193c 5.7729476185973384e-2,0.5492592761847134 -0.34073415591590617,1.0413208824499534 -0.8899934321006195 1.099050358635927Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -6.306664471584804,11.256089734302137 c -0.22463444516813472,0.5045372245332017 -0.815744876185199,0.7314432597349363 -1.3202821007184005 0.5068088145668017c -0.5045372245332017,-0.2246344451681347 -0.7314432597349364,-0.8157448761851989 -0.5068088145668017 -1.3202821007184005c 0.22463444516813466,-0.5045372245332017 0.8157448761851989,-0.7314432597349364 1.3202821007184005 -0.5068088145668017c 0.5045372245332017,0.22463444516813463 0.7314432597349364,0.8157448761851989 0.5068088145668017 1.3202821007184005Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.4276272487476387,9.947982449130903 c 0.32462483101657846,0.44680774834722814 0.22557600626475438,1.0721774156508421 -0.22123174208247365 1.3968022466674204c -0.44680774834722814,0.32462483101657846 -1.0721774156508421,0.22557600626475444 -1.3968022466674204 -0.22123174208247365c -0.3246248310165785,-0.4468077483472281 -0.2255760062647545,-1.0721774156508421 0.22123174208247354 -1.3968022466674204c 0.4468077483472281,-0.3246248310165785 1.072177415650842,-0.2255760062647545 1.3968022466674204 0.22123174208247365Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.1209627771628403,6.8006094331273 c 0.5492592761847134,-5.7729476185973495e-2 1.0413208824499536,0.34073415591590595 1.099050358635927 0.8899934321006192c 5.772947618597353e-2,0.5492592761847134 -0.3407341559159059,1.0413208824499536 -0.8899934321006191 1.099050358635927c -0.5492592761847134,5.7729476185973565e-2 -1.0413208824499536,-0.34073415591590583 -1.099050358635927 -0.889993432100619c -5.77294761859736e-2,-0.5492592761847134 0.3407341559159058,-1.0413208824499536 0.8899934321006191 -1.0990503586359273Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -5.693335528415207,4.961343702294931 c 0.22463444516813488,-0.5045372245332016 0.8157448761851992,-0.731443259734936 1.3202821007184007 -0.5068088145668012c 0.5045372245332016,0.22463444516813486 0.7314432597349361,0.8157448761851991 0.5068088145668012 1.3202821007184005c -0.22463444516813483,0.5045372245332016 -0.8157448761851991,0.7314432597349361 -1.3202821007184005 0.5068088145668013c -0.5045372245332016,-0.2246344451681348 -0.7314432597349361,-0.8157448761851991 -0.5068088145668015 -1.3202821007184005Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.572372751252372,6.269450987466167 c -0.3246248310165784,-0.44680774834722825 -0.22557600626475421,-1.0721774156508421 0.22123174208247387 -1.3968022466674204c 0.44680774834722825,-0.3246248310165784 1.0721774156508421,-0.22557600626475427 1.3968022466674204 0.22123174208247387c 0.32462483101657846,0.4468077483472282 0.22557600626475433,1.0721774156508421 -0.22123174208247376 1.3968022466674204c -0.4468077483472282,0.32462483101657846 -1.0721774156508421,0.22557600626475438 -1.3968022466674204 -0.22123174208247387Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -8.781152949374533,22.374564462725836 l -2.9344428022014166,-0.6237350724532794 l -0.9270509831248405,-2.853169548885461 l 2.0073918190765756,-2.2294344764321816 l 2.9344428022014157,0.6237350724532786 l 0.9270509831248419,2.8531695488854596 l -2.007391819076576,2.2294344764321834 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -9.353791404218846,22.66374940685955 c -0.11482645615018353,0.5402160029688606 -0.6458432885827042,0.8850623660662298 -1.1860592915515649 0.7702359099160463c -0.5402160029688606,-0.1148264561501835 -0.8850623660662298,-0.6458432885827041 -0.7702359099160463 -1.1860592915515646c 0.11482645615018346,-0.5402160029688606 0.6458432885827041,-0.8850623660662298 1.1860592915515644 -0.7702359099160463c 0.5402160029688606,0.11482645615018343 0.8850623660662298,0.6458432885827041 0.7702359099160467 1.1860592915515646Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -6.809638849708332,20.785641907439555 c 0.4104275540268315,0.3695506295370289 0.4435648486555658,1.0018478778094209 7.40142191185369e-2 1.4122754318362523c -0.3695506295370289,0.4104275540268315 -1.0018478778094206,0.4435648486555658 -1.4122754318362523 7.4014219118537e-2c -0.41042755402683156,-0.36955062953702883 -0.44356484865556584,-1.0018478778094206 -7.401421911853712e-2 -1.412275431836252c 0.36955062953702883,-0.41042755402683156 1.0018478778094206,-0.4435648486555659 1.4122754318362525 -7.401421911853734e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -7.1640513779888595,17.643287414420378 c 0.5252540101770148,-0.17066537343183164 1.0894081372382693,0.11678551174319107 1.260073510670101 0.6420395219202057c 0.17066537343183166,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202056 1.260073510670101c -0.5252540101770148,0.1706653734318317 -1.0894081372382693,-0.11678551174319096 -1.260073510670101 -0.6420395219202055c -0.17066537343183172,-0.5252540101770148 0.1167855117431909,-1.0894081372382693 0.6420395219202056 -1.2600735106701013Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -10.062616460779902,16.379040420821198 c 0.11482645615018335,-0.5402160029688607 0.6458432885827039,-0.88506236606623 1.1860592915515644 -0.7702359099160467c 0.5402160029688607,0.11482645615018332 0.88506236606623,0.6458432885827039 0.7702359099160467 1.1860592915515644c -0.11482645615018328,0.5402160029688607 -0.6458432885827039,0.88506236606623 -1.1860592915515644 0.7702359099160467c -0.5402160029688607,-0.11482645615018325 -0.88506236606623,-0.6458432885827038 -0.7702359099160467 -1.1860592915515644Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -12.606769015290412,18.257147920241195 c -0.4104275540268314,-0.3695506295370291 -0.4435648486555654,-1.0018478778094209 -7.401421911853634e-2 -1.4122754318362523c 0.3695506295370291,-0.4104275540268314 1.0018478778094209,-0.44356484865556545 1.4122754318362523 -7.401421911853645e-2c 0.41042755402683145,0.36955062953702905 0.44356484865556545,1.0018478778094209 7.401421911853656e-2 1.4122754318362523c -0.36955062953702905,0.41042755402683145 -1.0018478778094209,0.4435648486555655 -1.4122754318362527 7.401421911853645e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -12.252356487009887,21.39950241326037 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202057 1.260073510670101Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.9999999999999947,26.57481794135006 l -1.5000000000000013,2.598076211353315 l -3.0,-1.9984014443252818e-15 l -1.499999999999999,-2.5980762113533165 l 1.5000000000000004,-2.5980762113533147 l 2.999999999999999,2.2204460492503052e-16 l 1.5000000000000009,2.598076211353318 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.0980762113533107,27.208792537565618 c 0.47829262347620055,0.2761423749153968 0.6421677786998353,0.887732780308238 0.3660254037844386 1.3660254037844384c -0.2761423749153967,0.47829262347620055 -0.887732780308238,0.6421677786998353 -1.3660254037844384 0.36602540378443865c -0.4782926234762006,-0.2761423749153967 -0.6421677786998354,-0.887732780308238 -0.3660254037844387 -1.3660254037844384c 0.27614237491539667,-0.4782926234762006 0.887732780308238,-0.6421677786998354 1.3660254037844384 -0.3660254037844386Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0980762113533094,24.208792537565618 c 0.47829262347620044,-0.27614237491539695 1.0898830288690418,-0.11226721969176262 1.3660254037844388 0.3660254037844377c 0.276142374915397,0.47829262347620044 0.11226721969176262,1.0898830288690418 -0.3660254037844376 1.3660254037844386c -0.4782926234762004,0.276142374915397 -1.0898830288690418,0.11226721969176268 -1.3660254037844386 -0.3660254037844376c -0.27614237491539706,-0.4782926234762004 -0.11226721969176273,-1.0898830288690418 0.36602540378443726 -1.3660254037844388Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0000000000000058,23.574817941350055 c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999997 -1.0000000000000002c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0000000000000002 0.9999999999999996c 1.3527075021963558e-16,0.5522847498307935 -0.4477152501692062,1.0 -0.9999999999999994 1.0000000000000002c -0.5522847498307935,1.690884377745445e-16 -1.0,-0.44771525016920616 -1.0000000000000004 -0.9999999999999996Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.0980762113533213,25.940843345134493 c -0.4782926234762006,-0.2761423749153966 -0.6421677786998357,-0.8877327803082378 -0.36602540378443904 -1.3660254037844384c 0.27614237491539656,-0.4782926234762006 0.8877327803082378,-0.6421677786998357 1.3660254037844382 -0.3660254037844391c 0.47829262347620066,0.27614237491539656 0.6421677786998357,0.8877327803082377 0.36602540378443915 1.3660254037844382c -0.2761423749153965,0.47829262347620066 -0.8877327803082375,0.6421677786998357 -1.3660254037844384 0.36602540378443926Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -2.0980762113533213,28.940843345134493 c -0.47829262347620055,0.2761423749153968 -1.0898830288690418,0.11226721969176218 -1.3660254037844386 -0.36602540378443826c -0.27614237491539684,-0.47829262347620055 -0.11226721969176223,-1.0898830288690418 0.36602540378443815 -1.3660254037844386c 0.4782926234762005,-0.27614237491539684 1.0898830288690418,-0.11226721969176229 1.3660254037844384 0.36602540378443815c 0.2761423749153969,0.4782926234762005 0.11226721969176229,1.0898830288690418 -0.36602540378443793 1.3660254037844386Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9999999999999947,29.574817941350055 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0000000000000002 0.9999999999999997Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.708203932499362,-19.521394913840385 l -9.70820393249937,-7.053423027509675 l -9.708203932499368,7.053423027509677 l 3.7082039324993694,11.412678195541842 h 12.0 l 3.7082039324993694,-11.412678195541844 Z" /></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 10.635254915624207,-16.66822536495492 l 2.007391819076574,-2.2294344764321834 l -0.9270509831248436,-2.8531695488854605 l -2.934442802201417,-0.6237350724532773 l -2.007391819076574,2.2294344764321825 l 0.9270509831248417,2.85316954888546 l 2.934442802201419,0.6237350724532784 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 11.268507802572689,-16.770858269286414 c 0.41042755402683134,0.3695506295370292 1.0427248022992233,0.3364133349082955 1.4122754318362525 -7.401421911853578e-2c 0.3695506295370292,-0.41042755402683134 0.33641333490829556,-1.0427248022992233 -7.401421911853567e-2 -1.4122754318362523c -0.4104275540268313,-0.3695506295370293 -1.0427248022992233,-0.3364133349082956 -1.4122754318362523 7.401421911853556e-2c -0.3695506295370293,0.4104275540268313 -0.33641333490829567,1.0427248022992233 7.401421911853534e-2 1.4122754318362525Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.106321259312278,-16.794863802456724 c -0.11482645615018389,0.5402160029688606 0.23001990694718472,1.0712328354013816 0.7702359099160452 1.1860592915515655c 0.5402160029688606,0.11482645615018391 1.0712328354013816,-0.23001990694718466 1.1860592915515655 -0.7702359099160451c 0.11482645615018396,-0.5402160029688606 -0.2300199069471846,-1.0712328354013816 -0.770235909916045 -1.1860592915515655c -0.5402160029688606,-0.11482645615018398 -1.0712328354013816,0.23001990694718455 -1.1860592915515658 0.7702359099160451Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.546017389238956,-19.545400447010696 c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202066 1.2600735106701006c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701004 0.6420395219202066c 0.5252540101770149,-0.17066537343183133 0.8127048953520379,-0.7348195004930858 0.6420395219202066 -1.2600735106701002c -0.1706653734318313,-0.5252540101770149 -0.7348195004930856,-0.8127048953520379 -1.2600735106701004 -0.6420395219202071Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.147900062426041,-22.27193155839435 c -0.4104275540268312,-0.3695506295370293 -1.042724802299223,-0.3364133349082958 -1.4122754318362523 7.401421911853534e-2c -0.3695506295370293,0.4104275540268312 -0.33641333490829584,1.042724802299223 7.401421911853523e-2 1.4122754318362523c 0.4104275540268311,0.36955062953702933 1.0427248022992228,0.3364133349082959 1.412275431836252 -7.401421911853512e-2c 0.36955062953702933,-0.4104275540268311 0.3364133349082959,-1.0427248022992228 -7.401421911853512e-2 -1.4122754318362525Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 11.310086605686449,-22.24792602522404 c 0.11482645615018368,-0.5402160029688606 -0.23001990694718516,-1.0712328354013816 -0.7702359099160456 -1.1860592915515653c -0.5402160029688606,-0.1148264561501837 -1.0712328354013816,0.2300199069471851 -1.1860592915515653 0.7702359099160456c -0.11482645615018375,0.5402160029688606 0.23001990694718505,1.0712328354013816 0.7702359099160454 1.186059291551565c 0.5402160029688606,0.11482645615018378 1.0712328354013816,-0.230019906947185 1.1860592915515655 -0.7702359099160454Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 12.870390475759772,-19.49738938067007 c 0.5252540101770149,-0.17066537343183144 0.8127048953520379,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.1706653734318314,-0.5252540101770149 -0.7348195004930859,-0.8127048953520379 -1.2600735106701006 -0.6420395219202065c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202065 1.2600735106701004c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 3.5729490168751514,-6.345360961421119 l 2.7406363729278036,1.2202099292273996 l 2.4270509831248415,-1.7633557568774207 l -0.313585389802961,-2.9835656861048196 l -2.7406363729278023,-1.2202099292273998 l -2.427050983124842,1.7633557568774187 l 0.31358538980296036,2.983565686104822 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.8662446131299903,-5.7748169884465375 c -0.22463444516813508,0.5045372245332016 2.2715900335990025e-3,1.095647655550266 0.5068088145668005 1.3202821007184011c 0.5045372245332016,0.2246344451681351 1.095647655550266,-2.271590033598947e-3 1.3202821007184011 -0.5068088145668004c 0.22463444516813513,-0.5045372245332016 -2.2715900335988914e-3,-1.095647655550266 -0.5068088145668003 -1.3202821007184011c -0.5045372245332016,-0.22463444516813516 -1.095647655550266,2.271590033598836e-3 -1.3202821007184014 0.5068088145668004Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.9119058506275195,-8.789653223863855 c -0.5492592761847135,5.772947618597291e-2 -0.9477229082865937,0.5497910824512127 -0.8899934321006208 1.0990503586359262c 5.772947618597288e-2,0.5492592761847135 0.5497910824512127,0.9477229082865937 1.099050358635926 0.8899934321006208c 0.5492592761847135,-5.772947618597284e-2 0.9477229082865937,-0.5497910824512127 0.8899934321006208 -1.099050358635926c -5.772947618597281e-2,-0.5492592761847135 -0.5497910824512126,-0.9477229082865937 -1.099050358635926 -0.8899934321006211Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 5.045661237497521,-11.123552953715857 c -0.32462483101657824,-0.4468077483472284 -0.9499944983201921,-0.545856573099053 -1.3968022466674204 -0.22123174208247487c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247498 1.3968022466674204c 0.3246248310165782,0.4468077483472285 0.949994498320192,0.5458565730990531 1.3968022466674204 0.22123174208247498c 0.4468077483472285,-0.3246248310165782 0.5458565730990532,-0.949994498320192 0.22123174208247498 -1.3968022466674204Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 8.133755386869995,-10.44261644815054 c 0.22463444516813524,-0.5045372245332015 -2.271590033598614e-3,-1.095647655550266 -0.5068088145667999 -1.3202821007184011c -0.5045372245332015,-0.22463444516813527 -1.095647655550266,2.271590033598614e-3 -1.3202821007184011 0.5068088145667999c -0.2246344451681353,0.5045372245332015 2.2715900335985584e-3,1.0956476555502659 0.5068088145667997 1.3202821007184011c 0.5045372245332015,0.22463444516813533 1.0956476555502659,-2.271590033598503e-3 1.3202821007184014 -0.5068088145667999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 9.088094149372468,-7.427780212733226 c 0.5492592761847134,-5.772947618597309e-2 0.9477229082865933,-0.549791082451213 0.8899934321006203 -1.0990503586359264c -5.772947618597306e-2,-0.5492592761847134 -0.5497910824512129,-0.9477229082865933 -1.0990503586359262 -0.8899934321006203c -0.5492592761847134,5.7729476185973023e-2 -0.9477229082865933,0.5497910824512129 -0.8899934321006203 1.0990503586359262c 5.772947618597299e-2,0.5492592761847134 0.5497910824512129,0.9477229082865934 1.0990503586359262 0.8899934321006204Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.954338762502465,-5.093880482881223 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -8.42705098312485,-9.87207247517596 l -0.31358538980295925,2.9835656861048205 l 2.4270509831248432,1.763355756877418 l 2.7406363729278023,-1.2202099292274013 l 0.3135853898029597,-2.983565686104819 l -2.4270509831248415,-1.763355756877419 l -2.7406363729278045,1.2202099292274007 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.879037222837173,-9.416824003469776 c -0.5492592761847134,-5.772947618597328e-2 -1.0413208824499534,0.34073415591590633 -1.0990503586359268 0.8899934321006195c -5.7729476185973315e-2,0.5492592761847134 0.3407341559159063,1.0413208824499534 0.8899934321006195 1.0990503586359268c 0.5492592761847134,5.772947618597335e-2 1.0413208824499534,-0.3407341559159062 1.0990503586359268 -0.8899934321006193c 5.7729476185973384e-2,-0.5492592761847134 -0.34073415591590617,-1.0413208824499534 -0.8899934321006195 -1.099050358635927Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -6.306664471584804,-11.256089734302144 c -0.22463444516813472,-0.5045372245332017 -0.815744876185199,-0.7314432597349363 -1.3202821007184005 -0.5068088145668017c -0.5045372245332017,0.2246344451681347 -0.7314432597349364,0.8157448761851989 -0.5068088145668017 1.3202821007184005c 0.22463444516813466,0.5045372245332017 0.8157448761851989,0.7314432597349364 1.3202821007184005 0.5068088145668017c 0.5045372245332017,-0.22463444516813463 0.7314432597349364,-0.8157448761851989 0.5068088145668017 -1.3202821007184005Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.4276272487476387,-9.94798244913091 c 0.32462483101657846,-0.44680774834722814 0.22557600626475438,-1.0721774156508421 -0.22123174208247365 -1.3968022466674204c -0.44680774834722814,-0.32462483101657846 -1.0721774156508421,-0.22557600626475444 -1.3968022466674204 0.22123174208247365c -0.3246248310165785,0.4468077483472281 -0.2255760062647545,1.0721774156508421 0.22123174208247354 1.3968022466674204c 0.4468077483472281,0.3246248310165785 1.072177415650842,0.2255760062647545 1.3968022466674204 -0.22123174208247365Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.1209627771628403,-6.800609433127307 c 0.5492592761847134,5.7729476185973495e-2 1.0413208824499536,-0.34073415591590595 1.099050358635927 -0.8899934321006192c 5.772947618597353e-2,-0.5492592761847134 -0.3407341559159059,-1.0413208824499536 -0.8899934321006191 -1.099050358635927c -0.5492592761847134,-5.7729476185973565e-2 -1.0413208824499536,0.34073415591590583 -1.099050358635927 0.889993432100619c -5.77294761859736e-2,0.5492592761847134 0.3407341559159058,1.0413208824499536 0.8899934321006191 1.0990503586359273Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -5.693335528415207,-4.961343702294938 c 0.22463444516813488,0.5045372245332016 0.8157448761851992,0.731443259734936 1.3202821007184007 0.5068088145668012c 0.5045372245332016,-0.22463444516813486 0.7314432597349361,-0.8157448761851991 0.5068088145668012 -1.3202821007184005c -0.22463444516813483,-0.5045372245332016 -0.8157448761851991,-0.7314432597349361 -1.3202821007184005 -0.5068088145668013c -0.5045372245332016,0.2246344451681348 -0.7314432597349361,0.8157448761851991 -0.5068088145668015 1.3202821007184005Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.572372751252372,-6.269450987466174 c -0.3246248310165784,0.44680774834722825 -0.22557600626475421,1.0721774156508421 0.22123174208247387 1.3968022466674204c 0.44680774834722825,0.3246248310165784 1.0721774156508421,0.22557600626475427 1.3968022466674204 -0.22123174208247387c 0.32462483101657846,-0.4468077483472282 0.22557600626475433,-1.0721774156508421 -0.22123174208247376 -1.3968022466674204c -0.4468077483472282,-0.32462483101657846 -1.0721774156508421,-0.22557600626475438 -1.3968022466674204 0.22123174208247387Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -8.781152949374533,-22.374564462725843 l -2.9344428022014166,0.6237350724532794 l -0.9270509831248405,2.853169548885461 l 2.0073918190765756,2.2294344764321816 l 2.9344428022014157,-0.6237350724532786 l 0.9270509831248419,-2.8531695488854596 l -2.007391819076576,-2.2294344764321834 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -9.353791404218846,-22.66374940685956 c -0.11482645615018353,-0.5402160029688606 -0.6458432885827042,-0.8850623660662298 -1.1860592915515649 -0.7702359099160463c -0.5402160029688606,0.1148264561501835 -0.8850623660662298,0.6458432885827041 -0.7702359099160463 1.1860592915515646c 0.11482645615018346,0.5402160029688606 0.6458432885827041,0.8850623660662298 1.1860592915515644 0.7702359099160463c 0.5402160029688606,-0.11482645615018343 0.8850623660662298,-0.6458432885827041 0.7702359099160467 -1.1860592915515646Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -6.809638849708332,-20.78564190743956 c 0.4104275540268315,-0.3695506295370289 0.4435648486555658,-1.0018478778094209 7.40142191185369e-2 -1.4122754318362523c -0.3695506295370289,-0.4104275540268315 -1.0018478778094206,-0.4435648486555658 -1.4122754318362523 -7.4014219118537e-2c -0.41042755402683156,0.36955062953702883 -0.44356484865556584,1.0018478778094206 -7.401421911853712e-2 1.412275431836252c 0.36955062953702883,0.41042755402683156 1.0018478778094206,0.4435648486555659 1.4122754318362525 7.401421911853734e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -7.1640513779888595,-17.643287414420385 c 0.5252540101770148,0.17066537343183164 1.0894081372382693,-0.11678551174319107 1.260073510670101 -0.6420395219202057c 0.17066537343183166,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202056 -1.260073510670101c -0.5252540101770148,-0.1706653734318317 -1.0894081372382693,0.11678551174319096 -1.260073510670101 0.6420395219202055c -0.17066537343183172,0.5252540101770148 0.1167855117431909,1.0894081372382693 0.6420395219202056 1.2600735106701013Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -10.062616460779902,-16.379040420821205 c 0.11482645615018335,0.5402160029688607 0.6458432885827039,0.88506236606623 1.1860592915515644 0.7702359099160467c 0.5402160029688607,-0.11482645615018332 0.88506236606623,-0.6458432885827039 0.7702359099160467 -1.1860592915515644c -0.11482645615018328,-0.5402160029688607 -0.6458432885827039,-0.88506236606623 -1.1860592915515644 -0.7702359099160467c -0.5402160029688607,0.11482645615018325 -0.88506236606623,0.6458432885827038 -0.7702359099160467 1.1860592915515644Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -12.606769015290412,-18.257147920241202 c -0.4104275540268314,0.3695506295370291 -0.4435648486555654,1.0018478778094209 -7.401421911853634e-2 1.4122754318362523c 0.3695506295370291,0.4104275540268314 1.0018478778094209,0.44356484865556545 1.4122754318362523 7.401421911853645e-2c 0.41042755402683145,-0.36955062953702905 0.44356484865556545,-1.0018478778094209 7.401421911853656e-2 -1.4122754318362523c -0.36955062953702905,-0.41042755402683145 -1.0018478778094209,-0.4435648486555655 -1.4122754318362527 -7.401421911853645e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -12.252356487009887,-21.39950241326038 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202057 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.9999999999999947,-26.574817941350066 l -1.5000000000000013,-2.598076211353315 l -3.0,1.9984014443252818e-15 l -1.499999999999999,2.5980762113533165 l 1.5000000000000004,2.5980762113533147 l 2.999999999999999,-2.2204460492503052e-16 l 1.5000000000000009,-2.598076211353318 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.0980762113533107,-27.208792537565625 c 0.47829262347620055,-0.2761423749153968 0.6421677786998353,-0.887732780308238 0.3660254037844386 -1.3660254037844384c -0.2761423749153967,-0.47829262347620055 -0.887732780308238,-0.6421677786998353 -1.3660254037844384 -0.36602540378443865c -0.4782926234762006,0.2761423749153967 -0.6421677786998354,0.887732780308238 -0.3660254037844387 1.3660254037844384c 0.27614237491539667,0.4782926234762006 0.887732780308238,0.6421677786998354 1.3660254037844384 0.3660254037844386Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0980762113533094,-24.208792537565625 c 0.47829262347620044,0.27614237491539695 1.0898830288690418,0.11226721969176262 1.3660254037844388 -0.3660254037844377c 0.276142374915397,-0.47829262347620044 0.11226721969176262,-1.0898830288690418 -0.3660254037844376 -1.3660254037844386c -0.4782926234762004,-0.276142374915397 -1.0898830288690418,-0.11226721969176268 -1.3660254037844386 0.3660254037844376c -0.27614237491539706,0.4782926234762004 -0.11226721969176273,1.0898830288690418 0.36602540378443726 1.3660254037844388Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0000000000000058,-23.574817941350062 c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999997 1.0000000000000002c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999996c 1.3527075021963558e-16,-0.5522847498307935 -0.4477152501692062,-1.0 -0.9999999999999994 -1.0000000000000002c -0.5522847498307935,-1.690884377745445e-16 -1.0,0.44771525016920616 -1.0000000000000004 0.9999999999999996Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.0980762113533213,-25.9408433451345 c -0.4782926234762006,0.2761423749153966 -0.6421677786998357,0.8877327803082378 -0.36602540378443904 1.3660254037844384c 0.27614237491539656,0.4782926234762006 0.8877327803082378,0.6421677786998357 1.3660254037844382 0.3660254037844391c 0.47829262347620066,-0.27614237491539656 0.6421677786998357,-0.8877327803082377 0.36602540378443915 -1.3660254037844382c -0.2761423749153965,-0.47829262347620066 -0.8877327803082375,-0.6421677786998357 -1.3660254037844384 -0.36602540378443926Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -2.0980762113533213,-28.9408433451345 c -0.47829262347620055,-0.2761423749153968 -1.0898830288690418,-0.11226721969176218 -1.3660254037844386 0.36602540378443826c -0.27614237491539684,0.47829262347620055 -0.11226721969176223,1.0898830288690418 0.36602540378443815 1.3660254037844386c 0.4782926234762005,0.27614237491539684 1.0898830288690418,0.11226721969176229 1.3660254037844384 -0.36602540378443815c 0.2761423749153969,-0.4782926234762005 0.11226721969176229,-1.0898830288690418 -0.36602540378443793 -1.3660254037844386Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9999999999999947,-29.574817941350062 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_factorDiagramEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="382.9037060674173" font-size="1" viewBox="0 0 400 383"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(1.6790365369707736,0.0,0.0,1.6790365369707736,200.0,191.45185303370866)"><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 104.21983360508125,72.14677221605953 l -36.15358741611963,26.267118797770355 l -36.15358741611962,-26.26711879777035 l 13.809441577717198,-42.501091001323715 l 44.68829167680483,-3.552713678800501e-15 l 13.809441577717216,42.501091001323715 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 110.77586693101266,63.12316647624104 l 4.051851426802628,12.47031643135051 l -10.607884752734037,7.70707940504091 l -10.607884752734037,-7.707079405040909 l 4.051851426802625,-12.47031643135051 l 13.112066651862822,-1.7763568394002505e-15 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 107.59692396893621,61.76442104669372 l 2.259214398010831,-1.9738161778191383 l 2.9517887657958894,0.5356706843959083 l 1.4216059874189964,2.6417865955702124 l -1.179075094961769,2.758583317654352 l -2.8918885820875584,0.798110536700027 l -2.4270509831248432,-1.7633557568774183 l -0.13459449105154686,-2.9969791996239428 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 108.89217550625118,60.056641714441255 c -0.1469280926995649,-0.5323819873655853 0.16554402776359217,-1.0830716135629639 0.6979260151291773 -1.2299997062625287c 0.5323819873655853,-0.14692809269956492 1.0830716135629639,0.16554402776359212 1.2299997062625287 0.6979260151291772c 0.14692809269956494,0.5323819873655853 -0.16554402776359206,1.0830716135629639 -0.6979260151291771 1.2299997062625287c -0.5323819873655853,0.146928092699565 -1.0830716135629639,-0.165544027763592 -1.229999706262529 -0.6979260151291772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.20389893728229,62.683948819245174 c -0.5078411658260448,-0.21706173128422657 -0.7435644721817545,-0.8047116383793291 -0.526502740897528 -1.3125528042053738c 0.21706173128422654,-0.5078411658260448 0.804711638379329,-0.7435644721817545 1.3125528042053736 -0.526502740897528c 0.5078411658260448,0.2170617312842265 0.7435644721817545,0.8047116383793289 0.526502740897528 1.3125528042053736c -0.21706173128422648,0.5078411658260448 -0.8047116383793289,0.7435644721817545 -1.3125528042053736 0.5265027408975282Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 108.20538712246075,65.6419957781744 c -0.4863394830136129,0.261710435706553 -1.092753758623184,7.961261362987432e-2 -1.3544641943297369 -0.4067268693837385c -0.26171043570655306,-0.4863394830136129 -7.961261362987437e-2,-1.0927537586231837 0.40672686938373837 -1.3544641943297366c 0.48633948301361285,-0.26171043570655306 1.0927537586231837,-7.961261362987443e-2 1.3544641943297366 0.40672686938373825c 0.2617104357065531,0.48633948301361285 7.961261362987448e-2,1.0927537586231837 -0.40672686938373814 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.14249903171122,66.70331289799371 c -9.861424997442805e-2,0.5434093066903097 -0.6190771767069561,0.9039869437744217 -1.1624864833972657 0.8053726937999935c -0.5434093066903097,-9.861424997442803e-2 -0.9039869437744217,-0.619077176706956 -0.8053726937999937 -1.1624864833972655c 9.861424997442798e-2,-0.5434093066903097 0.6190771767069558,-0.9039869437744217 1.1624864833972652 -0.8053726937999937c 0.5434093066903097,9.861424997442796e-2 0.9039869437744217,0.6190771767069558 0.8053726937999941 1.1624864833972657Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 113.80352949120376,65.06870674055534 c 0.3633695246596053,0.415909886206513 0.3207771461426153,1.0476406672837182 -9.513274006389749e-2 1.4110101919433236c -0.415909886206513,0.3633695246596053 -1.0476406672837182,0.3207771461426154 -1.4110101919433233 -9.513274006389749e-2c -0.36336952465960537,-0.4159098862065129 -0.32077714614261543,-1.047640667283718 9.513274006389738e-2 -1.411010191943323c 0.4159098862065129,-0.36336952465960537 1.047640667283718,-0.3207771461426155 1.4110101919433236 9.513274006389705e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 114.18466828981141,61.969069082299384 c 0.5517286358374672,-2.4778161606335395e-2 1.0190797352854948,0.402399600353332 1.0438578968918302 0.954128236190799c 2.477816160633543e-2,0.5517286358374672 -0.40239960035333194,1.0190797352854948 -0.954128236190799 1.0438578968918302c -0.5517286358374672,2.477816160633546e-2 -1.0190797352854948,-0.4023996003533319 -1.0438578968918302 -0.9541282361907988c -2.4778161606335496e-2,-0.5517286358374672 0.40239960035333183,-1.0190797352854948 0.954128236190799 -1.0438578968918304Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.99891013836799,59.738490300978015 c 0.32462483101657813,-0.4468077483472284 0.949994498320192,-0.5458565730990531 1.3968022466674204 -0.22123174208247498c 0.4468077483472284,0.32462483101657813 0.5458565730990531,0.949994498320192 0.2212317420824751 1.3968022466674204c -0.3246248310165781,0.4468077483472285 -0.9499944983201919,0.5458565730990532 -1.3968022466674201 0.2212317420824751c -0.4468077483472285,-0.3246248310165781 -0.5458565730990532,-0.9499944983201918 -0.2212317420824752 -1.3968022466674204Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 95.38920918496234,65.72664546649506 l -1.1790750949617717,-2.7585833176543506 l 1.4216059874189948,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.1345944910515433,2.996979199623943 l -2.4270509831248415,1.76335575687742 l -2.8918885820875593,-0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.16526925965005,63.967055215382025 c -0.5517286358374671,-2.4778161606334875e-2 -0.978906397797135,-0.49212926105436183 -0.9541282361908001 -1.0438578968918288c 2.477816160633484e-2,-0.5517286358374671 0.4921292610543618,-0.978906397797135 1.0438578968918288 -0.9541282361908001c 0.5517286358374671,2.477816160633481e-2 0.978906397797135,0.4921292610543617 0.9541282361908001 1.0438578968918286c -2.4778161606334774e-2,0.5517286358374671 -0.49212926105436167,0.978906397797135 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 96.14228065096596,66.38458419243477 c -0.363369524659605,0.41590988620651337 -0.9951003057368102,0.4585022647235041 -1.4110101919433233 9.513274006389916e-2c -0.41590988620651337,-0.363369524659605 -0.45850226472350414,-0.9951003057368101 -9.513274006389927e-2 -1.4110101919433233c 0.3633695246596049,-0.4159098862065134 0.99510030573681,-0.45850226472350414 1.411010191943323 -9.513274006389938e-2c 0.4159098862065134,0.3633695246596049 0.4585022647235042,0.99510030573681 9.513274006389949e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 99.26502735564853,66.34619910839645 c 9.861424997442858e-2,0.5434093066903096 -0.26196338710968275,1.063872233422838 -0.8053726937999923 1.1624864833972666c -0.5434093066903096,9.861424997442861e-2 -1.063872233422838,-0.2619633871096827 -1.1624864833972666 -0.8053726937999921c -9.861424997442865e-2,-0.5434093066903096 0.26196338710968264,-1.063872233422838 0.8053726937999921 -1.1624864833972666c 0.5434093066903096,-9.861424997442868e-2 1.063872233422838,0.2619633871096826 1.1624864833972668 0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 101.18201741264774,63.88080471446092 c 0.4863394830136131,0.26171043570655256 0.6684373050902924,0.8681247113161231 0.40672686938374 1.3544641943297362c -0.2617104357065525,0.4863394830136131 -0.8681247113161231,0.6684373050902925 -1.354464194329736 0.40672686938374003c -0.4863394830136132,-0.2617104357065525 -0.6684373050902925,-0.868124711316123 -0.4067268693837401 -1.354464194329736c 0.26171043570655245,-0.4863394830136132 0.868124711316123,-0.6684373050902925 1.354464194329736 -0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.44971820957237,60.84489327414227 c 0.5078411658260445,-0.21706173128422704 1.0954910729211473,1.8661575071481917e-2 1.3125528042053742 0.5265027408975264c 0.21706173128422707,0.5078411658260445 -1.8661575071481862e-2,1.0954910729211473 -0.5265027408975262 1.3125528042053742c -0.5078411658260445,0.2170617312842271 -1.0954910729211473,-1.8661575071481806e-2 -1.3125528042053742 -0.5265027408975261c -0.21706173128422712,-0.5078411658260445 1.866157507148175e-2,-1.0954910729211471 0.5265027408975262 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.6195659825196,59.52456802330791 c 0.14692809269956444,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956442 0.8448541078287432,0.6976177188969428 0.6979260151291787 1.2299997062625279c -0.1469280926995644,0.5323819873655854 -0.6976177188969427,0.8448541078287432 -1.2299997062625279 0.6979260151291787c -0.5323819873655854,-0.14692809269956433 -0.8448541078287432,-0.6976177188969426 -0.6979260151291791 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.82272308304462,60.91406080556297 c -0.32462483101657846,-0.44680774834722814 -0.22557600626475438,-1.0721774156508421 0.22123174208247365 -1.3968022466674204c 0.44680774834722814,-0.32462483101657846 1.0721774156508421,-0.22557600626475444 1.3968022466674204 0.22123174208247365c 0.3246248310165785,0.4468077483472281 0.2255760062647545,1.0721774156508421 -0.22123174208247354 1.3968022466674204c -0.4468077483472281,0.3246248310165785 -1.072177415650842,0.2255760062647545 -1.3968022466674204 -0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 95.38511720770798,78.5612668421121 l -2.987922881985716,0.2689179267103019 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.575346380805597,-1.5386978322177194 l 2.808704611919212,1.054124472244026 l 0.9270509831248435,2.85316954888546 l -1.652690944356306,2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.33342919636199,79.18155959290375 c -0.19405895681460308,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583953c -0.5170682413141326,-0.19405895681460306 -0.7789190033729985,-0.7705414534069468 -0.5848600465583954 -1.2876096947210791c 0.19405895681460303,-0.5170682413141326 0.7705414534069467,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.194058956814603 0.7789190033729985,0.7705414534069466 0.5848600465583957 1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 96.24356600130984,78.0483675647062 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.17204141788194,75.06659731918026 c 0.5472864412728883,7.413498563107399e-2 0.9308514815813538,0.5778965863127015 0.8567164959502799 1.1251830275855896c -7.413498563107396e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855894 0.8567164959502799c -0.5472864412728883,-7.413498563107392e-2 -0.9308514815813538,-0.5778965863127014 -0.8567164959502799 -1.1251830275855894c 7.413498563107389e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855894 -0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 95.41969451995257,72.48158266823535 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.173221484052546e-2 -1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 92.306078263025,72.23989236872214 c -4.950642329273823e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.9506423292738265e-2 1.0361071796059347,0.35627357129474313 1.085613602898673 0.9063349850918047c 4.95064232927383e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.9506423292738334e-2 -1.0361071796059347,-0.356273571294743 -1.0856136028986731 -0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 90.17580919476254,74.52352414575773 c -0.46092208064694107,-0.30425200158381355 -0.5879282738530143,-0.9245481545264639 -0.2836762722692008 -1.385470235173405c 0.3042520015838135,-0.46092208064694107 0.9245481545264639,-0.5879282738530143 1.3854702351734047 -0.2836762722692009c 0.4609220806469411,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692009 1.3854702351734047c -0.30425200158381344,0.4609220806469411 -0.9245481545264638,0.5879282738530144 -1.385470235173405 0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 90.63302337313661,77.6128566936354 c -0.5252540101770148,0.17066537343183175 -1.0894081372382693,-0.1167855117431908 -1.260073510670101 -0.6420395219202054c -0.17066537343183177,-0.5252540101770148 0.11678551174319074,-1.0894081372382693 0.6420395219202053 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382693,0.11678551174319068 1.260073510670101 0.6420395219202052c 0.17066537343183183,0.5252540101770148 -0.11678551174319063,1.0894081372382693 -0.6420395219202053 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 107.59030301065745,82.53127466517805 l -0.667562801868942,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689442,-2.92478373654547 l 1.870469405576199,-2.3454944474040897 l 3.0,-9.43689570931383e-16 l 1.870469405576201,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.54623001064725,84.67422691925549 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.36778207670113,81.55634675299622 c 0.5384378180823962,-0.12289491834217786 1.0745539277959604,0.21396916014311237 1.1974488461381383 0.7524069782255084c 0.12289491834217789,0.5384378180823962 -0.21396916014311232,1.0745539277959604 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217793 -1.0745539277959604,-0.21396916014311226 -1.1974488461381383 -0.7524069782255082c -0.12289491834217796,-0.5384378180823962 0.2139691601431122,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 104.81886473717883,79.7518964786564 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 101.81886473717883,80.61966395689153 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.62684326554873,83.50620257735987 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381374 0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 102.14041680323272,86.23788988419156 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 105.21983360508125,86.7577096190762 c 1.5328981135287284e-16,0.5522847498307935 -0.44771525016920616,1.0000000000000002 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.8710749890778175e-16 -1.0000000000000002,-0.4477152501692061 -1.0000000000000002 -0.9999999999999993c -2.2092518646269063e-16,-0.5522847498307935 0.44771525016920605,-1.0000000000000002 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.547428740175995e-16 1.0000000000000002,0.447715250169206 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 115.13761465314226,72.15025305981871 l 2.575346380805598,1.5386978322177174 l 0.40269979745296736,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029935 l -1.6526909443563085,-2.503719761163907 l 0.9270509831248416,-2.853169548885461 l 2.808704611919211,-1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 117.16206405249577,72.85437763831513 c 0.46092208064694085,-0.3042520015838138 1.0812182335895912,-0.17724580837774123 1.385470235173405 0.28367627226919945c 0.3042520015838139,0.46092208064694085 0.1772458083777413,1.0812182335895912 -0.28367627226919934 1.385470235173405c -0.4609220806469408,0.3042520015838139 -1.0812182335895912,0.17724580837774134 -1.385470235173405 -0.28367627226919934c -0.30425200158381394,-0.4609220806469408 -0.1772458083777414,-1.0812182335895912 0.28367627226919945 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 114.14164035914703,72.06061375091528 c 4.9506423292737786e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845437 1.085613602898672 -0.906334985091806c 0.5500614137970617,4.950642329273775e-2 0.9558414083845437,0.5355521891016103 0.906334985091806 1.0856136028986718c -4.950642329273772e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273768e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.6378473922362,73.92717239589014 c -0.3991885805478934,-0.38166336221311586 -0.41339557705364316,-1.0146689322663627 -3.173221484052735e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478934 1.0146689322663627,-0.4133955770536432 1.4138575128142559 -3.173221484052746e-2c 0.39918858054789347,0.3816633622131158 0.4133955770536432,1.0146689322663625 3.173221484052757e-2 1.4138575128142556c -0.3816633622131158,0.39918858054789347 -1.0146689322663625,0.41339557705364327 -1.413857512814256 3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.53609232391587,77.04849684271613 c -0.5472864412728882,7.413498563107444e-2 -1.051048041954516,-0.30943005467739054 -1.1251830275855903 -0.8567164959502785c -7.413498563107447e-2,-0.5472864412728882 0.3094300546773905,-1.0510480419545158 0.8567164959502784 -1.1251830275855903c 0.5472864412728882,-7.413498563107451e-2 1.0510480419545158,0.30943005467739043 1.1251830275855903 0.8567164959502783c 7.413498563107454e-2,0.5472864412728882 -0.3094300546773904,1.0510480419545158 -0.8567164959502784 1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 113.91299879605639,79.07416611951801 c -0.28326644911051546,0.47410817721695314 -0.8972398937908189,0.6288159653064759 -1.371348071007772 0.3455495161959604c -0.47410817721695314,-0.2832664491105154 -0.6288159653064759,-0.8972398937908188 -0.3455495161959605 -1.371348071007772c 0.2832664491105154,-0.4741081772169532 0.8972398937908188,-0.6288159653064759 1.371348071007772 -0.3455495161959605c 0.4741081772169532,0.28326644911051535 0.628815965306476,0.8972398937908188 0.3455495161959605 1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 116.97870775507998,78.47880994474106 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 118.42467782577577,75.71074366104509 c 0.5252540101770149,0.17066537343183144 0.8127048953520379,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.1706653734318314,0.5252540101770149 -0.7348195004930859,0.8127048953520379 -1.2600735106701006 0.6420395219202065c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202065 -1.2600735106701004c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 83.85435870143262,20.622075474917324 h 13.112066651862818 l 4.051851426802628,12.470316431350511 l -10.607884752734037,7.707079405040911 l -10.607884752734037,-7.707079405040908 l 4.051851426802628,-12.470316431350515 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 81.57976760724512,23.225554465171342 l -1.1790750949617717,-2.7585833176543506 l 1.4216059874189948,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.1345944910515433,2.996979199623943 l -2.4270509831248415,1.76335575687742 l -2.8918885820875593,-0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 80.35582768193282,21.465964214058307 c -0.5517286358374671,-2.4778161606334875e-2 -0.978906397797135,-0.49212926105436183 -0.9541282361908001 -1.0438578968918288c 2.477816160633484e-2,-0.5517286358374671 0.4921292610543618,-0.978906397797135 1.0438578968918288 -0.9541282361908001c 0.5517286358374671,2.477816160633481e-2 0.978906397797135,0.4921292610543617 0.9541282361908001 1.0438578968918286c -2.4778161606334774e-2,0.5517286358374671 -0.49212926105436167,0.978906397797135 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.33283907324873,23.883493191111054 c -0.363369524659605,0.41590988620651337 -0.9951003057368102,0.4585022647235041 -1.4110101919433233 9.513274006389916e-2c -0.41590988620651337,-0.363369524659605 -0.45850226472350414,-0.9951003057368101 -9.513274006389927e-2 -1.4110101919433233c 0.3633695246596049,-0.4159098862065134 0.99510030573681,-0.45850226472350414 1.411010191943323 -9.513274006389938e-2c 0.4159098862065134,0.3633695246596049 0.4585022647235042,0.99510030573681 9.513274006389949e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 85.4555857779313,23.84510810707273 c 9.861424997442858e-2,0.5434093066903096 -0.26196338710968275,1.063872233422838 -0.8053726937999923 1.1624864833972666c -0.5434093066903096,9.861424997442861e-2 -1.063872233422838,-0.2619633871096827 -1.1624864833972666 -0.8053726937999921c -9.861424997442865e-2,-0.5434093066903096 0.26196338710968264,-1.063872233422838 0.8053726937999921 -1.1624864833972666c 0.5434093066903096,-9.861424997442868e-2 1.063872233422838,0.2619633871096826 1.1624864833972668 0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 87.37257583493052,21.379713713137207 c 0.4863394830136131,0.26171043570655256 0.6684373050902924,0.8681247113161231 0.40672686938374 1.3544641943297362c -0.2617104357065525,0.4863394830136131 -0.8681247113161231,0.6684373050902925 -1.354464194329736 0.40672686938374003c -0.4863394830136132,-0.2617104357065525 -0.6684373050902925,-0.868124711316123 -0.4067268693837401 -1.354464194329736c 0.26171043570655245,-0.4863394830136132 0.868124711316123,-0.6684373050902925 1.354464194329736 -0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 86.64027663185514,18.343802272818554 c 0.5078411658260445,-0.21706173128422704 1.0954910729211473,1.8661575071481917e-2 1.3125528042053742 0.5265027408975264c 0.21706173128422707,0.5078411658260445 -1.8661575071481862e-2,1.0954910729211473 -0.5265027408975262 1.3125528042053742c -0.5078411658260445,0.2170617312842271 -1.0954910729211473,-1.8661575071481806e-2 -1.3125528042053742 -0.5265027408975261c -0.21706173128422712,-0.5078411658260445 1.866157507148175e-2,-1.0954910729211471 0.5265027408975262 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 83.81012440480238,17.023477021984192 c 0.14692809269956444,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956442 0.8448541078287432,0.6976177188969428 0.6979260151291787 1.2299997062625279c -0.1469280926995644,0.5323819873655854 -0.6976177188969427,0.8448541078287432 -1.2299997062625279 0.6979260151291787c -0.5323819873655854,-0.14692809269956433 -0.8448541078287432,-0.6976177188969426 -0.6979260151291791 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.0132815053274,18.41296980423925 c -0.32462483101657846,-0.44680774834722814 -0.22557600626475438,-1.0721774156508421 0.22123174208247365 -1.3968022466674204c 0.44680774834722814,-0.32462483101657846 1.0721774156508421,-0.22557600626475444 1.3968022466674204 0.22123174208247365c 0.3246248310165785,0.4468077483472281 0.2255760062647545,1.0721774156508421 -0.22123174208247354 1.3968022466674204c -0.4468077483472281,0.3246248310165785 -1.072177415650842,0.2255760062647545 -1.3968022466674204 -0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 81.57567562999076,36.060175840788396 l -2.9879228819857166,0.2689179267103018 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.5753463808055974,-1.5386978322177196 l 2.808704611919212,1.0541244722440264 l 0.9270509831248435,2.8531695488854605 l -1.652690944356307,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 79.52398761864477,36.68046859158004 c -0.19405895681460317,0.5170682413141328 -0.770541453406947,0.7789190033729985 -1.2876096947210796 0.5848600465583953c -0.5170682413141328,-0.19405895681460314 -0.7789190033729985,-0.7705414534069469 -0.5848600465583954 -1.2876096947210796c 0.1940589568146031,-0.5170682413141328 0.7705414534069468,-0.7789190033729985 1.2876096947210793 -0.5848600465583955c 0.5170682413141328,0.19405895681460308 0.7789190033729986,0.7705414534069468 0.5848600465583955 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.43412442359262,35.54727656338249 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 83.36259984016472,32.56550631785655 c 0.5472864412728883,7.413498563107401e-2 0.9308514815813538,0.5778965863127015 0.8567164959502798 1.1251830275855896c -7.413498563107399e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855896 0.8567164959502798c -0.5472864412728883,-7.413498563107394e-2 -0.9308514815813538,-0.5778965863127015 -0.8567164959502798 -1.1251830275855894c 7.413498563107392e-2,-0.5472864412728883 0.5778965863127014,-0.9308514815813538 1.1251830275855896 -0.85671649595028Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.61025294223535,29.980491666911636 c 0.39918858054789325,-0.3816633622131162 1.03219415060114,-0.36745636570736706 1.4138575128142563 3.173221484052613e-2c 0.3816633622131162,0.39918858054789325 0.3674563657073671,1.03219415060114 -3.173221484052602e-2 1.413857512814256c -0.3991885805478932,0.38166336221311625 -1.03219415060114,0.36745636570736717 -1.413857512814256 -3.173221484052591e-2c -0.38166336221311625,-0.3991885805478932 -0.3674563657073672,-1.03219415060114 3.1732214840525685e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 78.49663668530778,29.738801367398434 c -4.9506423292738216e-2,-0.5500614137970617 0.3562735712947433,-1.0361071796059347 0.906334985091805 -1.085613602898673c 0.5500614137970617,-4.950642329273825e-2 1.0361071796059347,0.35627357129474324 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970617 -0.3562735712947432,1.0361071796059347 -0.9063349850918048 1.085613602898673c -0.5500614137970617,4.950642329273832e-2 -1.0361071796059347,-0.35627357129474313 -1.0856136028986731 -0.9063349850918048Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 76.36636761704531,32.022433144434025 c -0.4609220806469411,-0.3042520015838136 -0.5879282738530143,-0.924548154526464 -0.2836762722692008 -1.385470235173405c 0.30425200158381355,-0.4609220806469411 0.924548154526464,-0.5879282738530144 1.385470235173405 -0.2836762722692009c 0.4609220806469412,0.30425200158381355 0.5879282738530144,0.924548154526464 0.2836762722692009 1.385470235173405c -0.3042520015838135,0.4609220806469412 -0.924548154526464,0.5879282738530144 -1.385470235173405 0.2836762722692008Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 76.82358179541939,35.11176569231168 c -0.5252540101770148,0.17066537343183175 -1.0894081372382696,-0.11678551174319085 -1.2600735106701013 -0.6420395219202055c -0.17066537343183177,-0.5252540101770148 0.1167855117431908,-1.0894081372382696 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382696,0.11678551174319074 1.260073510670101 0.6420395219202053c 0.17066537343183183,0.5252540101770148 -0.11678551174319068,1.0894081372382696 -0.6420395219202052 1.2600735106701013Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 93.78086143294023,40.03018366385433 l -0.6675628018689418,2.9247837365454705 l -2.7029066037072567,1.3016512173526755 l -2.7029066037072567,-1.3016512173526733 l -0.6675628018689445,-2.9247837365454696 l 1.8704694055761988,-2.3454944474040897 l 3.0,-1.1102230246251565e-15 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.73678843293003,42.17313591793177 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.55834049898391,39.055255751672505 c 0.5384378180823962,-0.1228949183421779 1.0745539277959606,0.21396916014311232 1.1974488461381383 0.7524069782255084c 0.12289491834217793,0.5384378180823962 -0.21396916014311226,1.0745539277959606 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217797 -1.0745539277959604,-0.2139691601431122 -1.1974488461381383 -0.7524069782255082c -0.122894918342178,-0.5384378180823962 0.21396916014311215,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 91.0094231594616,37.25080547733269 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 88.0094231594616,38.11857295556781 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 86.8174016878315,41.005111576036164 c -0.5384378180823963,-0.12289491834217739 -0.8753018965676871,-0.6590110280557413 -0.7524069782255098 -1.1974488461381374c 0.12289491834217736,-0.5384378180823963 0.6590110280557413,-0.8753018965676872 1.1974488461381374 -0.7524069782255098c 0.5384378180823963,0.12289491834217732 0.8753018965676872,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217729,0.5384378180823963 -0.6590110280557412,0.8753018965676872 -1.1974488461381374 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 88.3309752255155,43.73679888286784 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 91.41039202736403,44.25661861775248 c 1.8394777362344743e-16,0.5522847498307935 -0.4477152501692061,1.0000000000000002 -0.9999999999999994 1.0000000000000002c -0.5522847498307935,2.177654611783563e-16 -1.0000000000000002,-0.44771525016920605 -1.0000000000000002 -0.9999999999999993c -2.515831487332652e-16,-0.5522847498307935 0.447715250169206,-1.0000000000000002 0.9999999999999992 -1.0000000000000002c 0.5522847498307935,-2.854008362881741e-16 1.0000000000000002,0.44771525016920594 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 101.32817307542504,29.649162058495 l 2.575346380805598,1.5386978322177174 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.987922881985716,-0.26891792671029957 l -1.6526909443563083,-2.503719761163907 l 0.9270509831248418,-2.853169548885461 l 2.8087046119192114,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 103.35262247477854,30.353286636991413 c 0.4609220806469409,-0.3042520015838138 1.0812182335895915,-0.17724580837774118 1.3854702351734052 0.28367627226919956c 0.3042520015838139,0.4609220806469409 0.17724580837774123,1.0812182335895915 -0.28367627226919945 1.385470235173405c -0.46092208064694085,0.3042520015838139 -1.0812182335895912,0.1772458083777413 -1.385470235173405 -0.28367627226919945c -0.30425200158381394,-0.46092208064694085 -0.17724580837774134,-1.0812182335895912 0.2836762722691992 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.33219878142981,29.55952274959157 c 4.9506423292737814e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845438 1.0856136028986723 -0.906334985091806c 0.5500614137970617,4.950642329273778e-2 0.9558414083845438,0.5355521891016104 0.906334985091806 1.085613602898672c -4.9506423292737745e-2,0.5500614137970617 -0.5355521891016104,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273771e-2 -0.9558414083845438,-0.5355521891016103 -0.9063349850918065 -1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.82840581451897,31.42608139456642 c -0.3991885805478934,-0.3816633622131159 -0.4133955770536431,-1.0146689322663627 -3.173221484052724e-2 -1.413857512814256c 0.3816633622131159,-0.3991885805478934 1.0146689322663627,-0.41339557705364316 1.413857512814256 -3.173221484052735e-2c 0.39918858054789347,0.38166336221311586 0.4133955770536432,1.0146689322663627 3.173221484052746e-2 1.4138575128142559c -0.38166336221311586,0.39918858054789347 -1.0146689322663627,0.4133955770536432 -1.4138575128142563 3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.72665074619864,34.547405841392425 c -0.5472864412728882,7.413498563107442e-2 -1.051048041954516,-0.30943005467739065 -1.1251830275855905 -0.8567164959502787c -7.413498563107444e-2,-0.5472864412728882 0.3094300546773906,-1.051048041954516 0.8567164959502787 -1.1251830275855905c 0.5472864412728882,-7.413498563107448e-2 1.051048041954516,0.30943005467739054 1.1251830275855905 0.8567164959502784c 7.413498563107451e-2,0.5472864412728882 -0.3094300546773905,1.051048041954516 -0.8567164959502787 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.10355721833916,36.5730751181943 c -0.2832664491105155,0.47410817721695314 -0.897239893790819,0.6288159653064758 -1.371348071007772 0.3455495161959603c -0.47410817721695314,-0.28326644911051546 -0.6288159653064758,-0.897239893790819 -0.3455495161959604 -1.371348071007772c 0.28326644911051546,-0.4741081772169532 0.8972398937908189,-0.6288159653064759 1.371348071007772 -0.3455495161959604c 0.4741081772169532,0.2832664491105154 0.6288159653064759,0.8972398937908188 0.3455495161959603 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 103.16926617736276,35.97771894341736 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.2876096947210802 0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 104.61523624805855,33.20965265972137 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 93.78748239121899,19.26333004537 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 95.08273392853395,17.555550713117537 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.39445735956507,20.18285781792145 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.39594554474353,23.140904776850682 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.333057453994,24.20222189667 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 99.99408791348654,22.567615739231627 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.37522671209419,19.467978080975673 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 98.18946856065077,17.2373992996543 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.11421559782515,33.09239190626785 l 4.051851426802627,-12.47031643135051 h 13.112066651862818 l 4.051851426802629,12.470316431350508 l -10.607884752734035,7.70707940504091 l -10.607884752734039,-7.707079405040909 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 36.88738395318592,36.06017584078841 l -2.987922881985716,0.2689179267103019 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.575346380805597,-1.5386978322177194 l 2.808704611919212,1.054124472244026 l 0.9270509831248435,2.85316954888546 l -1.652690944356306,2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 34.83569594183994,36.68046859158005 c -0.19405895681460308,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583953c -0.5170682413141326,-0.19405895681460306 -0.7789190033729985,-0.7705414534069468 -0.5848600465583954 -1.2876096947210791c 0.19405895681460303,-0.5170682413141326 0.7705414534069467,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.194058956814603 0.7789190033729985,0.7705414534069466 0.5848600465583957 1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 37.745832746787784,35.5472765633825 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 38.674308163359875,32.56550631785657 c 0.5472864412728883,7.413498563107399e-2 0.9308514815813538,0.5778965863127015 0.8567164959502799 1.1251830275855896c -7.413498563107396e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855894 0.8567164959502799c -0.5472864412728883,-7.413498563107392e-2 -0.9308514815813538,-0.5778965863127014 -0.8567164959502799 -1.1251830275855894c 7.413498563107389e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855894 -0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.92196126543051,29.98049166691165 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.173221484052546e-2 -1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 33.808345008502926,29.738801367398448 c -4.950642329273823e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.9506423292738265e-2 1.0361071796059347,0.35627357129474313 1.085613602898673 0.9063349850918047c 4.95064232927383e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.9506423292738334e-2 -1.0361071796059347,-0.356273571294743 -1.0856136028986731 -0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 31.678075940240465,32.02243314443404 c -0.46092208064694107,-0.30425200158381355 -0.5879282738530143,-0.9245481545264639 -0.2836762722692008 -1.385470235173405c 0.3042520015838135,-0.46092208064694107 0.9245481545264639,-0.5879282738530143 1.3854702351734047 -0.2836762722692009c 0.4609220806469411,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692009 1.3854702351734047c -0.30425200158381344,0.4609220806469411 -0.9245481545264638,0.5879282738530144 -1.385470235173405 0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.135290118614556,35.11176569231169 c -0.5252540101770148,0.17066537343183175 -1.0894081372382693,-0.1167855117431908 -1.260073510670101 -0.6420395219202054c -0.17066537343183177,-0.5252540101770148 0.11678551174319074,-1.0894081372382693 0.6420395219202053 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382693,0.11678551174319068 1.260073510670101 0.6420395219202052c 0.17066537343183183,0.5252540101770148 -0.11678551174319063,1.0894081372382693 -0.6420395219202053 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 49.09256975613539,40.03018366385434 l -0.6675628018689418,2.9247837365454705 l -2.7029066037072567,1.3016512173526755 l -2.7029066037072567,-1.3016512173526733 l -0.6675628018689445,-2.9247837365454696 l 1.8704694055761988,-2.3454944474040897 l 3.0,-1.1102230246251565e-15 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 49.048496756125175,42.17313591793178 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 48.87004882217907,39.05525575167251 c 0.5384378180823962,-0.1228949183421779 1.0745539277959606,0.21396916014311232 1.1974488461381383 0.7524069782255084c 0.12289491834217793,0.5384378180823962 -0.21396916014311226,1.0745539277959606 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217797 -1.0745539277959604,-0.2139691601431122 -1.1974488461381383 -0.7524069782255082c -0.122894918342178,-0.5384378180823962 0.21396916014311215,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.32113148265677,37.2508054773327 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 43.32113148265677,38.118572955567814 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 42.129110011026675,41.00511157603617 c -0.5384378180823963,-0.12289491834217739 -0.8753018965676871,-0.6590110280557413 -0.7524069782255098 -1.1974488461381374c 0.12289491834217736,-0.5384378180823963 0.6590110280557413,-0.8753018965676872 1.1974488461381374 -0.7524069782255098c 0.5384378180823963,0.12289491834217732 0.8753018965676872,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217729,0.5384378180823963 -0.6590110280557412,0.8753018965676872 -1.1974488461381374 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 43.642683548710664,43.736798882867845 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.72210035055919,44.25661861775249 c 1.8394777362344743e-16,0.5522847498307935 -0.4477152501692061,1.0000000000000002 -0.9999999999999994 1.0000000000000002c -0.5522847498307935,2.177654611783563e-16 -1.0000000000000002,-0.44771525016920605 -1.0000000000000002 -0.9999999999999993c -2.515831487332652e-16,-0.5522847498307935 0.447715250169206,-1.0000000000000002 0.9999999999999992 -1.0000000000000002c 0.5522847498307935,-2.854008362881741e-16 1.0000000000000002,0.44771525016920594 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 56.639881398620204,29.64916205849501 l 2.575346380805598,1.5386978322177172 l 0.4026997974529676,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029924 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248414,-2.853169548885461 l 2.808704611919211,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.6643307979737,30.35328663699142 c 0.46092208064694085,-0.3042520015838139 1.0812182335895912,-0.17724580837774134 1.3854702351734052 0.28367627226919934c 0.30425200158381394,0.46092208064694085 0.1772458083777414,1.0812182335895912 -0.2836762722691992 1.385470235173405c -0.4609220806469408,0.30425200158381394 -1.0812182335895912,0.17724580837774145 -1.385470235173405 -0.2836762722691992c -0.304252001583814,-0.4609220806469408 -0.1772458083777415,-1.0812182335895912 0.283676272269199 -1.3854702351734052Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.643907104624965,29.559522749591576 c 4.950642329273775e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845438 1.0856136028986718 -0.906334985091806c 0.5500614137970617,4.950642329273772e-2 0.9558414083845438,0.5355521891016102 0.906334985091806 1.0856136028986718c -4.950642329273768e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273765e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.14011413771413,31.426081394566427 c -0.39918858054789347,-0.3816633622131158 -0.4133955770536433,-1.0146689322663625 -3.173221484052757e-2 -1.413857512814256c 0.3816633622131158,-0.39918858054789347 1.0146689322663625,-0.4133955770536434 1.4138575128142559 -3.1732214840527684e-2c 0.3991885805478935,0.38166336221311575 0.4133955770536434,1.0146689322663625 3.1732214840527795e-2 1.4138575128142556c -0.38166336221311575,0.3991885805478935 -1.0146689322663625,0.41339557705364344 -1.413857512814256 3.173221484052813e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.03835906939381,34.54740584139243 c -0.5472864412728882,7.413498563107447e-2 -1.051048041954516,-0.3094300546773905 -1.1251830275855905 -0.8567164959502784c -7.41349856310745e-2,-0.5472864412728882 0.30943005467739043,-1.051048041954516 0.8567164959502784 -1.1251830275855905c 0.5472864412728882,-7.413498563107454e-2 1.051048041954516,0.3094300546773904 1.1251830275855905 0.8567164959502782c 7.413498563107457e-2,0.5472864412728882 -0.3094300546773903,1.051048041954516 -0.8567164959502784 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.41526554153433,36.57307511819431 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.48097450055792,35.977718943417365 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.92694457125372,33.20965265972137 c 0.5252540101770149,0.1706653734318314 0.8127048953520379,0.7348195004930859 0.6420395219202065 1.2600735106701006c -0.17066537343183139,0.5252540101770149 -0.7348195004930858,0.8127048953520379 -1.2600735106701004 0.6420395219202066c -0.5252540101770149,-0.17066537343183136 -0.8127048953520379,-0.7348195004930858 -0.6420395219202066 -1.2600735106701004c 0.17066537343183133,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 49.09919071441415,19.26333004537001 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 50.394442251729124,17.555550713117547 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 48.70616568276023,20.182857817921462 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 49.707653867938696,23.140904776850693 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 52.644765777189164,24.202221896670007 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.30579623668171,22.567615739231638 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.68693503528935,19.467978080975683 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.501176883845915,17.23739929965431 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 36.89147593044028,23.225554465171353 l -1.179075094961771,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959098 l 2.259214398010833,1.9738161778191368 l -0.13459449105154375,2.9969791996239437 l -2.427050983124842,1.7633557568774196 l -2.8918885820875597,-0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.667536005128,21.465964214058314 c -0.5517286358374672,-2.4778161606334937e-2 -0.9789063977971351,-0.492129261054362 -0.9541282361908001 -1.043857896891829c 2.4778161606334902e-2,-0.5517286358374672 0.49212926105436194,-0.9789063977971351 1.0438578968918288 -0.9541282361908001c 0.5517286358374672,2.477816160633487e-2 0.9789063977971351,0.4921292610543619 0.9541282361908001 1.0438578968918288c -2.4778161606334836e-2,0.5517286358374672 -0.49212926105436183,0.9789063977971351 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 37.64454739644389,23.883493191111064 c -0.36336952465960504,0.41590988620651326 -0.9951003057368102,0.4585022647235039 -1.4110101919433233 9.513274006389894e-2c -0.41590988620651326,-0.36336952465960504 -0.45850226472350397,-0.9951003057368102 -9.513274006389905e-2 -1.4110101919433233c 0.363369524659605,-0.4159098862065133 0.9951003057368102,-0.45850226472350397 1.411010191943323 -9.513274006389916e-2c 0.4159098862065133,0.363369524659605 0.458502264723504,0.9951003057368101 9.513274006389927e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 40.76729410112647,23.84510810707274 c 9.861424997442848e-2,0.5434093066903097 -0.261963387109683,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442851e-2 -1.063872233422838,-0.2619633871096829 -1.1624864833972666 -0.8053726937999924c -9.861424997442855e-2,-0.5434093066903097 0.26196338710968287,-1.063872233422838 0.8053726937999923 -1.1624864833972666c 0.5434093066903097,-9.861424997442858e-2 1.063872233422838,0.2619633871096828 1.1624864833972668 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 42.68428415812568,21.379713713137217 c 0.48633948301361307,0.2617104357065526 0.6684373050902923,0.8681247113161232 0.4067268693837397 1.3544641943297362c -0.26171043570655256,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.354464194329736 0.40672686938373975c -0.4863394830136131,-0.26171043570655256 -0.6684373050902923,-0.8681247113161232 -0.4067268693837398 -1.354464194329736c 0.2617104357065525,-0.4863394830136131 0.8681247113161231,-0.6684373050902923 1.354464194329736 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.9519849550503,18.343802272818564 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.12183272799754,17.023477021984203 c 0.14692809269956447,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956444 0.844854107828743,0.6976177188969428 0.6979260151291786 1.229999706262528c -0.14692809269956442,0.5323819873655854 -0.6976177188969428,0.8448541078287432 -1.2299997062625279 0.6979260151291786c -0.5323819873655854,-0.14692809269956436 -0.8448541078287432,-0.6976177188969427 -0.6979260151291788 -1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.324989828522554,18.41296980423926 c -0.3246248310165784,-0.44680774834722825 -0.22557600626475421,-1.0721774156508421 0.22123174208247387 -1.3968022466674204c 0.44680774834722825,-0.3246248310165784 1.0721774156508421,-0.22557600626475427 1.3968022466674204 0.22123174208247387c 0.32462483101657846,0.4468077483472282 0.22557600626475433,1.0721774156508421 -0.22123174208247376 1.3968022466674204c -0.4468077483472282,0.32462483101657846 -1.0721774156508421,0.22557600626475438 -1.3968022466674204 -0.22123174208247387Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 31.912658772841986,83.30056231263247 l -10.607884752734034,-7.7070794050409095 l 4.05185142680263,-12.470316431350508 l 13.112066651862817,4.440892098500626e-16 l 4.051851426802628,12.470316431350508 l -10.60788475273404,7.707079405040911 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.28312817841819,82.53127466517805 l -0.667562801868942,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689442,-2.92478373654547 l 1.870469405576199,-2.3454944474040897 l 3.0,-9.43689570931383e-16 l 1.870469405576201,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.23905517840798,84.67422691925549 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.06060724446187,81.55634675299622 c 0.5384378180823962,-0.12289491834217786 1.0745539277959604,0.21396916014311237 1.1974488461381383 0.7524069782255084c 0.12289491834217789,0.5384378180823962 -0.21396916014311232,1.0745539277959604 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217793 -1.0745539277959604,-0.21396916014311226 -1.1974488461381383 -0.7524069782255082c -0.12289491834217796,-0.5384378180823962 0.2139691601431122,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.511689904939566,79.7518964786564 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 29.511689904939573,80.61966395689153 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.319668433309477,83.50620257735987 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381374 0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 29.83324197099347,86.23788988419156 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.91265877284199,86.7577096190762 c 1.5328981135287284e-16,0.5522847498307935 -0.44771525016920616,1.0000000000000002 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.8710749890778175e-16 -1.0000000000000002,-0.4477152501692061 -1.0000000000000002 -0.9999999999999993c -2.2092518646269063e-16,-0.5522847498307935 0.44771525016920605,-1.0000000000000002 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.547428740175995e-16 1.0000000000000002,0.447715250169206 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 42.830439820903,72.15025305981871 l 2.575346380805598,1.5386978322177174 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.987922881985716,-0.26891792671029957 l -1.6526909443563083,-2.503719761163907 l 0.9270509831248418,-2.853169548885461 l 2.8087046119192114,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 44.854889220256496,72.85437763831513 c 0.4609220806469409,-0.3042520015838138 1.0812182335895915,-0.17724580837774118 1.3854702351734052 0.28367627226919956c 0.3042520015838139,0.4609220806469409 0.17724580837774123,1.0812182335895915 -0.28367627226919945 1.385470235173405c -0.46092208064694085,0.3042520015838139 -1.0812182335895912,0.1772458083777413 -1.385470235173405 -0.28367627226919945c -0.30425200158381394,-0.46092208064694085 -0.17724580837774134,-1.0812182335895912 0.2836762722691992 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.83446552690776,72.06061375091528 c 4.9506423292737814e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845438 1.0856136028986723 -0.906334985091806c 0.5500614137970617,4.950642329273778e-2 0.9558414083845438,0.5355521891016104 0.906334985091806 1.085613602898672c -4.9506423292737745e-2,0.5500614137970617 -0.5355521891016104,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273771e-2 -0.9558414083845438,-0.5355521891016103 -0.9063349850918065 -1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.33067255999693,73.92717239589014 c -0.3991885805478934,-0.3816633622131159 -0.4133955770536431,-1.0146689322663627 -3.173221484052724e-2 -1.413857512814256c 0.3816633622131159,-0.3991885805478934 1.0146689322663627,-0.41339557705364316 1.413857512814256 -3.173221484052735e-2c 0.39918858054789347,0.38166336221311586 0.4133955770536432,1.0146689322663627 3.173221484052746e-2 1.4138575128142559c -0.38166336221311586,0.39918858054789347 -1.0146689322663627,0.4133955770536432 -1.4138575128142563 3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.22891749167661,77.04849684271613 c -0.5472864412728882,7.413498563107442e-2 -1.051048041954516,-0.30943005467739065 -1.1251830275855905 -0.8567164959502787c -7.413498563107444e-2,-0.5472864412728882 0.3094300546773906,-1.051048041954516 0.8567164959502787 -1.1251830275855905c 0.5472864412728882,-7.413498563107448e-2 1.051048041954516,0.30943005467739054 1.1251830275855905 0.8567164959502784c 7.413498563107451e-2,0.5472864412728882 -0.3094300546773905,1.051048041954516 -0.8567164959502787 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.60582396381713,79.07416611951801 c -0.2832664491105155,0.47410817721695314 -0.897239893790819,0.6288159653064758 -1.371348071007772 0.3455495161959603c -0.47410817721695314,-0.28326644911051546 -0.6288159653064758,-0.897239893790819 -0.3455495161959604 -1.371348071007772c 0.28326644911051546,-0.4741081772169532 0.8972398937908189,-0.6288159653064759 1.371348071007772 -0.3455495161959604c 0.4741081772169532,0.2832664491105154 0.6288159653064759,0.8972398937908188 0.3455495161959603 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 44.67153292284071,78.47880994474106 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.2876096947210802 0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.11750299353652,75.71074366104509 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.28974913669695,61.76442104669371 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.58500067401193,60.056641714441255 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 34.89672410504303,62.683948819245174 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.898212290221494,65.6419957781744 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 38.83532419947196,66.70331289799371 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.496354658964506,65.06870674055534 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.87749345757215,61.969069082299384 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.69173530612871,59.738490300978015 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 23.08203435272308,65.72664546649506 l -1.179075094961771,-2.7585833176543506 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.2592143980108323,1.9738161778191368 l -0.13459449105154397,2.996979199623943 l -2.427050983124842,1.7633557568774194 l -2.891888582087558,-0.7981105367000245 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 21.858094427410794,63.967055215382025 c -0.5517286358374671,-2.477816160633497e-2 -0.978906397797135,-0.492129261054362 -0.9541282361908 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374671 0.49212926105436194,-0.978906397797135 1.0438578968918288 -0.9541282361908c 0.5517286358374671,2.4778161606334902e-2 0.978906397797135,0.4921292610543619 0.9541282361908 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374671 -0.49212926105436183,0.978906397797135 -1.0438578968918288 0.9541282361908001Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.835105818726692,66.38458419243477 c -0.36336952465960504,0.4159098862065132 -0.9951003057368102,0.4585022647235038 -1.411010191943323 9.513274006389882e-2c -0.4159098862065132,-0.36336952465960504 -0.45850226472350386,-0.9951003057368101 -9.513274006389894e-2 -1.411010191943323c 0.363369524659605,-0.41590988620651326 0.9951003057368101,-0.45850226472350386 1.411010191943323 -9.513274006389905e-2c 0.41590988620651326,0.363369524659605 0.4585022647235039,0.99510030573681 9.513274006389905e-2 1.4110101919433233Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 26.957852523409272,66.34619910839645 c 9.861424997442843e-2,0.5434093066903096 -0.26196338710968303,1.0638722334228379 -0.8053726937999925 1.1624864833972663c -0.5434093066903096,9.861424997442846e-2 -1.0638722334228379,-0.261963387109683 -1.1624864833972663 -0.8053726937999924c -9.86142499744285e-2,-0.5434093066903096 0.2619633871096829,-1.0638722334228379 0.8053726937999923 -1.1624864833972663c 0.5434093066903096,-9.861424997442853e-2 1.0638722334228379,0.26196338710968287 1.1624864833972666 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.87484258040848,63.88080471446092 c 0.48633948301361307,0.26171043570655267 0.6684373050902923,0.8681247113161233 0.40672686938373964 1.3544641943297362c -0.2617104357065526,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.3544641943297362 0.4067268693837397c -0.4863394830136131,-0.2617104357065526 -0.6684373050902923,-0.8681247113161232 -0.40672686938373975 -1.354464194329736c 0.26171043570655256,-0.4863394830136131 0.8681247113161232,-0.6684373050902923 1.3544641943297364 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.1425433773331,60.84489327414227 c 0.5078411658260445,-0.2170617312842269 1.0954910729211471,1.866157507148214e-2 1.312552804205374 0.5265027408975266c 0.21706173128422693,0.5078411658260445 -1.8661575071482084e-2,1.0954910729211471 -0.5265027408975265 1.312552804205374c -0.5078411658260445,0.21706173128422696 -1.0954910729211471,-1.866157507148203e-2 -1.312552804205374 -0.5265027408975264c -0.21706173128422698,-0.5078411658260445 1.8661575071481973e-2,-1.0954910729211471 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 25.31239115028034,59.524568023307914 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 22.51554825080536,60.91406080556297 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674206 -0.2212317420824741Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 23.077942375468712,78.5612668421121 l -2.987922881985716,0.2689179267103008 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.5753463808055974,-1.5386978322177185 l 2.808704611919211,1.054124472244027 l 0.9270509831248425,2.8531695488854605 l -1.6526909443563076,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 21.026254364122735,79.18155959290375 c -0.19405895681460328,0.5170682413141326 -0.770541453406947,0.7789190033729982 -1.2876096947210796 0.5848600465583949c -0.5170682413141326,-0.19405895681460325 -0.7789190033729982,-0.770541453406947 -0.584860046558395 -1.2876096947210796c 0.19405895681460322,-0.5170682413141326 0.770541453406947,-0.7789190033729982 1.2876096947210793 -0.5848600465583951c 0.5170682413141326,0.1940589568146032 0.7789190033729982,0.7705414534069469 0.5848600465583951 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.93639116907058,78.0483675647062 c 0.28326644911051574,0.474108177216953 0.12855866102099345,1.0880816218972567 -0.3455495161959594 1.3713480710077723c -0.474108177216953,0.2832664491105158 -1.0880816218972567,0.1285586610209935 -1.3713480710077721 -0.3455495161959593c -0.2832664491105158,-0.4741081772169529 -0.12855866102099356,-1.0880816218972564 0.3455495161959593 -1.3713480710077721c 0.4741081772169529,-0.28326644911051585 1.0880816218972564,-0.12855866102099361 1.3713480710077723 0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 24.864866585642677,75.06659731918026 c 0.5472864412728882,7.413498563107417e-2 0.9308514815813536,0.5778965863127017 0.8567164959502794 1.1251830275855899c -7.413498563107414e-2,0.5472864412728882 -0.5778965863127017,0.9308514815813536 -1.1251830275855896 0.8567164959502794c -0.5472864412728882,-7.41349856310741e-2 -0.9308514815813536,-0.5778965863127017 -0.8567164959502794 -1.1251830275855896c 7.413498563107407e-2,-0.5472864412728882 0.5778965863127016,-0.9308514815813536 1.1251830275855896 -0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.112519687713313,72.48158266823535 c 0.3991885805478933,-0.38166336221311603 1.03219415060114,-0.3674563657073667 1.413857512814256 3.1732214840526574e-2c 0.38166336221311603,0.3991885805478933 0.36745636570736673,1.03219415060114 -3.173221484052646e-2 1.413857512814256c -0.39918858054789325,0.3816633622131161 -1.03219415060114,0.3674563657073668 -1.4138575128142559 -3.173221484052635e-2c -0.3816633622131161,-0.39918858054789325 -0.36745636570736684,-1.03219415060114 3.173221484052635e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 19.998903430785727,72.23989236872214 c -4.950642329273803e-2,-0.5500614137970616 0.3562735712947436,-1.0361071796059345 0.9063349850918052 -1.0856136028986725c 0.5500614137970616,-4.9506423292738064e-2 1.0361071796059345,0.3562735712947435 1.0856136028986725 0.906334985091805c 4.95064232927381e-2,0.5500614137970616 -0.35627357129474346,1.0361071796059345 -0.906334985091805 1.0856136028986725c -0.5500614137970616,4.950642329273813e-2 -1.0361071796059345,-0.3562735712947434 -1.0856136028986727 -0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 17.868634362523267,74.52352414575773 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.385470235173405 0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 18.32584854089735,77.6128566936354 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202057 1.260073510670101Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 78.67413094169565,101.86060170536192 l -10.607884752734037,7.707079405040908 l -10.607884752734035,-7.707079405040911 l 4.051851426802629,-12.47031643135051 h 13.112066651862817 l 4.05185142680263,12.470316431350513 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 78.98402723702263,98.41737185758907 l 2.575346380805598,1.5386978322177174 l 0.40269979745296736,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029935 l -1.6526909443563085,-2.503719761163907 l 0.9270509831248416,-2.853169548885461 l 2.808704611919211,-1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.00847663637613,99.1214964360855 c 0.46092208064694085,-0.3042520015838138 1.0812182335895912,-0.17724580837774123 1.385470235173405 0.28367627226919945c 0.3042520015838139,0.46092208064694085 0.1772458083777413,1.0812182335895912 -0.28367627226919934 1.385470235173405c -0.4609220806469408,0.3042520015838139 -1.0812182335895912,0.17724580837774134 -1.385470235173405 -0.28367627226919934c -0.30425200158381394,-0.4609220806469408 -0.1772458083777414,-1.0812182335895912 0.28367627226919945 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.9880529430274,98.32773254868565 c 4.9506423292737786e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845437 1.085613602898672 -0.906334985091806c 0.5500614137970617,4.950642329273775e-2 0.9558414083845437,0.5355521891016103 0.906334985091806 1.0856136028986718c -4.950642329273772e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273768e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.48425997611656,100.1942911936605 c -0.3991885805478934,-0.38166336221311586 -0.41339557705364316,-1.0146689322663627 -3.173221484052735e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478934 1.0146689322663627,-0.4133955770536432 1.4138575128142559 -3.173221484052746e-2c 0.39918858054789347,0.3816633622131158 0.4133955770536432,1.0146689322663625 3.173221484052757e-2 1.4138575128142556c -0.3816633622131158,0.39918858054789347 -1.0146689322663625,0.41339557705364327 -1.413857512814256 3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.38250490779623,103.3156156404865 c -0.5472864412728882,7.413498563107444e-2 -1.051048041954516,-0.30943005467739054 -1.1251830275855903 -0.8567164959502785c -7.413498563107447e-2,-0.5472864412728882 0.3094300546773905,-1.0510480419545158 0.8567164959502784 -1.1251830275855903c 0.5472864412728882,-7.413498563107451e-2 1.0510480419545158,0.30943005467739043 1.1251830275855903 0.8567164959502783c 7.413498563107454e-2,0.5472864412728882 -0.3094300546773904,1.0510480419545158 -0.8567164959502784 1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.75941137993675,105.34128491728838 c -0.28326644911051546,0.47410817721695314 -0.8972398937908189,0.6288159653064759 -1.371348071007772 0.3455495161959604c -0.47410817721695314,-0.2832664491105154 -0.6288159653064759,-0.8972398937908188 -0.3455495161959605 -1.371348071007772c 0.2832664491105154,-0.4741081772169532 0.8972398937908188,-0.6288159653064759 1.371348071007772 -0.3455495161959605c 0.4741081772169532,0.28326644911051535 0.628815965306476,0.8972398937908188 0.3455495161959605 1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 80.82512033896035,104.74592874251142 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.27109040965614,101.97786245881545 c 0.5252540101770149,0.17066537343183144 0.8127048953520379,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.1706653734318314,0.5252540101770149 -0.7348195004930859,0.8127048953520379 -1.2600735106701006 0.6420395219202065c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202065 -1.2600735106701004c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 71.44333655281658,88.03153984446408 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 72.73858809013154,86.32376051221162 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.05031152116266,88.95106761701553 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 72.05179970634111,91.90911457594477 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 74.98891161559159,92.97043169576408 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.64994207508413,91.33582553832571 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 78.03108087369176,88.23618788006975 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.84532272224835,86.00560909874838 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 59.235621768842705,91.99376426426542 l -1.179075094961771,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959098 l 2.259214398010833,1.9738161778191368 l -0.13459449105154375,2.9969791996239437 l -2.427050983124842,1.7633557568774196 l -2.8918885820875597,-0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.011681843530425,90.23417401315238 c -0.5517286358374672,-2.4778161606334937e-2 -0.9789063977971351,-0.492129261054362 -0.9541282361908001 -1.043857896891829c 2.4778161606334902e-2,-0.5517286358374672 0.49212926105436194,-0.9789063977971351 1.0438578968918288 -0.9541282361908001c 0.5517286358374672,2.477816160633487e-2 0.9789063977971351,0.4921292610543619 0.9541282361908001 1.0438578968918288c -2.4778161606334836e-2,0.5517286358374672 -0.49212926105436183,0.9789063977971351 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.988693234846316,92.65170299020514 c -0.36336952465960504,0.41590988620651326 -0.9951003057368102,0.4585022647235039 -1.4110101919433233 9.513274006389894e-2c -0.41590988620651326,-0.36336952465960504 -0.45850226472350397,-0.9951003057368102 -9.513274006389905e-2 -1.4110101919433233c 0.363369524659605,-0.4159098862065133 0.9951003057368102,-0.45850226472350397 1.411010191943323 -9.513274006389916e-2c 0.4159098862065133,0.363369524659605 0.458502264723504,0.9951003057368101 9.513274006389927e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 63.11143993952889,92.61331790616681 c 9.861424997442848e-2,0.5434093066903097 -0.261963387109683,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442851e-2 -1.063872233422838,-0.2619633871096829 -1.1624864833972666 -0.8053726937999924c -9.861424997442855e-2,-0.5434093066903097 0.26196338710968287,-1.063872233422838 0.8053726937999923 -1.1624864833972666c 0.5434093066903097,-9.861424997442858e-2 1.063872233422838,0.2619633871096828 1.1624864833972668 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.0284299965281,90.14792351223129 c 0.48633948301361307,0.2617104357065526 0.6684373050902923,0.8681247113161232 0.4067268693837397 1.3544641943297362c -0.26171043570655256,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.354464194329736 0.40672686938373975c -0.4863394830136131,-0.26171043570655256 -0.6684373050902923,-0.8681247113161232 -0.4067268693837398 -1.354464194329736c 0.2617104357065525,-0.4863394830136131 0.8681247113161231,-0.6684373050902923 1.354464194329736 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 64.29613079345273,87.11201207191263 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 61.46597856639997,85.79168682107827 c 0.14692809269956447,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956444 0.844854107828743,0.6976177188969428 0.6979260151291786 1.229999706262528c -0.14692809269956442,0.5323819873655854 -0.6976177188969428,0.8448541078287432 -1.2299997062625279 0.6979260151291786c -0.5323819873655854,-0.14692809269956436 -0.8448541078287432,-0.6976177188969427 -0.6979260151291788 -1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.66913566692498,87.18117960333333 c -0.3246248310165784,-0.44680774834722825 -0.22557600626475421,-1.0721774156508421 0.22123174208247387 -1.3968022466674204c 0.44680774834722825,-0.3246248310165784 1.0721774156508421,-0.22557600626475427 1.3968022466674204 0.22123174208247387c 0.32462483101657846,0.4468077483472282 0.22557600626475433,1.0721774156508421 -0.22123174208247376 1.3968022466674204c -0.4468077483472282,0.32462483101657846 -1.0721774156508421,0.22557600626475438 -1.3968022466674204 -0.22123174208247387Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 59.23152979158834,104.82838563988247 l -2.987922881985716,0.2689179267103008 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.5753463808055974,-1.5386978322177185 l 2.808704611919211,1.054124472244027 l 0.9270509831248425,2.8531695488854605 l -1.6526909443563076,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 57.17984178024236,105.44867839067412 c -0.19405895681460328,0.5170682413141326 -0.770541453406947,0.7789190033729982 -1.2876096947210796 0.5848600465583949c -0.5170682413141326,-0.19405895681460325 -0.7789190033729982,-0.770541453406947 -0.584860046558395 -1.2876096947210796c 0.19405895681460322,-0.5170682413141326 0.770541453406947,-0.7789190033729982 1.2876096947210793 -0.5848600465583951c 0.5170682413141326,0.1940589568146032 0.7789190033729982,0.7705414534069469 0.5848600465583951 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 60.08997858519021,104.31548636247656 c 0.28326644911051574,0.474108177216953 0.12855866102099345,1.0880816218972567 -0.3455495161959594 1.3713480710077723c -0.474108177216953,0.2832664491105158 -1.0880816218972567,0.1285586610209935 -1.3713480710077721 -0.3455495161959593c -0.2832664491105158,-0.4741081772169529 -0.12855866102099356,-1.0880816218972564 0.3455495161959593 -1.3713480710077721c 0.4741081772169529,-0.28326644911051585 1.0880816218972564,-0.12855866102099361 1.3713480710077723 0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 61.0184540017623,101.33371611695063 c 0.5472864412728882,7.413498563107417e-2 0.9308514815813536,0.5778965863127017 0.8567164959502794 1.1251830275855899c -7.413498563107414e-2,0.5472864412728882 -0.5778965863127017,0.9308514815813536 -1.1251830275855896 0.8567164959502794c -0.5472864412728882,-7.41349856310741e-2 -0.9308514815813536,-0.5778965863127017 -0.8567164959502794 -1.1251830275855896c 7.413498563107407e-2,-0.5472864412728882 0.5778965863127016,-0.9308514815813536 1.1251830275855896 -0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.26610710383294,98.74870146600571 c 0.3991885805478933,-0.38166336221311603 1.03219415060114,-0.3674563657073667 1.413857512814256 3.1732214840526574e-2c 0.38166336221311603,0.3991885805478933 0.36745636570736673,1.03219415060114 -3.173221484052646e-2 1.413857512814256c -0.39918858054789325,0.3816633622131161 -1.03219415060114,0.3674563657073668 -1.4138575128142559 -3.173221484052635e-2c -0.3816633622131161,-0.39918858054789325 -0.36745636570736684,-1.03219415060114 3.173221484052635e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 56.15249084690535,98.5070111664925 c -4.950642329273803e-2,-0.5500614137970616 0.3562735712947436,-1.0361071796059345 0.9063349850918052 -1.0856136028986725c 0.5500614137970616,-4.9506423292738064e-2 1.0361071796059345,0.3562735712947435 1.0856136028986725 0.906334985091805c 4.95064232927381e-2,0.5500614137970616 -0.35627357129474346,1.0361071796059345 -0.906334985091805 1.0856136028986725c -0.5500614137970616,4.950642329273813e-2 -1.0361071796059345,-0.3562735712947434 -1.0856136028986727 -0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 54.022221778642894,100.7906429435281 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.385470235173405 0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 54.47943595701698,103.87997549140576 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202057 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 71.43671559453782,108.79839346294841 l -0.6675628018689428,2.92478373654547 l -2.702906603707257,1.3016512173526746 l -2.702906603707256,-1.3016512173526742 l -0.6675628018689435,-2.92478373654547 l 1.8704694055761997,-2.3454944474040893 l 3.0,-1.1102230246251565e-16 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.39264259452762,110.94134571702585 c 0.4317936047046943,0.3443439092416015 0.5026855898508982,0.9735276796220689 0.15834168060929665 1.405321284326763c -0.3443439092416015,0.4317936047046943 -0.9735276796220689,0.5026855898508982 -1.405321284326763 0.15834168060929676c -0.43179360470469436,-0.34434390924160146 -0.5026855898508982,-0.9735276796220689 -0.15834168060929676 -1.4053212843267628c 0.34434390924160146,-0.43179360470469436 0.9735276796220688,-0.5026855898508982 1.405321284326763 -0.158341680609297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.2141946605815,107.82346555076658 c 0.5384378180823962,-0.12289491834217771 1.0745539277959604,0.2139691601431127 1.197448846138138 0.7524069782255088c 0.12289491834217774,0.5384378180823962 -0.21396916014311265,1.0745539277959604 -0.7524069782255087 1.197448846138138c -0.5384378180823962,0.12289491834217778 -1.0745539277959604,-0.2139691601431126 -1.197448846138138 -0.7524069782255086c -0.1228949183421778,-0.5384378180823962 0.21396916014311254,-1.0745539277959604 0.7524069782255087 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 68.6652773210592,106.01901527642677 c 0.2396273723141898,-0.4975913658148208 0.8372612412051563,-0.7067125010990509 1.3348526070199769 -0.46708512878486125c 0.4975913658148208,0.23962737231418976 0.7067125010990509,0.8372612412051563 0.4670851287848613 1.3348526070199769c -0.23962737231418973,0.49759136581482083 -0.8372612412051562,0.706712501099051 -1.3348526070199767 0.4670851287848613c -0.49759136581482083,-0.2396273723141897 -0.706712501099051,-0.8372612412051561 -0.4670851287848614 -1.334852607019977Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.6652773210592,106.8867827546619 c -0.2396273723141899,-0.49759136581482066 -3.050623702995997e-2,-1.0952252347057874 0.4670851287848606 -1.334852607019977c 0.49759136581482066,-0.23962737231418993 1.0952252347057874,-3.0506237029960026e-2 1.334852607019977 0.46708512878486047c 0.23962737231418996,0.4975913658148206 3.050623702996008e-2,1.0952252347057874 -0.46708512878486036 1.334852607019977c -0.4975913658148206,0.23962737231418998 -1.0952252347057874,3.0506237029960137e-2 -1.3348526070199773 -0.4670851287848605Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 64.4732558494291,109.77332137513024 c -0.5384378180823962,-0.12289491834217757 -0.8753018965676869,-0.6590110280557416 -0.7524069782255094 -1.1974488461381378c 0.12289491834217754,-0.5384378180823962 0.6590110280557415,-0.8753018965676869 1.1974488461381376 -0.7524069782255094c 0.5384378180823962,0.1228949183421775 0.8753018965676869,0.6590110280557415 0.7524069782255094 1.1974488461381374c -0.12289491834217747,0.5384378180823962 -0.6590110280557415,0.8753018965676869 -1.1974488461381376 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.98682938711309,112.50500868196193 c -0.43179360470469424,0.3443439092416017 -1.0609773750851617,0.2734519240953981 -1.4053212843267633 -0.158341680609296c -0.3443439092416017,-0.43179360470469424 -0.27345192409539815,-1.0609773750851617 0.158341680609296 -1.4053212843267633c 0.4317936047046942,-0.34434390924160174 1.0609773750851617,-0.2734519240953982 1.4053212843267633 0.15834168060929588c 0.34434390924160174,0.4317936047046942 0.2734519240953982,1.0609773750851614 -0.1583416806092961 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 69.06624618896161,113.02482841684656 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0000000000000002 0.9999999999999997Z" /></g></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 104.21983360508125,-72.14677221605953 l -36.15358741611963,-26.267118797770355 l -36.15358741611962,26.26711879777035 l 13.809441577717198,42.501091001323715 l 44.68829167680483,3.552713678800501e-15 l 13.809441577717216,-42.501091001323715 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 110.77586693101266,-63.12316647624104 l 4.051851426802628,-12.47031643135051 l -10.607884752734037,-7.70707940504091 l -10.607884752734037,7.707079405040909 l 4.051851426802625,12.47031643135051 l 13.112066651862822,1.7763568394002505e-15 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 107.59692396893621,-61.76442104669372 l 2.259214398010831,1.9738161778191383 l 2.9517887657958894,-0.5356706843959083 l 1.4216059874189964,-2.6417865955702124 l -1.179075094961769,-2.758583317654352 l -2.8918885820875584,-0.798110536700027 l -2.4270509831248432,1.7633557568774183 l -0.13459449105154686,2.9969791996239428 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 108.89217550625118,-60.056641714441255 c -0.1469280926995649,0.5323819873655853 0.16554402776359217,1.0830716135629639 0.6979260151291773 1.2299997062625287c 0.5323819873655853,0.14692809269956492 1.0830716135629639,-0.16554402776359212 1.2299997062625287 -0.6979260151291772c 0.14692809269956494,-0.5323819873655853 -0.16554402776359206,-1.0830716135629639 -0.6979260151291771 -1.2299997062625287c -0.5323819873655853,-0.146928092699565 -1.0830716135629639,0.165544027763592 -1.229999706262529 0.6979260151291772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.20389893728229,-62.683948819245174 c -0.5078411658260448,0.21706173128422657 -0.7435644721817545,0.8047116383793291 -0.526502740897528 1.3125528042053738c 0.21706173128422654,0.5078411658260448 0.804711638379329,0.7435644721817545 1.3125528042053736 0.526502740897528c 0.5078411658260448,-0.2170617312842265 0.7435644721817545,-0.8047116383793289 0.526502740897528 -1.3125528042053736c -0.21706173128422648,-0.5078411658260448 -0.8047116383793289,-0.7435644721817545 -1.3125528042053736 -0.5265027408975282Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 108.20538712246075,-65.6419957781744 c -0.4863394830136129,-0.261710435706553 -1.092753758623184,-7.961261362987432e-2 -1.3544641943297369 0.4067268693837385c -0.26171043570655306,0.4863394830136129 -7.961261362987437e-2,1.0927537586231837 0.40672686938373837 1.3544641943297366c 0.48633948301361285,0.26171043570655306 1.0927537586231837,7.961261362987443e-2 1.3544641943297366 -0.40672686938373825c 0.2617104357065531,-0.48633948301361285 7.961261362987448e-2,-1.0927537586231837 -0.40672686938373814 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.14249903171122,-66.70331289799371 c -9.861424997442805e-2,-0.5434093066903097 -0.6190771767069561,-0.9039869437744217 -1.1624864833972657 -0.8053726937999935c -0.5434093066903097,9.861424997442803e-2 -0.9039869437744217,0.619077176706956 -0.8053726937999937 1.1624864833972655c 9.861424997442798e-2,0.5434093066903097 0.6190771767069558,0.9039869437744217 1.1624864833972652 0.8053726937999937c 0.5434093066903097,-9.861424997442796e-2 0.9039869437744217,-0.6190771767069558 0.8053726937999941 -1.1624864833972657Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 113.80352949120376,-65.06870674055534 c 0.3633695246596053,-0.415909886206513 0.3207771461426153,-1.0476406672837182 -9.513274006389749e-2 -1.4110101919433236c -0.415909886206513,-0.3633695246596053 -1.0476406672837182,-0.3207771461426154 -1.4110101919433233 9.513274006389749e-2c -0.36336952465960537,0.4159098862065129 -0.32077714614261543,1.047640667283718 9.513274006389738e-2 1.411010191943323c 0.4159098862065129,0.36336952465960537 1.047640667283718,0.3207771461426155 1.4110101919433236 -9.513274006389705e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 114.18466828981141,-61.969069082299384 c 0.5517286358374672,2.4778161606335395e-2 1.0190797352854948,-0.402399600353332 1.0438578968918302 -0.954128236190799c 2.477816160633543e-2,-0.5517286358374672 -0.40239960035333194,-1.0190797352854948 -0.954128236190799 -1.0438578968918302c -0.5517286358374672,-2.477816160633546e-2 -1.0190797352854948,0.4023996003533319 -1.0438578968918302 0.9541282361907988c -2.4778161606335496e-2,0.5517286358374672 0.40239960035333183,1.0190797352854948 0.954128236190799 1.0438578968918304Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.99891013836799,-59.738490300978015 c 0.32462483101657813,0.4468077483472284 0.949994498320192,0.5458565730990531 1.3968022466674204 0.22123174208247498c 0.4468077483472284,-0.32462483101657813 0.5458565730990531,-0.949994498320192 0.2212317420824751 -1.3968022466674204c -0.3246248310165781,-0.4468077483472285 -0.9499944983201919,-0.5458565730990532 -1.3968022466674201 -0.2212317420824751c -0.4468077483472285,0.3246248310165781 -0.5458565730990532,0.9499944983201918 -0.2212317420824752 1.3968022466674204Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 95.38920918496234,-65.72664546649506 l -1.1790750949617717,2.7585833176543506 l 1.4216059874189948,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.1345944910515433,-2.996979199623943 l -2.4270509831248415,-1.76335575687742 l -2.8918885820875593,0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.16526925965005,-63.967055215382025 c -0.5517286358374671,2.4778161606334875e-2 -0.978906397797135,0.49212926105436183 -0.9541282361908001 1.0438578968918288c 2.477816160633484e-2,0.5517286358374671 0.4921292610543618,0.978906397797135 1.0438578968918288 0.9541282361908001c 0.5517286358374671,-2.477816160633481e-2 0.978906397797135,-0.4921292610543617 0.9541282361908001 -1.0438578968918286c -2.4778161606334774e-2,-0.5517286358374671 -0.49212926105436167,-0.978906397797135 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 96.14228065096596,-66.38458419243477 c -0.363369524659605,-0.41590988620651337 -0.9951003057368102,-0.4585022647235041 -1.4110101919433233 -9.513274006389916e-2c -0.41590988620651337,0.363369524659605 -0.45850226472350414,0.9951003057368101 -9.513274006389927e-2 1.4110101919433233c 0.3633695246596049,0.4159098862065134 0.99510030573681,0.45850226472350414 1.411010191943323 9.513274006389938e-2c 0.4159098862065134,-0.3633695246596049 0.4585022647235042,-0.99510030573681 9.513274006389949e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 99.26502735564853,-66.34619910839645 c 9.861424997442858e-2,-0.5434093066903096 -0.26196338710968275,-1.063872233422838 -0.8053726937999923 -1.1624864833972666c -0.5434093066903096,-9.861424997442861e-2 -1.063872233422838,0.2619633871096827 -1.1624864833972666 0.8053726937999921c -9.861424997442865e-2,0.5434093066903096 0.26196338710968264,1.063872233422838 0.8053726937999921 1.1624864833972666c 0.5434093066903096,9.861424997442868e-2 1.063872233422838,-0.2619633871096826 1.1624864833972668 -0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 101.18201741264774,-63.88080471446092 c 0.4863394830136131,-0.26171043570655256 0.6684373050902924,-0.8681247113161231 0.40672686938374 -1.3544641943297362c -0.2617104357065525,-0.4863394830136131 -0.8681247113161231,-0.6684373050902925 -1.354464194329736 -0.40672686938374003c -0.4863394830136132,0.2617104357065525 -0.6684373050902925,0.868124711316123 -0.4067268693837401 1.354464194329736c 0.26171043570655245,0.4863394830136132 0.868124711316123,0.6684373050902925 1.354464194329736 0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.44971820957237,-60.84489327414227 c 0.5078411658260445,0.21706173128422704 1.0954910729211473,-1.8661575071481917e-2 1.3125528042053742 -0.5265027408975264c 0.21706173128422707,-0.5078411658260445 -1.8661575071481862e-2,-1.0954910729211473 -0.5265027408975262 -1.3125528042053742c -0.5078411658260445,-0.2170617312842271 -1.0954910729211473,1.8661575071481806e-2 -1.3125528042053742 0.5265027408975261c -0.21706173128422712,0.5078411658260445 1.866157507148175e-2,1.0954910729211471 0.5265027408975262 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.6195659825196,-59.52456802330791 c 0.14692809269956444,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956442 0.8448541078287432,-0.6976177188969428 0.6979260151291787 -1.2299997062625279c -0.1469280926995644,-0.5323819873655854 -0.6976177188969427,-0.8448541078287432 -1.2299997062625279 -0.6979260151291787c -0.5323819873655854,0.14692809269956433 -0.8448541078287432,0.6976177188969426 -0.6979260151291791 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.82272308304462,-60.91406080556297 c -0.32462483101657846,0.44680774834722814 -0.22557600626475438,1.0721774156508421 0.22123174208247365 1.3968022466674204c 0.44680774834722814,0.32462483101657846 1.0721774156508421,0.22557600626475444 1.3968022466674204 -0.22123174208247365c 0.3246248310165785,-0.4468077483472281 0.2255760062647545,-1.0721774156508421 -0.22123174208247354 -1.3968022466674204c -0.4468077483472281,-0.3246248310165785 -1.072177415650842,-0.2255760062647545 -1.3968022466674204 0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 95.38511720770798,-78.5612668421121 l -2.987922881985716,-0.2689179267103019 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.575346380805597,1.5386978322177194 l 2.808704611919212,-1.054124472244026 l 0.9270509831248435,-2.85316954888546 l -1.652690944356306,-2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.33342919636199,-79.18155959290375 c -0.19405895681460308,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583953c -0.5170682413141326,0.19405895681460306 -0.7789190033729985,0.7705414534069468 -0.5848600465583954 1.2876096947210791c 0.19405895681460303,0.5170682413141326 0.7705414534069467,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.194058956814603 0.7789190033729985,-0.7705414534069466 0.5848600465583957 -1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 96.24356600130984,-78.0483675647062 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.17204141788194,-75.06659731918026 c 0.5472864412728883,-7.413498563107399e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502799 -1.1251830275855896c -7.413498563107396e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855894 -0.8567164959502799c -0.5472864412728883,7.413498563107392e-2 -0.9308514815813538,0.5778965863127014 -0.8567164959502799 1.1251830275855894c 7.413498563107389e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855894 0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 95.41969451995257,-72.48158266823535 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.173221484052546e-2 1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 92.306078263025,-72.23989236872214 c -4.950642329273823e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.9506423292738265e-2 1.0361071796059347,-0.35627357129474313 1.085613602898673 -0.9063349850918047c 4.95064232927383e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.9506423292738334e-2 -1.0361071796059347,0.356273571294743 -1.0856136028986731 0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 90.17580919476254,-74.52352414575773 c -0.46092208064694107,0.30425200158381355 -0.5879282738530143,0.9245481545264639 -0.2836762722692008 1.385470235173405c 0.3042520015838135,0.46092208064694107 0.9245481545264639,0.5879282738530143 1.3854702351734047 0.2836762722692009c 0.4609220806469411,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692009 -1.3854702351734047c -0.30425200158381344,-0.4609220806469411 -0.9245481545264638,-0.5879282738530144 -1.385470235173405 -0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 90.63302337313661,-77.6128566936354 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382693,0.1167855117431908 -1.260073510670101 0.6420395219202054c -0.17066537343183177,0.5252540101770148 0.11678551174319074,1.0894081372382693 0.6420395219202053 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382693,-0.11678551174319068 1.260073510670101 -0.6420395219202052c 0.17066537343183183,-0.5252540101770148 -0.11678551174319063,-1.0894081372382693 -0.6420395219202053 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 107.59030301065745,-82.53127466517805 l -0.667562801868942,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689442,2.92478373654547 l 1.870469405576199,2.3454944474040897 l 3.0,9.43689570931383e-16 l 1.870469405576201,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.54623001064725,-84.67422691925549 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 107.36778207670113,-81.55634675299622 c 0.5384378180823962,0.12289491834217786 1.0745539277959604,-0.21396916014311237 1.1974488461381383 -0.7524069782255084c 0.12289491834217789,-0.5384378180823962 -0.21396916014311232,-1.0745539277959604 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217793 -1.0745539277959604,0.21396916014311226 -1.1974488461381383 0.7524069782255082c -0.12289491834217796,0.5384378180823962 0.2139691601431122,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 104.81886473717883,-79.7518964786564 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 101.81886473717883,-80.61966395689153 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.62684326554873,-83.50620257735987 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381374 -0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 102.14041680323272,-86.23788988419156 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 105.21983360508125,-86.7577096190762 c 1.5328981135287284e-16,-0.5522847498307935 -0.44771525016920616,-1.0000000000000002 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.8710749890778175e-16 -1.0000000000000002,0.4477152501692061 -1.0000000000000002 0.9999999999999993c -2.2092518646269063e-16,0.5522847498307935 0.44771525016920605,1.0000000000000002 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.547428740175995e-16 1.0000000000000002,-0.447715250169206 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 115.13761465314226,-72.15025305981871 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296736,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029935 l -1.6526909443563085,2.503719761163907 l 0.9270509831248416,2.853169548885461 l 2.808704611919211,1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 117.16206405249577,-72.85437763831513 c 0.46092208064694085,0.3042520015838138 1.0812182335895912,0.17724580837774123 1.385470235173405 -0.28367627226919945c 0.3042520015838139,-0.46092208064694085 0.1772458083777413,-1.0812182335895912 -0.28367627226919934 -1.385470235173405c -0.4609220806469408,-0.3042520015838139 -1.0812182335895912,-0.17724580837774134 -1.385470235173405 0.28367627226919934c -0.30425200158381394,0.4609220806469408 -0.1772458083777414,1.0812182335895912 0.28367627226919945 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 114.14164035914703,-72.06061375091528 c 4.9506423292737786e-2,0.5500614137970617 0.5355521891016104,0.9558414083845437 1.085613602898672 0.906334985091806c 0.5500614137970617,-4.950642329273775e-2 0.9558414083845437,-0.5355521891016103 0.906334985091806 -1.0856136028986718c -4.950642329273772e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273768e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.6378473922362,-73.92717239589014 c -0.3991885805478934,0.38166336221311586 -0.41339557705364316,1.0146689322663627 -3.173221484052735e-2 1.413857512814256c 0.38166336221311586,0.3991885805478934 1.0146689322663627,0.4133955770536432 1.4138575128142559 3.173221484052746e-2c 0.39918858054789347,-0.3816633622131158 0.4133955770536432,-1.0146689322663625 3.173221484052757e-2 -1.4138575128142556c -0.3816633622131158,-0.39918858054789347 -1.0146689322663625,-0.41339557705364327 -1.413857512814256 -3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 111.53609232391587,-77.04849684271613 c -0.5472864412728882,-7.413498563107444e-2 -1.051048041954516,0.30943005467739054 -1.1251830275855903 0.8567164959502785c -7.413498563107447e-2,0.5472864412728882 0.3094300546773905,1.0510480419545158 0.8567164959502784 1.1251830275855903c 0.5472864412728882,7.413498563107451e-2 1.0510480419545158,-0.30943005467739043 1.1251830275855903 -0.8567164959502783c 7.413498563107454e-2,-0.5472864412728882 -0.3094300546773904,-1.0510480419545158 -0.8567164959502784 -1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 113.91299879605639,-79.07416611951801 c -0.28326644911051546,-0.47410817721695314 -0.8972398937908189,-0.6288159653064759 -1.371348071007772 -0.3455495161959604c -0.47410817721695314,0.2832664491105154 -0.6288159653064759,0.8972398937908188 -0.3455495161959605 1.371348071007772c 0.2832664491105154,0.4741081772169532 0.8972398937908188,0.6288159653064759 1.371348071007772 0.3455495161959605c 0.4741081772169532,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.3455495161959605 -1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 116.97870775507998,-78.47880994474106 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 118.42467782577577,-75.71074366104509 c 0.5252540101770149,-0.17066537343183144 0.8127048953520379,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.1706653734318314,-0.5252540101770149 -0.7348195004930859,-0.8127048953520379 -1.2600735106701006 -0.6420395219202065c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202065 1.2600735106701004c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 83.85435870143262,-20.622075474917324 h 13.112066651862818 l 4.051851426802628,-12.470316431350511 l -10.607884752734037,-7.707079405040911 l -10.607884752734037,7.707079405040908 l 4.051851426802628,12.470316431350515 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 81.57976760724512,-23.225554465171342 l -1.1790750949617717,2.7585833176543506 l 1.4216059874189948,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.1345944910515433,-2.996979199623943 l -2.4270509831248415,-1.76335575687742 l -2.8918885820875593,0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 80.35582768193282,-21.465964214058307 c -0.5517286358374671,2.4778161606334875e-2 -0.978906397797135,0.49212926105436183 -0.9541282361908001 1.0438578968918288c 2.477816160633484e-2,0.5517286358374671 0.4921292610543618,0.978906397797135 1.0438578968918288 0.9541282361908001c 0.5517286358374671,-2.477816160633481e-2 0.978906397797135,-0.4921292610543617 0.9541282361908001 -1.0438578968918286c -2.4778161606334774e-2,-0.5517286358374671 -0.49212926105436167,-0.978906397797135 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.33283907324873,-23.883493191111054 c -0.363369524659605,-0.41590988620651337 -0.9951003057368102,-0.4585022647235041 -1.4110101919433233 -9.513274006389916e-2c -0.41590988620651337,0.363369524659605 -0.45850226472350414,0.9951003057368101 -9.513274006389927e-2 1.4110101919433233c 0.3633695246596049,0.4159098862065134 0.99510030573681,0.45850226472350414 1.411010191943323 9.513274006389938e-2c 0.4159098862065134,-0.3633695246596049 0.4585022647235042,-0.99510030573681 9.513274006389949e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 85.4555857779313,-23.84510810707273 c 9.861424997442858e-2,-0.5434093066903096 -0.26196338710968275,-1.063872233422838 -0.8053726937999923 -1.1624864833972666c -0.5434093066903096,-9.861424997442861e-2 -1.063872233422838,0.2619633871096827 -1.1624864833972666 0.8053726937999921c -9.861424997442865e-2,0.5434093066903096 0.26196338710968264,1.063872233422838 0.8053726937999921 1.1624864833972666c 0.5434093066903096,9.861424997442868e-2 1.063872233422838,-0.2619633871096826 1.1624864833972668 -0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 87.37257583493052,-21.379713713137207 c 0.4863394830136131,-0.26171043570655256 0.6684373050902924,-0.8681247113161231 0.40672686938374 -1.3544641943297362c -0.2617104357065525,-0.4863394830136131 -0.8681247113161231,-0.6684373050902925 -1.354464194329736 -0.40672686938374003c -0.4863394830136132,0.2617104357065525 -0.6684373050902925,0.868124711316123 -0.4067268693837401 1.354464194329736c 0.26171043570655245,0.4863394830136132 0.868124711316123,0.6684373050902925 1.354464194329736 0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 86.64027663185514,-18.343802272818554 c 0.5078411658260445,0.21706173128422704 1.0954910729211473,-1.8661575071481917e-2 1.3125528042053742 -0.5265027408975264c 0.21706173128422707,-0.5078411658260445 -1.8661575071481862e-2,-1.0954910729211473 -0.5265027408975262 -1.3125528042053742c -0.5078411658260445,-0.2170617312842271 -1.0954910729211473,1.8661575071481806e-2 -1.3125528042053742 0.5265027408975261c -0.21706173128422712,0.5078411658260445 1.866157507148175e-2,1.0954910729211471 0.5265027408975262 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 83.81012440480238,-17.023477021984192 c 0.14692809269956444,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956442 0.8448541078287432,-0.6976177188969428 0.6979260151291787 -1.2299997062625279c -0.1469280926995644,-0.5323819873655854 -0.6976177188969427,-0.8448541078287432 -1.2299997062625279 -0.6979260151291787c -0.5323819873655854,0.14692809269956433 -0.8448541078287432,0.6976177188969426 -0.6979260151291791 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.0132815053274,-18.41296980423925 c -0.32462483101657846,0.44680774834722814 -0.22557600626475438,1.0721774156508421 0.22123174208247365 1.3968022466674204c 0.44680774834722814,0.32462483101657846 1.0721774156508421,0.22557600626475444 1.3968022466674204 -0.22123174208247365c 0.3246248310165785,-0.4468077483472281 0.2255760062647545,-1.0721774156508421 -0.22123174208247354 -1.3968022466674204c -0.4468077483472281,-0.3246248310165785 -1.072177415650842,-0.2255760062647545 -1.3968022466674204 0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 81.57567562999076,-36.060175840788396 l -2.9879228819857166,-0.2689179267103018 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.5753463808055974,1.5386978322177196 l 2.808704611919212,-1.0541244722440264 l 0.9270509831248435,-2.8531695488854605 l -1.652690944356307,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 79.52398761864477,-36.68046859158004 c -0.19405895681460317,-0.5170682413141328 -0.770541453406947,-0.7789190033729985 -1.2876096947210796 -0.5848600465583953c -0.5170682413141328,0.19405895681460314 -0.7789190033729985,0.7705414534069469 -0.5848600465583954 1.2876096947210796c 0.1940589568146031,0.5170682413141328 0.7705414534069468,0.7789190033729985 1.2876096947210793 0.5848600465583955c 0.5170682413141328,-0.19405895681460308 0.7789190033729986,-0.7705414534069468 0.5848600465583955 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.43412442359262,-35.54727656338249 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 83.36259984016472,-32.56550631785655 c 0.5472864412728883,-7.413498563107401e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502798 -1.1251830275855896c -7.413498563107399e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855896 -0.8567164959502798c -0.5472864412728883,7.413498563107394e-2 -0.9308514815813538,0.5778965863127015 -0.8567164959502798 1.1251830275855894c 7.413498563107392e-2,0.5472864412728883 0.5778965863127014,0.9308514815813538 1.1251830275855896 0.85671649595028Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.61025294223535,-29.980491666911636 c 0.39918858054789325,0.3816633622131162 1.03219415060114,0.36745636570736706 1.4138575128142563 -3.173221484052613e-2c 0.3816633622131162,-0.39918858054789325 0.3674563657073671,-1.03219415060114 -3.173221484052602e-2 -1.413857512814256c -0.3991885805478932,-0.38166336221311625 -1.03219415060114,-0.36745636570736717 -1.413857512814256 3.173221484052591e-2c -0.38166336221311625,0.3991885805478932 -0.3674563657073672,1.03219415060114 3.1732214840525685e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 78.49663668530778,-29.738801367398434 c -4.9506423292738216e-2,0.5500614137970617 0.3562735712947433,1.0361071796059347 0.906334985091805 1.085613602898673c 0.5500614137970617,4.950642329273825e-2 1.0361071796059347,-0.35627357129474324 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970617 -0.3562735712947432,-1.0361071796059347 -0.9063349850918048 -1.085613602898673c -0.5500614137970617,-4.950642329273832e-2 -1.0361071796059347,0.35627357129474313 -1.0856136028986731 0.9063349850918048Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 76.36636761704531,-32.022433144434025 c -0.4609220806469411,0.3042520015838136 -0.5879282738530143,0.924548154526464 -0.2836762722692008 1.385470235173405c 0.30425200158381355,0.4609220806469411 0.924548154526464,0.5879282738530144 1.385470235173405 0.2836762722692009c 0.4609220806469412,-0.30425200158381355 0.5879282738530144,-0.924548154526464 0.2836762722692009 -1.385470235173405c -0.3042520015838135,-0.4609220806469412 -0.924548154526464,-0.5879282738530144 -1.385470235173405 -0.2836762722692008Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 76.82358179541939,-35.11176569231168 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382696,0.11678551174319085 -1.2600735106701013 0.6420395219202055c -0.17066537343183177,0.5252540101770148 0.1167855117431908,1.0894081372382696 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382696,-0.11678551174319074 1.260073510670101 -0.6420395219202053c 0.17066537343183183,-0.5252540101770148 -0.11678551174319068,-1.0894081372382696 -0.6420395219202052 -1.2600735106701013Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 93.78086143294023,-40.03018366385433 l -0.6675628018689418,-2.9247837365454705 l -2.7029066037072567,-1.3016512173526755 l -2.7029066037072567,1.3016512173526733 l -0.6675628018689445,2.9247837365454696 l 1.8704694055761988,2.3454944474040897 l 3.0,1.1102230246251565e-15 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.73678843293003,-42.17313591793177 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.55834049898391,-39.055255751672505 c 0.5384378180823962,0.1228949183421779 1.0745539277959606,-0.21396916014311232 1.1974488461381383 -0.7524069782255084c 0.12289491834217793,-0.5384378180823962 -0.21396916014311226,-1.0745539277959606 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217797 -1.0745539277959604,0.2139691601431122 -1.1974488461381383 0.7524069782255082c -0.122894918342178,0.5384378180823962 0.21396916014311215,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 91.0094231594616,-37.25080547733269 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 88.0094231594616,-38.11857295556781 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 86.8174016878315,-41.005111576036164 c -0.5384378180823963,0.12289491834217739 -0.8753018965676871,0.6590110280557413 -0.7524069782255098 1.1974488461381374c 0.12289491834217736,0.5384378180823963 0.6590110280557413,0.8753018965676872 1.1974488461381374 0.7524069782255098c 0.5384378180823963,-0.12289491834217732 0.8753018965676872,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217729,-0.5384378180823963 -0.6590110280557412,-0.8753018965676872 -1.1974488461381374 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 88.3309752255155,-43.73679888286784 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 91.41039202736403,-44.25661861775248 c 1.8394777362344743e-16,-0.5522847498307935 -0.4477152501692061,-1.0000000000000002 -0.9999999999999994 -1.0000000000000002c -0.5522847498307935,-2.177654611783563e-16 -1.0000000000000002,0.44771525016920605 -1.0000000000000002 0.9999999999999993c -2.515831487332652e-16,0.5522847498307935 0.447715250169206,1.0000000000000002 0.9999999999999992 1.0000000000000002c 0.5522847498307935,2.854008362881741e-16 1.0000000000000002,-0.44771525016920594 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 101.32817307542504,-29.649162058495 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.987922881985716,0.26891792671029957 l -1.6526909443563083,2.503719761163907 l 0.9270509831248418,2.853169548885461 l 2.8087046119192114,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 103.35262247477854,-30.353286636991413 c 0.4609220806469409,0.3042520015838138 1.0812182335895915,0.17724580837774118 1.3854702351734052 -0.28367627226919956c 0.3042520015838139,-0.4609220806469409 0.17724580837774123,-1.0812182335895915 -0.28367627226919945 -1.385470235173405c -0.46092208064694085,-0.3042520015838139 -1.0812182335895912,-0.1772458083777413 -1.385470235173405 0.28367627226919945c -0.30425200158381394,0.46092208064694085 -0.17724580837774134,1.0812182335895912 0.2836762722691992 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.33219878142981,-29.55952274959157 c 4.9506423292737814e-2,0.5500614137970617 0.5355521891016104,0.9558414083845438 1.0856136028986723 0.906334985091806c 0.5500614137970617,-4.950642329273778e-2 0.9558414083845438,-0.5355521891016104 0.906334985091806 -1.085613602898672c -4.9506423292737745e-2,-0.5500614137970617 -0.5355521891016104,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273771e-2 -0.9558414083845438,0.5355521891016103 -0.9063349850918065 1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.82840581451897,-31.42608139456642 c -0.3991885805478934,0.3816633622131159 -0.4133955770536431,1.0146689322663627 -3.173221484052724e-2 1.413857512814256c 0.3816633622131159,0.3991885805478934 1.0146689322663627,0.41339557705364316 1.413857512814256 3.173221484052735e-2c 0.39918858054789347,-0.38166336221311586 0.4133955770536432,-1.0146689322663627 3.173221484052746e-2 -1.4138575128142559c -0.38166336221311586,-0.39918858054789347 -1.0146689322663627,-0.4133955770536432 -1.4138575128142563 -3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.72665074619864,-34.547405841392425 c -0.5472864412728882,-7.413498563107442e-2 -1.051048041954516,0.30943005467739065 -1.1251830275855905 0.8567164959502787c -7.413498563107444e-2,0.5472864412728882 0.3094300546773906,1.051048041954516 0.8567164959502787 1.1251830275855905c 0.5472864412728882,7.413498563107448e-2 1.051048041954516,-0.30943005467739054 1.1251830275855905 -0.8567164959502784c 7.413498563107451e-2,-0.5472864412728882 -0.3094300546773905,-1.051048041954516 -0.8567164959502787 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.10355721833916,-36.5730751181943 c -0.2832664491105155,-0.47410817721695314 -0.897239893790819,-0.6288159653064758 -1.371348071007772 -0.3455495161959603c -0.47410817721695314,0.28326644911051546 -0.6288159653064758,0.897239893790819 -0.3455495161959604 1.371348071007772c 0.28326644911051546,0.4741081772169532 0.8972398937908189,0.6288159653064759 1.371348071007772 0.3455495161959604c 0.4741081772169532,-0.2832664491105154 0.6288159653064759,-0.8972398937908188 0.3455495161959603 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 103.16926617736276,-35.97771894341736 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.2876096947210802 -0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 104.61523624805855,-33.20965265972137 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 93.78748239121899,-19.26333004537 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 95.08273392853395,-17.555550713117537 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 93.39445735956507,-20.18285781792145 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 94.39594554474353,-23.140904776850682 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 97.333057453994,-24.20222189667 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 99.99408791348654,-22.567615739231627 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 100.37522671209419,-19.467978080975673 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 98.18946856065077,-17.2373992996543 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.11421559782515,-33.09239190626785 l 4.051851426802627,12.47031643135051 h 13.112066651862818 l 4.051851426802629,-12.470316431350508 l -10.607884752734035,-7.70707940504091 l -10.607884752734039,7.707079405040909 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 36.88738395318592,-36.06017584078841 l -2.987922881985716,-0.2689179267103019 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.575346380805597,1.5386978322177194 l 2.808704611919212,-1.054124472244026 l 0.9270509831248435,-2.85316954888546 l -1.652690944356306,-2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 34.83569594183994,-36.68046859158005 c -0.19405895681460308,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583953c -0.5170682413141326,0.19405895681460306 -0.7789190033729985,0.7705414534069468 -0.5848600465583954 1.2876096947210791c 0.19405895681460303,0.5170682413141326 0.7705414534069467,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.194058956814603 0.7789190033729985,-0.7705414534069466 0.5848600465583957 -1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 37.745832746787784,-35.5472765633825 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 38.674308163359875,-32.56550631785657 c 0.5472864412728883,-7.413498563107399e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502799 -1.1251830275855896c -7.413498563107396e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855894 -0.8567164959502799c -0.5472864412728883,7.413498563107392e-2 -0.9308514815813538,0.5778965863127014 -0.8567164959502799 1.1251830275855894c 7.413498563107389e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855894 0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.92196126543051,-29.98049166691165 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.173221484052546e-2 1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 33.808345008502926,-29.738801367398448 c -4.950642329273823e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.9506423292738265e-2 1.0361071796059347,-0.35627357129474313 1.085613602898673 -0.9063349850918047c 4.95064232927383e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.9506423292738334e-2 -1.0361071796059347,0.356273571294743 -1.0856136028986731 0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 31.678075940240465,-32.02243314443404 c -0.46092208064694107,0.30425200158381355 -0.5879282738530143,0.9245481545264639 -0.2836762722692008 1.385470235173405c 0.3042520015838135,0.46092208064694107 0.9245481545264639,0.5879282738530143 1.3854702351734047 0.2836762722692009c 0.4609220806469411,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692009 -1.3854702351734047c -0.30425200158381344,-0.4609220806469411 -0.9245481545264638,-0.5879282738530144 -1.385470235173405 -0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.135290118614556,-35.11176569231169 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382693,0.1167855117431908 -1.260073510670101 0.6420395219202054c -0.17066537343183177,0.5252540101770148 0.11678551174319074,1.0894081372382693 0.6420395219202053 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382693,-0.11678551174319068 1.260073510670101 -0.6420395219202052c 0.17066537343183183,-0.5252540101770148 -0.11678551174319063,-1.0894081372382693 -0.6420395219202053 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 49.09256975613539,-40.03018366385434 l -0.6675628018689418,-2.9247837365454705 l -2.7029066037072567,-1.3016512173526755 l -2.7029066037072567,1.3016512173526733 l -0.6675628018689445,2.9247837365454696 l 1.8704694055761988,2.3454944474040897 l 3.0,1.1102230246251565e-15 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 49.048496756125175,-42.17313591793178 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 48.87004882217907,-39.05525575167251 c 0.5384378180823962,0.1228949183421779 1.0745539277959606,-0.21396916014311232 1.1974488461381383 -0.7524069782255084c 0.12289491834217793,-0.5384378180823962 -0.21396916014311226,-1.0745539277959606 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217797 -1.0745539277959604,0.2139691601431122 -1.1974488461381383 0.7524069782255082c -0.122894918342178,0.5384378180823962 0.21396916014311215,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.32113148265677,-37.2508054773327 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 43.32113148265677,-38.118572955567814 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 42.129110011026675,-41.00511157603617 c -0.5384378180823963,0.12289491834217739 -0.8753018965676871,0.6590110280557413 -0.7524069782255098 1.1974488461381374c 0.12289491834217736,0.5384378180823963 0.6590110280557413,0.8753018965676872 1.1974488461381374 0.7524069782255098c 0.5384378180823963,-0.12289491834217732 0.8753018965676872,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217729,-0.5384378180823963 -0.6590110280557412,-0.8753018965676872 -1.1974488461381374 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 43.642683548710664,-43.736798882867845 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.72210035055919,-44.25661861775249 c 1.8394777362344743e-16,-0.5522847498307935 -0.4477152501692061,-1.0000000000000002 -0.9999999999999994 -1.0000000000000002c -0.5522847498307935,-2.177654611783563e-16 -1.0000000000000002,0.44771525016920605 -1.0000000000000002 0.9999999999999993c -2.515831487332652e-16,0.5522847498307935 0.447715250169206,1.0000000000000002 0.9999999999999992 1.0000000000000002c 0.5522847498307935,2.854008362881741e-16 1.0000000000000002,-0.44771525016920594 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 56.639881398620204,-29.64916205849501 l 2.575346380805598,-1.5386978322177172 l 0.4026997974529676,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029924 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248414,2.853169548885461 l 2.808704611919211,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.6643307979737,-30.35328663699142 c 0.46092208064694085,0.3042520015838139 1.0812182335895912,0.17724580837774134 1.3854702351734052 -0.28367627226919934c 0.30425200158381394,-0.46092208064694085 0.1772458083777414,-1.0812182335895912 -0.2836762722691992 -1.385470235173405c -0.4609220806469408,-0.30425200158381394 -1.0812182335895912,-0.17724580837774145 -1.385470235173405 0.2836762722691992c -0.304252001583814,0.4609220806469408 -0.1772458083777415,1.0812182335895912 0.283676272269199 1.3854702351734052Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.643907104624965,-29.559522749591576 c 4.950642329273775e-2,0.5500614137970617 0.5355521891016103,0.9558414083845438 1.0856136028986718 0.906334985091806c 0.5500614137970617,-4.950642329273772e-2 0.9558414083845438,-0.5355521891016102 0.906334985091806 -1.0856136028986718c -4.950642329273768e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273765e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.14011413771413,-31.426081394566427 c -0.39918858054789347,0.3816633622131158 -0.4133955770536433,1.0146689322663625 -3.173221484052757e-2 1.413857512814256c 0.3816633622131158,0.39918858054789347 1.0146689322663625,0.4133955770536434 1.4138575128142559 3.1732214840527684e-2c 0.3991885805478935,-0.38166336221311575 0.4133955770536434,-1.0146689322663625 3.1732214840527795e-2 -1.4138575128142556c -0.38166336221311575,-0.3991885805478935 -1.0146689322663625,-0.41339557705364344 -1.413857512814256 -3.173221484052813e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.03835906939381,-34.54740584139243 c -0.5472864412728882,-7.413498563107447e-2 -1.051048041954516,0.3094300546773905 -1.1251830275855905 0.8567164959502784c -7.41349856310745e-2,0.5472864412728882 0.30943005467739043,1.051048041954516 0.8567164959502784 1.1251830275855905c 0.5472864412728882,7.413498563107454e-2 1.051048041954516,-0.3094300546773904 1.1251830275855905 -0.8567164959502782c 7.413498563107457e-2,-0.5472864412728882 -0.3094300546773903,-1.051048041954516 -0.8567164959502784 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.41526554153433,-36.57307511819431 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.48097450055792,-35.977718943417365 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.92694457125372,-33.20965265972137 c 0.5252540101770149,-0.1706653734318314 0.8127048953520379,-0.7348195004930859 0.6420395219202065 -1.2600735106701006c -0.17066537343183139,-0.5252540101770149 -0.7348195004930858,-0.8127048953520379 -1.2600735106701004 -0.6420395219202066c -0.5252540101770149,0.17066537343183136 -0.8127048953520379,0.7348195004930858 -0.6420395219202066 1.2600735106701004c 0.17066537343183133,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 49.09919071441415,-19.26333004537001 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 50.394442251729124,-17.555550713117547 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 48.70616568276023,-20.182857817921462 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 49.707653867938696,-23.140904776850693 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 52.644765777189164,-24.202221896670007 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.30579623668171,-22.567615739231638 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 55.68693503528935,-19.467978080975683 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 53.501176883845915,-17.23739929965431 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 36.89147593044028,-23.225554465171353 l -1.179075094961771,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959098 l 2.259214398010833,-1.9738161778191368 l -0.13459449105154375,-2.9969791996239437 l -2.427050983124842,-1.7633557568774196 l -2.8918885820875597,0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.667536005128,-21.465964214058314 c -0.5517286358374672,2.4778161606334937e-2 -0.9789063977971351,0.492129261054362 -0.9541282361908001 1.043857896891829c 2.4778161606334902e-2,0.5517286358374672 0.49212926105436194,0.9789063977971351 1.0438578968918288 0.9541282361908001c 0.5517286358374672,-2.477816160633487e-2 0.9789063977971351,-0.4921292610543619 0.9541282361908001 -1.0438578968918288c -2.4778161606334836e-2,-0.5517286358374672 -0.49212926105436183,-0.9789063977971351 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 37.64454739644389,-23.883493191111064 c -0.36336952465960504,-0.41590988620651326 -0.9951003057368102,-0.4585022647235039 -1.4110101919433233 -9.513274006389894e-2c -0.41590988620651326,0.36336952465960504 -0.45850226472350397,0.9951003057368102 -9.513274006389905e-2 1.4110101919433233c 0.363369524659605,0.4159098862065133 0.9951003057368102,0.45850226472350397 1.411010191943323 9.513274006389916e-2c 0.4159098862065133,-0.363369524659605 0.458502264723504,-0.9951003057368101 9.513274006389927e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 40.76729410112647,-23.84510810707274 c 9.861424997442848e-2,-0.5434093066903097 -0.261963387109683,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442851e-2 -1.063872233422838,0.2619633871096829 -1.1624864833972666 0.8053726937999924c -9.861424997442855e-2,0.5434093066903097 0.26196338710968287,1.063872233422838 0.8053726937999923 1.1624864833972666c 0.5434093066903097,9.861424997442858e-2 1.063872233422838,-0.2619633871096828 1.1624864833972668 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 42.68428415812568,-21.379713713137217 c 0.48633948301361307,-0.2617104357065526 0.6684373050902923,-0.8681247113161232 0.4067268693837397 -1.3544641943297362c -0.26171043570655256,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.354464194329736 -0.40672686938373975c -0.4863394830136131,0.26171043570655256 -0.6684373050902923,0.8681247113161232 -0.4067268693837398 1.354464194329736c 0.2617104357065525,0.4863394830136131 0.8681247113161231,0.6684373050902923 1.354464194329736 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.9519849550503,-18.343802272818564 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.12183272799754,-17.023477021984203 c 0.14692809269956447,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956444 0.844854107828743,-0.6976177188969428 0.6979260151291786 -1.229999706262528c -0.14692809269956442,-0.5323819873655854 -0.6976177188969428,-0.8448541078287432 -1.2299997062625279 -0.6979260151291786c -0.5323819873655854,0.14692809269956436 -0.8448541078287432,0.6976177188969427 -0.6979260151291788 1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.324989828522554,-18.41296980423926 c -0.3246248310165784,0.44680774834722825 -0.22557600626475421,1.0721774156508421 0.22123174208247387 1.3968022466674204c 0.44680774834722825,0.3246248310165784 1.0721774156508421,0.22557600626475427 1.3968022466674204 -0.22123174208247387c 0.32462483101657846,-0.4468077483472282 0.22557600626475433,-1.0721774156508421 -0.22123174208247376 -1.3968022466674204c -0.4468077483472282,-0.32462483101657846 -1.0721774156508421,-0.22557600626475438 -1.3968022466674204 0.22123174208247387Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 31.912658772841986,-83.30056231263247 l -10.607884752734034,7.7070794050409095 l 4.05185142680263,12.470316431350508 l 13.112066651862817,-4.440892098500626e-16 l 4.051851426802628,-12.470316431350508 l -10.60788475273404,-7.707079405040911 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.28312817841819,-82.53127466517805 l -0.667562801868942,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689442,2.92478373654547 l 1.870469405576199,2.3454944474040897 l 3.0,9.43689570931383e-16 l 1.870469405576201,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.23905517840798,-84.67422691925549 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.06060724446187,-81.55634675299622 c 0.5384378180823962,0.12289491834217786 1.0745539277959604,-0.21396916014311237 1.1974488461381383 -0.7524069782255084c 0.12289491834217789,-0.5384378180823962 -0.21396916014311232,-1.0745539277959604 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217793 -1.0745539277959604,0.21396916014311226 -1.1974488461381383 0.7524069782255082c -0.12289491834217796,0.5384378180823962 0.2139691601431122,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.511689904939566,-79.7518964786564 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 29.511689904939573,-80.61966395689153 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.319668433309477,-83.50620257735987 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381374 -0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 29.83324197099347,-86.23788988419156 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 32.91265877284199,-86.7577096190762 c 1.5328981135287284e-16,-0.5522847498307935 -0.44771525016920616,-1.0000000000000002 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.8710749890778175e-16 -1.0000000000000002,0.4477152501692061 -1.0000000000000002 0.9999999999999993c -2.2092518646269063e-16,0.5522847498307935 0.44771525016920605,1.0000000000000002 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.547428740175995e-16 1.0000000000000002,-0.447715250169206 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 42.830439820903,-72.15025305981871 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.987922881985716,0.26891792671029957 l -1.6526909443563083,2.503719761163907 l 0.9270509831248418,2.853169548885461 l 2.8087046119192114,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 44.854889220256496,-72.85437763831513 c 0.4609220806469409,0.3042520015838138 1.0812182335895915,0.17724580837774118 1.3854702351734052 -0.28367627226919956c 0.3042520015838139,-0.4609220806469409 0.17724580837774123,-1.0812182335895915 -0.28367627226919945 -1.385470235173405c -0.46092208064694085,-0.3042520015838139 -1.0812182335895912,-0.1772458083777413 -1.385470235173405 0.28367627226919945c -0.30425200158381394,0.46092208064694085 -0.17724580837774134,1.0812182335895912 0.2836762722691992 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.83446552690776,-72.06061375091528 c 4.9506423292737814e-2,0.5500614137970617 0.5355521891016104,0.9558414083845438 1.0856136028986723 0.906334985091806c 0.5500614137970617,-4.950642329273778e-2 0.9558414083845438,-0.5355521891016104 0.906334985091806 -1.085613602898672c -4.9506423292737745e-2,-0.5500614137970617 -0.5355521891016104,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273771e-2 -0.9558414083845438,0.5355521891016103 -0.9063349850918065 1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.33067255999693,-73.92717239589014 c -0.3991885805478934,0.3816633622131159 -0.4133955770536431,1.0146689322663627 -3.173221484052724e-2 1.413857512814256c 0.3816633622131159,0.3991885805478934 1.0146689322663627,0.41339557705364316 1.413857512814256 3.173221484052735e-2c 0.39918858054789347,-0.38166336221311586 0.4133955770536432,-1.0146689322663627 3.173221484052746e-2 -1.4138575128142559c -0.38166336221311586,-0.39918858054789347 -1.0146689322663627,-0.4133955770536432 -1.4138575128142563 -3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.22891749167661,-77.04849684271613 c -0.5472864412728882,-7.413498563107442e-2 -1.051048041954516,0.30943005467739065 -1.1251830275855905 0.8567164959502787c -7.413498563107444e-2,0.5472864412728882 0.3094300546773906,1.051048041954516 0.8567164959502787 1.1251830275855905c 0.5472864412728882,7.413498563107448e-2 1.051048041954516,-0.30943005467739054 1.1251830275855905 -0.8567164959502784c 7.413498563107451e-2,-0.5472864412728882 -0.3094300546773905,-1.051048041954516 -0.8567164959502787 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.60582396381713,-79.07416611951801 c -0.2832664491105155,-0.47410817721695314 -0.897239893790819,-0.6288159653064758 -1.371348071007772 -0.3455495161959603c -0.47410817721695314,0.28326644911051546 -0.6288159653064758,0.897239893790819 -0.3455495161959604 1.371348071007772c 0.28326644911051546,0.4741081772169532 0.8972398937908189,0.6288159653064759 1.371348071007772 0.3455495161959604c 0.4741081772169532,-0.2832664491105154 0.6288159653064759,-0.8972398937908188 0.3455495161959603 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 44.67153292284071,-78.47880994474106 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.2876096947210802 -0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 46.11750299353652,-75.71074366104509 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 35.28974913669695,-61.76442104669371 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 36.58500067401193,-60.056641714441255 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 34.89672410504303,-62.683948819245174 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 35.898212290221494,-65.6419957781744 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 38.83532419947196,-66.70331289799371 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.496354658964506,-65.06870674055534 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 41.87749345757215,-61.969069082299384 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 39.69173530612871,-59.738490300978015 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 23.08203435272308,-65.72664546649506 l -1.179075094961771,2.7585833176543506 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.2592143980108323,-1.9738161778191368 l -0.13459449105154397,-2.996979199623943 l -2.427050983124842,-1.7633557568774194 l -2.891888582087558,0.7981105367000245 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 21.858094427410794,-63.967055215382025 c -0.5517286358374671,2.477816160633497e-2 -0.978906397797135,0.492129261054362 -0.9541282361908 1.043857896891829c 2.4778161606334934e-2,0.5517286358374671 0.49212926105436194,0.978906397797135 1.0438578968918288 0.9541282361908c 0.5517286358374671,-2.4778161606334902e-2 0.978906397797135,-0.4921292610543619 0.9541282361908 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374671 -0.49212926105436183,-0.978906397797135 -1.0438578968918288 -0.9541282361908001Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.835105818726692,-66.38458419243477 c -0.36336952465960504,-0.4159098862065132 -0.9951003057368102,-0.4585022647235038 -1.411010191943323 -9.513274006389882e-2c -0.4159098862065132,0.36336952465960504 -0.45850226472350386,0.9951003057368101 -9.513274006389894e-2 1.411010191943323c 0.363369524659605,0.41590988620651326 0.9951003057368101,0.45850226472350386 1.411010191943323 9.513274006389905e-2c 0.41590988620651326,-0.363369524659605 0.4585022647235039,-0.99510030573681 9.513274006389905e-2 -1.4110101919433233Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 26.957852523409272,-66.34619910839645 c 9.861424997442843e-2,-0.5434093066903096 -0.26196338710968303,-1.0638722334228379 -0.8053726937999925 -1.1624864833972663c -0.5434093066903096,-9.861424997442846e-2 -1.0638722334228379,0.261963387109683 -1.1624864833972663 0.8053726937999924c -9.86142499744285e-2,0.5434093066903096 0.2619633871096829,1.0638722334228379 0.8053726937999923 1.1624864833972663c 0.5434093066903096,9.861424997442853e-2 1.0638722334228379,-0.26196338710968287 1.1624864833972666 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.87484258040848,-63.88080471446092 c 0.48633948301361307,-0.26171043570655267 0.6684373050902923,-0.8681247113161233 0.40672686938373964 -1.3544641943297362c -0.2617104357065526,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.3544641943297362 -0.4067268693837397c -0.4863394830136131,0.2617104357065526 -0.6684373050902923,0.8681247113161232 -0.40672686938373975 1.354464194329736c 0.26171043570655256,0.4863394830136131 0.8681247113161232,0.6684373050902923 1.3544641943297364 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 28.1425433773331,-60.84489327414227 c 0.5078411658260445,0.2170617312842269 1.0954910729211471,-1.866157507148214e-2 1.312552804205374 -0.5265027408975266c 0.21706173128422693,-0.5078411658260445 -1.8661575071482084e-2,-1.0954910729211471 -0.5265027408975265 -1.312552804205374c -0.5078411658260445,-0.21706173128422696 -1.0954910729211471,1.866157507148203e-2 -1.312552804205374 0.5265027408975264c -0.21706173128422698,0.5078411658260445 1.8661575071481973e-2,1.0954910729211471 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 25.31239115028034,-59.524568023307914 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 22.51554825080536,-60.91406080556297 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674206 0.2212317420824741Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 23.077942375468712,-78.5612668421121 l -2.987922881985716,-0.2689179267103008 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.5753463808055974,1.5386978322177185 l 2.808704611919211,-1.054124472244027 l 0.9270509831248425,-2.8531695488854605 l -1.6526909443563076,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 21.026254364122735,-79.18155959290375 c -0.19405895681460328,-0.5170682413141326 -0.770541453406947,-0.7789190033729982 -1.2876096947210796 -0.5848600465583949c -0.5170682413141326,0.19405895681460325 -0.7789190033729982,0.770541453406947 -0.584860046558395 1.2876096947210796c 0.19405895681460322,0.5170682413141326 0.770541453406947,0.7789190033729982 1.2876096947210793 0.5848600465583951c 0.5170682413141326,-0.1940589568146032 0.7789190033729982,-0.7705414534069469 0.5848600465583951 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.93639116907058,-78.0483675647062 c 0.28326644911051574,-0.474108177216953 0.12855866102099345,-1.0880816218972567 -0.3455495161959594 -1.3713480710077723c -0.474108177216953,-0.2832664491105158 -1.0880816218972567,-0.1285586610209935 -1.3713480710077721 0.3455495161959593c -0.2832664491105158,0.4741081772169529 -0.12855866102099356,1.0880816218972564 0.3455495161959593 1.3713480710077721c 0.4741081772169529,0.28326644911051585 1.0880816218972564,0.12855866102099361 1.3713480710077723 -0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 24.864866585642677,-75.06659731918026 c 0.5472864412728882,-7.413498563107417e-2 0.9308514815813536,-0.5778965863127017 0.8567164959502794 -1.1251830275855899c -7.413498563107414e-2,-0.5472864412728882 -0.5778965863127017,-0.9308514815813536 -1.1251830275855896 -0.8567164959502794c -0.5472864412728882,7.41349856310741e-2 -0.9308514815813536,0.5778965863127017 -0.8567164959502794 1.1251830275855896c 7.413498563107407e-2,0.5472864412728882 0.5778965863127016,0.9308514815813536 1.1251830275855896 0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 23.112519687713313,-72.48158266823535 c 0.3991885805478933,0.38166336221311603 1.03219415060114,0.3674563657073667 1.413857512814256 -3.1732214840526574e-2c 0.38166336221311603,-0.3991885805478933 0.36745636570736673,-1.03219415060114 -3.173221484052646e-2 -1.413857512814256c -0.39918858054789325,-0.3816633622131161 -1.03219415060114,-0.3674563657073668 -1.4138575128142559 3.173221484052635e-2c -0.3816633622131161,0.39918858054789325 -0.36745636570736684,1.03219415060114 3.173221484052635e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 19.998903430785727,-72.23989236872214 c -4.950642329273803e-2,0.5500614137970616 0.3562735712947436,1.0361071796059345 0.9063349850918052 1.0856136028986725c 0.5500614137970616,4.9506423292738064e-2 1.0361071796059345,-0.3562735712947435 1.0856136028986725 -0.906334985091805c 4.95064232927381e-2,-0.5500614137970616 -0.35627357129474346,-1.0361071796059345 -0.906334985091805 -1.0856136028986725c -0.5500614137970616,-4.950642329273813e-2 -1.0361071796059345,0.3562735712947434 -1.0856136028986727 0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 17.868634362523267,-74.52352414575773 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.385470235173405 -0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 18.32584854089735,-77.6128566936354 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202057 -1.260073510670101Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 78.67413094169565,-101.86060170536192 l -10.607884752734037,-7.707079405040908 l -10.607884752734035,7.707079405040911 l 4.051851426802629,12.47031643135051 h 13.112066651862817 l 4.05185142680263,-12.470316431350513 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 78.98402723702263,-98.41737185758907 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296736,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029935 l -1.6526909443563085,2.503719761163907 l 0.9270509831248416,2.853169548885461 l 2.808704611919211,1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 81.00847663637613,-99.1214964360855 c 0.46092208064694085,0.3042520015838138 1.0812182335895912,0.17724580837774123 1.385470235173405 -0.28367627226919945c 0.3042520015838139,-0.46092208064694085 0.1772458083777413,-1.0812182335895912 -0.28367627226919934 -1.385470235173405c -0.4609220806469408,-0.3042520015838139 -1.0812182335895912,-0.17724580837774134 -1.385470235173405 0.28367627226919934c -0.30425200158381394,0.4609220806469408 -0.1772458083777414,1.0812182335895912 0.28367627226919945 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.9880529430274,-98.32773254868565 c 4.9506423292737786e-2,0.5500614137970617 0.5355521891016104,0.9558414083845437 1.085613602898672 0.906334985091806c 0.5500614137970617,-4.950642329273775e-2 0.9558414083845437,-0.5355521891016103 0.906334985091806 -1.0856136028986718c -4.950642329273772e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273768e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.48425997611656,-100.1942911936605 c -0.3991885805478934,0.38166336221311586 -0.41339557705364316,1.0146689322663627 -3.173221484052735e-2 1.413857512814256c 0.38166336221311586,0.3991885805478934 1.0146689322663627,0.4133955770536432 1.4138575128142559 3.173221484052746e-2c 0.39918858054789347,-0.3816633622131158 0.4133955770536432,-1.0146689322663625 3.173221484052757e-2 -1.4138575128142556c -0.3816633622131158,-0.39918858054789347 -1.0146689322663625,-0.41339557705364327 -1.413857512814256 -3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.38250490779623,-103.3156156404865 c -0.5472864412728882,-7.413498563107444e-2 -1.051048041954516,0.30943005467739054 -1.1251830275855903 0.8567164959502785c -7.413498563107447e-2,0.5472864412728882 0.3094300546773905,1.0510480419545158 0.8567164959502784 1.1251830275855903c 0.5472864412728882,7.413498563107451e-2 1.0510480419545158,-0.30943005467739043 1.1251830275855903 -0.8567164959502783c 7.413498563107454e-2,-0.5472864412728882 -0.3094300546773904,-1.0510480419545158 -0.8567164959502784 -1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.75941137993675,-105.34128491728838 c -0.28326644911051546,-0.47410817721695314 -0.8972398937908189,-0.6288159653064759 -1.371348071007772 -0.3455495161959604c -0.47410817721695314,0.2832664491105154 -0.6288159653064759,0.8972398937908188 -0.3455495161959605 1.371348071007772c 0.2832664491105154,0.4741081772169532 0.8972398937908188,0.6288159653064759 1.371348071007772 0.3455495161959605c 0.4741081772169532,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.3455495161959605 -1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 80.82512033896035,-104.74592874251142 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 82.27109040965614,-101.97786245881545 c 0.5252540101770149,-0.17066537343183144 0.8127048953520379,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.1706653734318314,-0.5252540101770149 -0.7348195004930859,-0.8127048953520379 -1.2600735106701006 -0.6420395219202065c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202065 1.2600735106701004c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 71.44333655281658,-88.03153984446408 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 72.73858809013154,-86.32376051221162 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.05031152116266,-88.95106761701553 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 72.05179970634111,-91.90911457594477 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 74.98891161559159,-92.97043169576408 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 77.64994207508413,-91.33582553832571 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 78.03108087369176,-88.23618788006975 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 75.84532272224835,-86.00560909874838 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 59.235621768842705,-91.99376426426542 l -1.179075094961771,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959098 l 2.259214398010833,-1.9738161778191368 l -0.13459449105154375,-2.9969791996239437 l -2.427050983124842,-1.7633557568774196 l -2.8918885820875597,0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.011681843530425,-90.23417401315238 c -0.5517286358374672,2.4778161606334937e-2 -0.9789063977971351,0.492129261054362 -0.9541282361908001 1.043857896891829c 2.4778161606334902e-2,0.5517286358374672 0.49212926105436194,0.9789063977971351 1.0438578968918288 0.9541282361908001c 0.5517286358374672,-2.477816160633487e-2 0.9789063977971351,-0.4921292610543619 0.9541282361908001 -1.0438578968918288c -2.4778161606334836e-2,-0.5517286358374672 -0.49212926105436183,-0.9789063977971351 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.988693234846316,-92.65170299020514 c -0.36336952465960504,-0.41590988620651326 -0.9951003057368102,-0.4585022647235039 -1.4110101919433233 -9.513274006389894e-2c -0.41590988620651326,0.36336952465960504 -0.45850226472350397,0.9951003057368102 -9.513274006389905e-2 1.4110101919433233c 0.363369524659605,0.4159098862065133 0.9951003057368102,0.45850226472350397 1.411010191943323 9.513274006389916e-2c 0.4159098862065133,-0.363369524659605 0.458502264723504,-0.9951003057368101 9.513274006389927e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 63.11143993952889,-92.61331790616681 c 9.861424997442848e-2,-0.5434093066903097 -0.261963387109683,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442851e-2 -1.063872233422838,0.2619633871096829 -1.1624864833972666 0.8053726937999924c -9.861424997442855e-2,0.5434093066903097 0.26196338710968287,1.063872233422838 0.8053726937999923 1.1624864833972666c 0.5434093066903097,9.861424997442858e-2 1.063872233422838,-0.2619633871096828 1.1624864833972668 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.0284299965281,-90.14792351223129 c 0.48633948301361307,-0.2617104357065526 0.6684373050902923,-0.8681247113161232 0.4067268693837397 -1.3544641943297362c -0.26171043570655256,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.354464194329736 -0.40672686938373975c -0.4863394830136131,0.26171043570655256 -0.6684373050902923,0.8681247113161232 -0.4067268693837398 1.354464194329736c 0.2617104357065525,0.4863394830136131 0.8681247113161231,0.6684373050902923 1.354464194329736 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 64.29613079345273,-87.11201207191263 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 61.46597856639997,-85.79168682107827 c 0.14692809269956447,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956444 0.844854107828743,-0.6976177188969428 0.6979260151291786 -1.229999706262528c -0.14692809269956442,-0.5323819873655854 -0.6976177188969428,-0.8448541078287432 -1.2299997062625279 -0.6979260151291786c -0.5323819873655854,0.14692809269956436 -0.8448541078287432,0.6976177188969427 -0.6979260151291788 1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 58.66913566692498,-87.18117960333333 c -0.3246248310165784,0.44680774834722825 -0.22557600626475421,1.0721774156508421 0.22123174208247387 1.3968022466674204c 0.44680774834722825,0.3246248310165784 1.0721774156508421,0.22557600626475427 1.3968022466674204 -0.22123174208247387c 0.32462483101657846,-0.4468077483472282 0.22557600626475433,-1.0721774156508421 -0.22123174208247376 -1.3968022466674204c -0.4468077483472282,-0.32462483101657846 -1.0721774156508421,-0.22557600626475438 -1.3968022466674204 0.22123174208247387Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 59.23152979158834,-104.82838563988247 l -2.987922881985716,-0.2689179267103008 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.5753463808055974,1.5386978322177185 l 2.808704611919211,-1.054124472244027 l 0.9270509831248425,-2.8531695488854605 l -1.6526909443563076,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 57.17984178024236,-105.44867839067412 c -0.19405895681460328,-0.5170682413141326 -0.770541453406947,-0.7789190033729982 -1.2876096947210796 -0.5848600465583949c -0.5170682413141326,0.19405895681460325 -0.7789190033729982,0.770541453406947 -0.584860046558395 1.2876096947210796c 0.19405895681460322,0.5170682413141326 0.770541453406947,0.7789190033729982 1.2876096947210793 0.5848600465583951c 0.5170682413141326,-0.1940589568146032 0.7789190033729982,-0.7705414534069469 0.5848600465583951 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 60.08997858519021,-104.31548636247656 c 0.28326644911051574,-0.474108177216953 0.12855866102099345,-1.0880816218972567 -0.3455495161959594 -1.3713480710077723c -0.474108177216953,-0.2832664491105158 -1.0880816218972567,-0.1285586610209935 -1.3713480710077721 0.3455495161959593c -0.2832664491105158,0.4741081772169529 -0.12855866102099356,1.0880816218972564 0.3455495161959593 1.3713480710077721c 0.4741081772169529,0.28326644911051585 1.0880816218972564,0.12855866102099361 1.3713480710077723 -0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 61.0184540017623,-101.33371611695063 c 0.5472864412728882,-7.413498563107417e-2 0.9308514815813536,-0.5778965863127017 0.8567164959502794 -1.1251830275855899c -7.413498563107414e-2,-0.5472864412728882 -0.5778965863127017,-0.9308514815813536 -1.1251830275855896 -0.8567164959502794c -0.5472864412728882,7.41349856310741e-2 -0.9308514815813536,0.5778965863127017 -0.8567164959502794 1.1251830275855896c 7.413498563107407e-2,0.5472864412728882 0.5778965863127016,0.9308514815813536 1.1251830275855896 0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 59.26610710383294,-98.74870146600571 c 0.3991885805478933,0.38166336221311603 1.03219415060114,0.3674563657073667 1.413857512814256 -3.1732214840526574e-2c 0.38166336221311603,-0.3991885805478933 0.36745636570736673,-1.03219415060114 -3.173221484052646e-2 -1.413857512814256c -0.39918858054789325,-0.3816633622131161 -1.03219415060114,-0.3674563657073668 -1.4138575128142559 3.173221484052635e-2c -0.3816633622131161,0.39918858054789325 -0.36745636570736684,1.03219415060114 3.173221484052635e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 56.15249084690535,-98.5070111664925 c -4.950642329273803e-2,0.5500614137970616 0.3562735712947436,1.0361071796059345 0.9063349850918052 1.0856136028986725c 0.5500614137970616,4.9506423292738064e-2 1.0361071796059345,-0.3562735712947435 1.0856136028986725 -0.906334985091805c 4.95064232927381e-2,-0.5500614137970616 -0.35627357129474346,-1.0361071796059345 -0.906334985091805 -1.0856136028986725c -0.5500614137970616,-4.950642329273813e-2 -1.0361071796059345,0.3562735712947434 -1.0856136028986727 0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 54.022221778642894,-100.7906429435281 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.385470235173405 -0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 54.47943595701698,-103.87997549140576 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202057 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 71.43671559453782,-108.79839346294841 l -0.6675628018689428,-2.92478373654547 l -2.702906603707257,-1.3016512173526746 l -2.702906603707256,1.3016512173526742 l -0.6675628018689435,2.92478373654547 l 1.8704694055761997,2.3454944474040893 l 3.0,1.1102230246251565e-16 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.39264259452762,-110.94134571702585 c 0.4317936047046943,-0.3443439092416015 0.5026855898508982,-0.9735276796220689 0.15834168060929665 -1.405321284326763c -0.3443439092416015,-0.4317936047046943 -0.9735276796220689,-0.5026855898508982 -1.405321284326763 -0.15834168060929676c -0.43179360470469436,0.34434390924160146 -0.5026855898508982,0.9735276796220689 -0.15834168060929676 1.4053212843267628c 0.34434390924160146,0.43179360470469436 0.9735276796220688,0.5026855898508982 1.405321284326763 0.158341680609297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 71.2141946605815,-107.82346555076658 c 0.5384378180823962,0.12289491834217771 1.0745539277959604,-0.2139691601431127 1.197448846138138 -0.7524069782255088c 0.12289491834217774,-0.5384378180823962 -0.21396916014311265,-1.0745539277959604 -0.7524069782255087 -1.197448846138138c -0.5384378180823962,-0.12289491834217778 -1.0745539277959604,0.2139691601431126 -1.197448846138138 0.7524069782255086c -0.1228949183421778,0.5384378180823962 0.21396916014311254,1.0745539277959604 0.7524069782255087 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 68.6652773210592,-106.01901527642677 c 0.2396273723141898,0.4975913658148208 0.8372612412051563,0.7067125010990509 1.3348526070199769 0.46708512878486125c 0.4975913658148208,-0.23962737231418976 0.7067125010990509,-0.8372612412051563 0.4670851287848613 -1.3348526070199769c -0.23962737231418973,-0.49759136581482083 -0.8372612412051562,-0.706712501099051 -1.3348526070199767 -0.4670851287848613c -0.49759136581482083,0.2396273723141897 -0.706712501099051,0.8372612412051561 -0.4670851287848614 1.334852607019977Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.6652773210592,-106.8867827546619 c -0.2396273723141899,0.49759136581482066 -3.050623702995997e-2,1.0952252347057874 0.4670851287848606 1.334852607019977c 0.49759136581482066,0.23962737231418993 1.0952252347057874,3.0506237029960026e-2 1.334852607019977 -0.46708512878486047c 0.23962737231418996,-0.4975913658148206 3.050623702996008e-2,-1.0952252347057874 -0.46708512878486036 -1.334852607019977c -0.4975913658148206,-0.23962737231418998 -1.0952252347057874,-3.0506237029960137e-2 -1.3348526070199773 0.4670851287848605Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 64.4732558494291,-109.77332137513024 c -0.5384378180823962,0.12289491834217757 -0.8753018965676869,0.6590110280557416 -0.7524069782255094 1.1974488461381378c 0.12289491834217754,0.5384378180823962 0.6590110280557415,0.8753018965676869 1.1974488461381376 0.7524069782255094c 0.5384378180823962,-0.1228949183421775 0.8753018965676869,-0.6590110280557415 0.7524069782255094 -1.1974488461381374c -0.12289491834217747,-0.5384378180823962 -0.6590110280557415,-0.8753018965676869 -1.1974488461381376 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 65.98682938711309,-112.50500868196193 c -0.43179360470469424,-0.3443439092416017 -1.0609773750851617,-0.2734519240953981 -1.4053212843267633 0.158341680609296c -0.3443439092416017,0.43179360470469424 -0.27345192409539815,1.0609773750851617 0.158341680609296 1.4053212843267633c 0.4317936047046942,0.34434390924160174 1.0609773750851617,0.2734519240953982 1.4053212843267633 -0.15834168060929588c 0.34434390924160174,-0.4317936047046942 0.2734519240953982,-1.0609773750851614 -0.1583416806092961 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 69.06624618896161,-113.02482841684656 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g></g></g></g><g></g><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -31.912658772842043,72.14677221605953 l -36.15358741611963,26.267118797770355 l -36.15358741611962,-26.26711879777035 l 13.809441577717198,-42.501091001323715 l 44.68829167680483,-3.552713678800501e-15 l 13.809441577717216,42.501091001323715 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -25.356625446910634,63.12316647624104 l 4.051851426802628,12.47031643135051 l -10.607884752734037,7.70707940504091 l -10.607884752734037,-7.707079405040909 l 4.051851426802625,-12.47031643135051 l 13.112066651862822,-1.7763568394002505e-15 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -28.53556840898709,61.76442104669372 l 2.259214398010831,-1.9738161778191383 l 2.9517887657958894,0.5356706843959083 l 1.4216059874189964,2.6417865955702124 l -1.179075094961769,2.758583317654352 l -2.8918885820875584,0.798110536700027 l -2.4270509831248432,-1.7633557568774183 l -0.13459449105154686,-2.9969791996239428 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -27.24031687167211,60.056641714441255 c -0.1469280926995649,-0.5323819873655853 0.16554402776359217,-1.0830716135629639 0.6979260151291773 -1.2299997062625287c 0.5323819873655853,-0.14692809269956492 1.0830716135629639,0.16554402776359212 1.2299997062625287 0.6979260151291772c 0.14692809269956494,0.5323819873655853 -0.16554402776359206,1.0830716135629639 -0.6979260151291771 1.2299997062625287c -0.5323819873655853,0.146928092699565 -1.0830716135629639,-0.165544027763592 -1.229999706262529 -0.6979260151291772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.928593440641013,62.683948819245174 c -0.5078411658260448,-0.21706173128422657 -0.7435644721817545,-0.8047116383793291 -0.526502740897528 -1.3125528042053738c 0.21706173128422654,-0.5078411658260448 0.804711638379329,-0.7435644721817545 1.3125528042053736 -0.526502740897528c 0.5078411658260448,0.2170617312842265 0.7435644721817545,0.8047116383793289 0.526502740897528 1.3125528042053736c -0.21706173128422648,0.5078411658260448 -0.8047116383793289,0.7435644721817545 -1.3125528042053736 0.5265027408975282Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -27.927105255462543,65.6419957781744 c -0.4863394830136129,0.261710435706553 -1.092753758623184,7.961261362987432e-2 -1.3544641943297369 -0.4067268693837385c -0.26171043570655306,-0.4863394830136129 -7.961261362987437e-2,-1.0927537586231837 0.40672686938373837 -1.3544641943297366c 0.48633948301361285,-0.26171043570655306 1.0927537586231837,-7.961261362987443e-2 1.3544641943297366 0.40672686938373825c 0.2617104357065531,0.48633948301361285 7.961261362987448e-2,1.0927537586231837 -0.40672686938373814 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.989993346212067,66.70331289799371 c -9.861424997442805e-2,0.5434093066903097 -0.6190771767069561,0.9039869437744217 -1.1624864833972657 0.8053726937999935c -0.5434093066903097,-9.861424997442803e-2 -0.9039869437744217,-0.619077176706956 -0.8053726937999937 -1.1624864833972655c 9.861424997442798e-2,-0.5434093066903097 0.6190771767069558,-0.9039869437744217 1.1624864833972652 -0.8053726937999937c 0.5434093066903097,9.861424997442796e-2 0.9039869437744217,0.6190771767069558 0.8053726937999941 1.1624864833972657Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -22.32896288671953,65.06870674055534 c 0.3633695246596053,0.415909886206513 0.3207771461426153,1.0476406672837182 -9.513274006389749e-2 1.4110101919433236c -0.415909886206513,0.3633695246596053 -1.0476406672837182,0.3207771461426154 -1.4110101919433233 -9.513274006389749e-2c -0.36336952465960537,-0.4159098862065129 -0.32077714614261543,-1.047640667283718 9.513274006389738e-2 -1.411010191943323c 0.4159098862065129,-0.36336952465960537 1.047640667283718,-0.3207771461426155 1.4110101919433236 9.513274006389705e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -21.947824088111886,61.969069082299384 c 0.5517286358374672,-2.4778161606335395e-2 1.0190797352854948,0.402399600353332 1.0438578968918302 0.954128236190799c 2.477816160633543e-2,0.5517286358374672 -0.40239960035333194,1.0190797352854948 -0.954128236190799 1.0438578968918302c -0.5517286358374672,2.477816160633546e-2 -1.0190797352854948,-0.4023996003533319 -1.0438578968918302 -0.9541282361907988c -2.4778161606335496e-2,-0.5517286358374672 0.40239960035333183,-1.0190797352854948 0.954128236190799 -1.0438578968918304Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.133582239555313,59.738490300978015 c 0.32462483101657813,-0.4468077483472284 0.949994498320192,-0.5458565730990531 1.3968022466674204 -0.22123174208247498c 0.4468077483472284,0.32462483101657813 0.5458565730990531,0.949994498320192 0.2212317420824751 1.3968022466674204c -0.3246248310165781,0.4468077483472285 -0.9499944983201919,0.5458565730990532 -1.3968022466674201 0.2212317420824751c -0.4468077483472285,-0.3246248310165781 -0.5458565730990532,-0.9499944983201918 -0.2212317420824752 -1.3968022466674204Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -40.74328319296095,65.72664546649506 l -1.1790750949617717,-2.7585833176543506 l 1.4216059874189948,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.1345944910515433,2.996979199623943 l -2.4270509831248415,1.76335575687742 l -2.8918885820875593,-0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.96722311827324,63.967055215382025 c -0.5517286358374671,-2.4778161606334875e-2 -0.978906397797135,-0.49212926105436183 -0.9541282361908001 -1.0438578968918288c 2.477816160633484e-2,-0.5517286358374671 0.4921292610543618,-0.978906397797135 1.0438578968918288 -0.9541282361908001c 0.5517286358374671,2.477816160633481e-2 0.978906397797135,0.4921292610543617 0.9541282361908001 1.0438578968918286c -2.4778161606334774e-2,0.5517286358374671 -0.49212926105436167,0.978906397797135 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -39.99021172695734,66.38458419243477 c -0.363369524659605,0.41590988620651337 -0.9951003057368102,0.4585022647235041 -1.4110101919433233 9.513274006389916e-2c -0.41590988620651337,-0.363369524659605 -0.45850226472350414,-0.9951003057368101 -9.513274006389927e-2 -1.4110101919433233c 0.3633695246596049,-0.4159098862065134 0.99510030573681,-0.45850226472350414 1.411010191943323 -9.513274006389938e-2c 0.4159098862065134,0.3633695246596049 0.4585022647235042,0.99510030573681 9.513274006389949e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.867465022274764,66.34619910839645 c 9.861424997442858e-2,0.5434093066903096 -0.26196338710968275,1.063872233422838 -0.8053726937999923 1.1624864833972666c -0.5434093066903096,9.861424997442861e-2 -1.063872233422838,-0.2619633871096827 -1.1624864833972666 -0.8053726937999921c -9.861424997442865e-2,-0.5434093066903096 0.26196338710968264,-1.063872233422838 0.8053726937999921 -1.1624864833972666c 0.5434093066903096,-9.861424997442868e-2 1.063872233422838,0.2619633871096826 1.1624864833972668 0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -34.95047496527556,63.88080471446092 c 0.4863394830136131,0.26171043570655256 0.6684373050902924,0.8681247113161231 0.40672686938374 1.3544641943297362c -0.2617104357065525,0.4863394830136131 -0.8681247113161231,0.6684373050902925 -1.354464194329736 0.40672686938374003c -0.4863394830136132,-0.2617104357065525 -0.6684373050902925,-0.868124711316123 -0.4067268693837401 -1.354464194329736c 0.26171043570655245,-0.4863394830136132 0.868124711316123,-0.6684373050902925 1.354464194329736 -0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.68277416835094,60.84489327414227 c 0.5078411658260445,-0.21706173128422704 1.0954910729211473,1.8661575071481917e-2 1.3125528042053742 0.5265027408975264c 0.21706173128422707,0.5078411658260445 -1.8661575071481862e-2,1.0954910729211473 -0.5265027408975262 1.3125528042053742c -0.5078411658260445,0.2170617312842271 -1.0954910729211473,-1.8661575071481806e-2 -1.3125528042053742 -0.5265027408975261c -0.21706173128422712,-0.5078411658260445 1.866157507148175e-2,-1.0954910729211471 0.5265027408975262 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.512926395403696,59.52456802330791 c 0.14692809269956444,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956442 0.8448541078287432,0.6976177188969428 0.6979260151291787 1.2299997062625279c -0.1469280926995644,0.5323819873655854 -0.6976177188969427,0.8448541078287432 -1.2299997062625279 0.6979260151291787c -0.5323819873655854,-0.14692809269956433 -0.8448541078287432,-0.6976177188969426 -0.6979260151291791 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.309769294878684,60.91406080556297 c -0.32462483101657846,-0.44680774834722814 -0.22557600626475438,-1.0721774156508421 0.22123174208247365 -1.3968022466674204c 0.44680774834722814,-0.32462483101657846 1.0721774156508421,-0.22557600626475444 1.3968022466674204 0.22123174208247365c 0.3246248310165785,0.4468077483472281 0.2255760062647545,1.0721774156508421 -0.22123174208247354 1.3968022466674204c -0.4468077483472281,0.3246248310165785 -1.072177415650842,0.2255760062647545 -1.3968022466674204 -0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -40.747375170215314,78.5612668421121 l -2.987922881985716,0.2689179267103019 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.575346380805597,-1.5386978322177194 l 2.808704611919212,1.054124472244026 l 0.9270509831248435,2.85316954888546 l -1.652690944356306,2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.799063181561294,79.18155959290375 c -0.19405895681460308,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583953c -0.5170682413141326,-0.19405895681460306 -0.7789190033729985,-0.7705414534069468 -0.5848600465583954 -1.2876096947210791c 0.19405895681460303,-0.5170682413141326 0.7705414534069467,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.194058956814603 0.7789190033729985,0.7705414534069466 0.5848600465583957 1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -39.88892637661345,78.0483675647062 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.960450960041356,75.06659731918026 c 0.5472864412728883,7.413498563107399e-2 0.9308514815813538,0.5778965863127015 0.8567164959502799 1.1251830275855896c -7.413498563107396e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855894 0.8567164959502799c -0.5472864412728883,-7.413498563107392e-2 -0.9308514815813538,-0.5778965863127014 -0.8567164959502799 -1.1251830275855894c 7.413498563107389e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855894 -0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -40.71279785797072,72.48158266823535 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.173221484052546e-2 -1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -43.826414114898306,72.23989236872214 c -4.950642329273823e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.9506423292738265e-2 1.0361071796059347,0.35627357129474313 1.085613602898673 0.9063349850918047c 4.95064232927383e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.9506423292738334e-2 -1.0361071796059347,-0.356273571294743 -1.0856136028986731 -0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.95668318316077,74.52352414575773 c -0.46092208064694107,-0.30425200158381355 -0.5879282738530143,-0.9245481545264639 -0.2836762722692008 -1.385470235173405c 0.3042520015838135,-0.46092208064694107 0.9245481545264639,-0.5879282738530143 1.3854702351734047 -0.2836762722692009c 0.4609220806469411,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692009 1.3854702351734047c -0.30425200158381344,0.4609220806469411 -0.9245481545264638,0.5879282738530144 -1.385470235173405 0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.499469004786675,77.6128566936354 c -0.5252540101770148,0.17066537343183175 -1.0894081372382693,-0.1167855117431908 -1.260073510670101 -0.6420395219202054c -0.17066537343183177,-0.5252540101770148 0.11678551174319074,-1.0894081372382693 0.6420395219202053 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382693,0.11678551174319068 1.260073510670101 0.6420395219202052c 0.17066537343183183,0.5252540101770148 -0.11678551174319063,1.0894081372382693 -0.6420395219202053 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -28.54218936726584,82.53127466517805 l -0.667562801868942,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689442,-2.92478373654547 l 1.870469405576199,-2.3454944474040897 l 3.0,-9.43689570931383e-16 l 1.870469405576201,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.58626236727605,84.67422691925549 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.764710301222156,81.55634675299622 c 0.5384378180823962,-0.12289491834217786 1.0745539277959604,0.21396916014311237 1.1974488461381383 0.7524069782255084c 0.12289491834217789,0.5384378180823962 -0.21396916014311232,1.0745539277959604 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217793 -1.0745539277959604,-0.21396916014311226 -1.1974488461381383 -0.7524069782255082c -0.12289491834217796,-0.5384378180823962 0.2139691601431122,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -31.31362764074446,79.7518964786564 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -34.313627640744464,80.61966395689153 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.50564911237455,83.50620257735987 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381374 0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -33.99207557469057,86.23788988419156 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -30.91265877284204,86.7577096190762 c 1.5328981135287284e-16,0.5522847498307935 -0.44771525016920616,1.0000000000000002 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.8710749890778175e-16 -1.0000000000000002,-0.4477152501692061 -1.0000000000000002 -0.9999999999999993c -2.2092518646269063e-16,-0.5522847498307935 0.44771525016920605,-1.0000000000000002 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.547428740175995e-16 1.0000000000000002,0.447715250169206 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -20.994877724781023,72.15025305981871 l 2.575346380805598,1.5386978322177174 l 0.40269979745296736,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029935 l -1.6526909443563085,-2.503719761163907 l 0.9270509831248416,-2.853169548885461 l 2.808704611919211,-1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -18.970428325427527,72.85437763831513 c 0.46092208064694085,-0.3042520015838138 1.0812182335895912,-0.17724580837774123 1.385470235173405 0.28367627226919945c 0.3042520015838139,0.46092208064694085 0.1772458083777413,1.0812182335895912 -0.28367627226919934 1.385470235173405c -0.4609220806469408,0.3042520015838139 -1.0812182335895912,0.17724580837774134 -1.385470235173405 -0.28367627226919934c -0.30425200158381394,-0.4609220806469408 -0.1772458083777414,-1.0812182335895912 0.28367627226919945 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -21.990852018776263,72.06061375091528 c 4.9506423292737786e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845437 1.085613602898672 -0.906334985091806c 0.5500614137970617,4.950642329273775e-2 0.9558414083845437,0.5355521891016103 0.906334985091806 1.0856136028986718c -4.950642329273772e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273768e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.4946449856871,73.92717239589014 c -0.3991885805478934,-0.38166336221311586 -0.41339557705364316,-1.0146689322663627 -3.173221484052735e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478934 1.0146689322663627,-0.4133955770536432 1.4138575128142559 -3.173221484052746e-2c 0.39918858054789347,0.3816633622131158 0.4133955770536432,1.0146689322663625 3.173221484052757e-2 1.4138575128142556c -0.3816633622131158,0.39918858054789347 -1.0146689322663625,0.41339557705364327 -1.413857512814256 3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.596400054007418,77.04849684271613 c -0.5472864412728882,7.413498563107444e-2 -1.051048041954516,-0.30943005467739054 -1.1251830275855903 -0.8567164959502785c -7.413498563107447e-2,-0.5472864412728882 0.3094300546773905,-1.0510480419545158 0.8567164959502784 -1.1251830275855903c 0.5472864412728882,-7.413498563107451e-2 1.0510480419545158,0.30943005467739043 1.1251830275855903 0.8567164959502783c 7.413498563107454e-2,0.5472864412728882 -0.3094300546773904,1.0510480419545158 -0.8567164959502784 1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -22.219493581866903,79.07416611951801 c -0.28326644911051546,0.47410817721695314 -0.8972398937908189,0.6288159653064759 -1.371348071007772 0.3455495161959604c -0.47410817721695314,-0.2832664491105154 -0.6288159653064759,-0.8972398937908188 -0.3455495161959605 -1.371348071007772c 0.2832664491105154,-0.4741081772169532 0.8972398937908188,-0.6288159653064759 1.371348071007772 -0.3455495161959605c 0.4741081772169532,0.28326644911051535 0.628815965306476,0.8972398937908188 0.3455495161959605 1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -19.153784622843315,78.47880994474106 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -17.707814552147514,75.71074366104509 c 0.5252540101770149,0.17066537343183144 0.8127048953520379,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.1706653734318314,0.5252540101770149 -0.7348195004930859,0.8127048953520379 -1.2600735106701006 0.6420395219202065c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202065 -1.2600735106701004c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -52.27813367649067,20.622075474917324 h 13.112066651862818 l 4.051851426802628,12.470316431350511 l -10.607884752734037,7.707079405040911 l -10.607884752734037,-7.707079405040908 l 4.051851426802628,-12.470316431350515 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -54.55272477067816,23.225554465171342 l -1.1790750949617717,-2.7585833176543506 l 1.4216059874189948,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959103 l 2.2592143980108332,1.9738161778191363 l -0.1345944910515433,2.996979199623943 l -2.4270509831248415,1.76335575687742 l -2.8918885820875593,-0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.77666469599045,21.465964214058307 c -0.5517286358374671,-2.4778161606334875e-2 -0.978906397797135,-0.49212926105436183 -0.9541282361908001 -1.0438578968918288c 2.477816160633484e-2,-0.5517286358374671 0.4921292610543618,-0.978906397797135 1.0438578968918288 -0.9541282361908001c 0.5517286358374671,2.477816160633481e-2 0.978906397797135,0.4921292610543617 0.9541282361908001 1.0438578968918286c -2.4778161606334774e-2,0.5517286358374671 -0.49212926105436167,0.978906397797135 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.79965330467455,23.883493191111054 c -0.363369524659605,0.41590988620651337 -0.9951003057368102,0.4585022647235041 -1.4110101919433233 9.513274006389916e-2c -0.41590988620651337,-0.363369524659605 -0.45850226472350414,-0.9951003057368101 -9.513274006389927e-2 -1.4110101919433233c 0.3633695246596049,-0.4159098862065134 0.99510030573681,-0.45850226472350414 1.411010191943323 -9.513274006389938e-2c 0.4159098862065134,0.3633695246596049 0.4585022647235042,0.99510030573681 9.513274006389949e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -50.67690659999197,23.84510810707273 c 9.861424997442858e-2,0.5434093066903096 -0.26196338710968275,1.063872233422838 -0.8053726937999923 1.1624864833972666c -0.5434093066903096,9.861424997442861e-2 -1.063872233422838,-0.2619633871096827 -1.1624864833972666 -0.8053726937999921c -9.861424997442865e-2,-0.5434093066903096 0.26196338710968264,-1.063872233422838 0.8053726937999921 -1.1624864833972666c 0.5434093066903096,-9.861424997442868e-2 1.063872233422838,0.2619633871096826 1.1624864833972668 0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -48.75991654299277,21.379713713137207 c 0.4863394830136131,0.26171043570655256 0.6684373050902924,0.8681247113161231 0.40672686938374 1.3544641943297362c -0.2617104357065525,0.4863394830136131 -0.8681247113161231,0.6684373050902925 -1.354464194329736 0.40672686938374003c -0.4863394830136132,-0.2617104357065525 -0.6684373050902925,-0.868124711316123 -0.4067268693837401 -1.354464194329736c 0.26171043570655245,-0.4863394830136132 0.868124711316123,-0.6684373050902925 1.354464194329736 -0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -49.49221574606815,18.343802272818554 c 0.5078411658260445,-0.21706173128422704 1.0954910729211473,1.8661575071481917e-2 1.3125528042053742 0.5265027408975264c 0.21706173128422707,0.5078411658260445 -1.8661575071481862e-2,1.0954910729211473 -0.5265027408975262 1.3125528042053742c -0.5078411658260445,0.2170617312842271 -1.0954910729211473,-1.8661575071481806e-2 -1.3125528042053742 -0.5265027408975261c -0.21706173128422712,-0.5078411658260445 1.866157507148175e-2,-1.0954910729211471 0.5265027408975262 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -52.322367973120905,17.023477021984192 c 0.14692809269956444,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956442 0.8448541078287432,0.6976177188969428 0.6979260151291787 1.2299997062625279c -0.1469280926995644,0.5323819873655854 -0.6976177188969427,0.8448541078287432 -1.2299997062625279 0.6979260151291787c -0.5323819873655854,-0.14692809269956433 -0.8448541078287432,-0.6976177188969426 -0.6979260151291791 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.11921087259589,18.41296980423925 c -0.32462483101657846,-0.44680774834722814 -0.22557600626475438,-1.0721774156508421 0.22123174208247365 -1.3968022466674204c 0.44680774834722814,-0.32462483101657846 1.0721774156508421,-0.22557600626475444 1.3968022466674204 0.22123174208247365c 0.3246248310165785,0.4468077483472281 0.2255760062647545,1.0721774156508421 -0.22123174208247354 1.3968022466674204c -0.4468077483472281,0.3246248310165785 -1.072177415650842,0.2255760062647545 -1.3968022466674204 -0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -54.55681674793253,36.060175840788396 l -2.9879228819857166,0.2689179267103018 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.5753463808055974,-1.5386978322177196 l 2.808704611919212,1.0541244722440264 l 0.9270509831248435,2.8531695488854605 l -1.652690944356307,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -56.60850475927851,36.68046859158004 c -0.19405895681460317,0.5170682413141328 -0.770541453406947,0.7789190033729985 -1.2876096947210796 0.5848600465583953c -0.5170682413141328,-0.19405895681460314 -0.7789190033729985,-0.7705414534069469 -0.5848600465583954 -1.2876096947210796c 0.1940589568146031,-0.5170682413141328 0.7705414534069468,-0.7789190033729985 1.2876096947210793 -0.5848600465583955c 0.5170682413141328,0.19405895681460308 0.7789190033729986,0.7705414534069468 0.5848600465583955 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.698367954330664,35.54727656338249 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -52.76989253775857,32.56550631785655 c 0.5472864412728883,7.413498563107401e-2 0.9308514815813538,0.5778965863127015 0.8567164959502798 1.1251830275855896c -7.413498563107399e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855896 0.8567164959502798c -0.5472864412728883,-7.413498563107394e-2 -0.9308514815813538,-0.5778965863127015 -0.8567164959502798 -1.1251830275855894c 7.413498563107392e-2,-0.5472864412728883 0.5778965863127014,-0.9308514815813538 1.1251830275855896 -0.85671649595028Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -54.522239435687936,29.980491666911636 c 0.39918858054789325,-0.3816633622131162 1.03219415060114,-0.36745636570736706 1.4138575128142563 3.173221484052613e-2c 0.3816633622131162,0.39918858054789325 0.3674563657073671,1.03219415060114 -3.173221484052602e-2 1.413857512814256c -0.3991885805478932,0.38166336221311625 -1.03219415060114,0.36745636570736717 -1.413857512814256 -3.173221484052591e-2c -0.38166336221311625,-0.3991885805478932 -0.3674563657073672,-1.03219415060114 3.1732214840525685e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -57.63585569261552,29.738801367398434 c -4.9506423292738216e-2,-0.5500614137970617 0.3562735712947433,-1.0361071796059347 0.906334985091805 -1.085613602898673c 0.5500614137970617,-4.950642329273825e-2 1.0361071796059347,0.35627357129474324 1.085613602898673 0.9063349850918048c 4.9506423292738286e-2,0.5500614137970617 -0.3562735712947432,1.0361071796059347 -0.9063349850918048 1.085613602898673c -0.5500614137970617,4.950642329273832e-2 -1.0361071796059347,-0.35627357129474313 -1.0856136028986731 -0.9063349850918048Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -59.766124760877986,32.022433144434025 c -0.4609220806469411,-0.3042520015838136 -0.5879282738530143,-0.924548154526464 -0.2836762722692008 -1.385470235173405c 0.30425200158381355,-0.4609220806469411 0.924548154526464,-0.5879282738530144 1.385470235173405 -0.2836762722692009c 0.4609220806469412,0.30425200158381355 0.5879282738530144,0.924548154526464 0.2836762722692009 1.385470235173405c -0.3042520015838135,0.4609220806469412 -0.924548154526464,0.5879282738530144 -1.385470235173405 0.2836762722692008Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -59.30891058250389,35.11176569231168 c -0.5252540101770148,0.17066537343183175 -1.0894081372382696,-0.11678551174319085 -1.2600735106701013 -0.6420395219202055c -0.17066537343183177,-0.5252540101770148 0.1167855117431908,-1.0894081372382696 0.6420395219202054 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382696,0.11678551174319074 1.260073510670101 0.6420395219202053c 0.17066537343183183,0.5252540101770148 -0.11678551174319068,1.0894081372382696 -0.6420395219202052 1.2600735106701013Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -42.35163094498306,40.03018366385433 l -0.6675628018689418,2.9247837365454705 l -2.7029066037072567,1.3016512173526755 l -2.7029066037072567,-1.3016512173526733 l -0.6675628018689445,-2.9247837365454696 l 1.8704694055761988,-2.3454944474040897 l 3.0,-1.1102230246251565e-15 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.39570394499327,42.17313591793177 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.574151878939375,39.055255751672505 c 0.5384378180823962,-0.1228949183421779 1.0745539277959606,0.21396916014311232 1.1974488461381383 0.7524069782255084c 0.12289491834217793,0.5384378180823962 -0.21396916014311226,1.0745539277959606 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217797 -1.0745539277959604,-0.2139691601431122 -1.1974488461381383 -0.7524069782255082c -0.122894918342178,-0.5384378180823962 0.21396916014311215,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.12306921846168,37.25080547733269 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -48.12306921846168,38.11857295556781 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -49.31509069009177,41.005111576036164 c -0.5384378180823963,-0.12289491834217739 -0.8753018965676871,-0.6590110280557413 -0.7524069782255098 -1.1974488461381374c 0.12289491834217736,-0.5384378180823963 0.6590110280557413,-0.8753018965676872 1.1974488461381374 -0.7524069782255098c 0.5384378180823963,0.12289491834217732 0.8753018965676872,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217729,0.5384378180823963 -0.6590110280557412,0.8753018965676872 -1.1974488461381374 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -47.80151715240778,43.73679888286784 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -44.72210035055926,44.25661861775248 c 1.8394777362344743e-16,0.5522847498307935 -0.4477152501692061,1.0000000000000002 -0.9999999999999994 1.0000000000000002c -0.5522847498307935,2.177654611783563e-16 -1.0000000000000002,-0.44771525016920605 -1.0000000000000002 -0.9999999999999993c -2.515831487332652e-16,-0.5522847498307935 0.447715250169206,-1.0000000000000002 0.9999999999999992 -1.0000000000000002c 0.5522847498307935,-2.854008362881741e-16 1.0000000000000002,0.44771525016920594 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -34.80431930249824,29.649162058495 l 2.575346380805598,1.5386978322177174 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.987922881985716,-0.26891792671029957 l -1.6526909443563083,-2.503719761163907 l 0.9270509831248418,-2.853169548885461 l 2.8087046119192114,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -32.77986990314475,30.353286636991413 c 0.4609220806469409,-0.3042520015838138 1.0812182335895915,-0.17724580837774118 1.3854702351734052 0.28367627226919956c 0.3042520015838139,0.4609220806469409 0.17724580837774123,1.0812182335895915 -0.28367627226919945 1.385470235173405c -0.46092208064694085,0.3042520015838139 -1.0812182335895912,0.1772458083777413 -1.385470235173405 -0.28367627226919945c -0.30425200158381394,-0.46092208064694085 -0.17724580837774134,-1.0812182335895912 0.2836762722691992 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.80029359649348,29.55952274959157 c 4.9506423292737814e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845438 1.0856136028986723 -0.906334985091806c 0.5500614137970617,4.950642329273778e-2 0.9558414083845438,0.5355521891016104 0.906334985091806 1.085613602898672c -4.9506423292737745e-2,0.5500614137970617 -0.5355521891016104,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273771e-2 -0.9558414083845438,-0.5355521891016103 -0.9063349850918065 -1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.30408656340432,31.42608139456642 c -0.3991885805478934,-0.3816633622131159 -0.4133955770536431,-1.0146689322663627 -3.173221484052724e-2 -1.413857512814256c 0.3816633622131159,-0.3991885805478934 1.0146689322663627,-0.41339557705364316 1.413857512814256 -3.173221484052735e-2c 0.39918858054789347,0.38166336221311586 0.4133955770536432,1.0146689322663627 3.173221484052746e-2 1.4138575128142559c -0.38166336221311586,0.39918858054789347 -1.0146689322663627,0.4133955770536432 -1.4138575128142563 3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.405841631724634,34.547405841392425 c -0.5472864412728882,7.413498563107442e-2 -1.051048041954516,-0.30943005467739065 -1.1251830275855905 -0.8567164959502787c -7.413498563107444e-2,-0.5472864412728882 0.3094300546773906,-1.051048041954516 0.8567164959502787 -1.1251830275855905c 0.5472864412728882,-7.413498563107448e-2 1.051048041954516,0.30943005467739054 1.1251830275855905 0.8567164959502784c 7.413498563107451e-2,0.5472864412728882 -0.3094300546773905,1.051048041954516 -0.8567164959502787 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.028935159584115,36.5730751181943 c -0.2832664491105155,0.47410817721695314 -0.897239893790819,0.6288159653064758 -1.371348071007772 0.3455495161959603c -0.47410817721695314,-0.28326644911051546 -0.6288159653064758,-0.897239893790819 -0.3455495161959604 -1.371348071007772c 0.28326644911051546,-0.4741081772169532 0.8972398937908189,-0.6288159653064759 1.371348071007772 -0.3455495161959604c 0.4741081772169532,0.2832664491105154 0.6288159653064759,0.8972398937908188 0.3455495161959603 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -32.963226200560534,35.97771894341736 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.2876096947210802 0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -31.51725612986473,33.20965265972137 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -42.3450099867043,19.26333004537 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.04975844938932,17.555550713117537 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.73803501835822,20.18285781792145 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.73654683317975,23.140904776850682 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.79943492392928,24.20222189667 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.13840446443674,22.567615739231627 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.757265665829095,19.467978080975673 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -37.94302381727253,17.2373992996543 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -101.01827678009813,33.09239190626785 l 4.051851426802627,-12.47031643135051 h 13.112066651862818 l 4.051851426802629,12.470316431350508 l -10.607884752734035,7.70707940504091 l -10.607884752734039,-7.707079405040909 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -99.24510842473737,36.06017584078841 l -2.987922881985716,0.2689179267103019 l -2.073187946960595,-2.1683845914821736 l 0.40269979745296547,-2.9728492853038033 l 2.575346380805597,-1.5386978322177194 l 2.808704611919212,1.054124472244026 l 0.9270509831248435,2.85316954888546 l -1.652690944356306,2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.29679643608335,36.68046859158005 c -0.19405895681460308,0.5170682413141326 -0.7705414534069468,0.7789190033729985 -1.2876096947210793 0.5848600465583953c -0.5170682413141326,-0.19405895681460306 -0.7789190033729985,-0.7705414534069468 -0.5848600465583954 -1.2876096947210791c 0.19405895681460303,-0.5170682413141326 0.7705414534069467,-0.7789190033729985 1.2876096947210791 -0.5848600465583955c 0.5170682413141326,0.194058956814603 0.7789190033729985,0.7705414534069466 0.5848600465583957 1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -98.3866596311355,35.5472765633825 c 0.2832664491105159,0.4741081772169529 0.12855866102099384,1.0880816218972567 -0.345549516195959 1.3713480710077723c -0.4741081772169529,0.28326644911051596 -1.0880816218972567,0.1285586610209939 -1.3713480710077723 -0.34554951619595886c -0.28326644911051596,-0.47410817721695286 -0.12855866102099395,-1.0880816218972567 0.34554951619595886 -1.3713480710077723c 0.47410817721695286,-0.283266449110516 1.0880816218972564,-0.128558661020994 1.3713480710077723 0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.4581842145634,32.56550631785657 c 0.5472864412728883,7.413498563107399e-2 0.9308514815813538,0.5778965863127015 0.8567164959502799 1.1251830275855896c -7.413498563107396e-2,0.5472864412728883 -0.5778965863127015,0.9308514815813538 -1.1251830275855894 0.8567164959502799c -0.5472864412728883,-7.413498563107392e-2 -0.9308514815813538,-0.5778965863127014 -0.8567164959502799 -1.1251830275855894c 7.413498563107389e-2,-0.5472864412728883 0.5778965863127012,-0.9308514815813539 1.1251830275855894 -0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.21053111249277,29.98049166691165 c 0.39918858054789313,-0.38166336221311614 1.0321941506011398,-0.36745636570736706 1.413857512814256 3.173221484052602e-2c 0.38166336221311614,0.39918858054789313 0.3674563657073671,1.0321941506011398 -3.173221484052591e-2 1.4138575128142559c -0.3991885805478931,0.3816633622131162 -1.0321941506011398,0.36745636570736717 -1.4138575128142556 -3.1732214840525796e-2c -0.3816633622131162,-0.3991885805478931 -0.36745636570736717,-1.0321941506011396 3.173221484052546e-2 -1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -102.32414736942034,29.738801367398448 c -4.950642329273823e-2,-0.5500614137970616 0.35627357129474324,-1.0361071796059347 0.9063349850918048 -1.085613602898673c 0.5500614137970616,-4.9506423292738265e-2 1.0361071796059347,0.35627357129474313 1.085613602898673 0.9063349850918047c 4.95064232927383e-2,0.5500614137970616 -0.35627357129474313,1.0361071796059347 -0.9063349850918045 1.085613602898673c -0.5500614137970616,4.9506423292738334e-2 -1.0361071796059347,-0.356273571294743 -1.0856136028986731 -0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -104.45441643768281,32.02243314443404 c -0.46092208064694107,-0.30425200158381355 -0.5879282738530143,-0.9245481545264639 -0.2836762722692008 -1.385470235173405c 0.3042520015838135,-0.46092208064694107 0.9245481545264639,-0.5879282738530143 1.3854702351734047 -0.2836762722692009c 0.4609220806469411,0.3042520015838135 0.5879282738530143,0.9245481545264638 0.2836762722692009 1.3854702351734047c -0.30425200158381344,0.4609220806469411 -0.9245481545264638,0.5879282738530144 -1.385470235173405 0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.99720225930874,35.11176569231169 c -0.5252540101770148,0.17066537343183175 -1.0894081372382693,-0.1167855117431908 -1.260073510670101 -0.6420395219202054c -0.17066537343183177,-0.5252540101770148 0.11678551174319074,-1.0894081372382693 0.6420395219202053 -1.260073510670101c 0.5252540101770148,-0.1706653734318318 1.0894081372382693,0.11678551174319068 1.260073510670101 0.6420395219202052c 0.17066537343183183,0.5252540101770148 -0.11678551174319063,1.0894081372382693 -0.6420395219202053 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -87.0399226217879,40.03018366385434 l -0.6675628018689418,2.9247837365454705 l -2.7029066037072567,1.3016512173526755 l -2.7029066037072567,-1.3016512173526733 l -0.6675628018689445,-2.9247837365454696 l 1.8704694055761988,-2.3454944474040897 l 3.0,-1.1102230246251565e-15 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.0839956217981,42.17313591793178 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.26244355574421,39.05525575167251 c 0.5384378180823962,-0.1228949183421779 1.0745539277959606,0.21396916014311232 1.1974488461381383 0.7524069782255084c 0.12289491834217793,0.5384378180823962 -0.21396916014311226,1.0745539277959606 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217797 -1.0745539277959604,-0.2139691601431122 -1.1974488461381383 -0.7524069782255082c -0.122894918342178,-0.5384378180823962 0.21396916014311215,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -89.81136089526652,37.2508054773327 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -92.81136089526652,38.118572955567814 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.00338236689662,41.00511157603617 c -0.5384378180823963,-0.12289491834217739 -0.8753018965676871,-0.6590110280557413 -0.7524069782255098 -1.1974488461381374c 0.12289491834217736,-0.5384378180823963 0.6590110280557413,-0.8753018965676872 1.1974488461381374 -0.7524069782255098c 0.5384378180823963,0.12289491834217732 0.8753018965676872,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217729,0.5384378180823963 -0.6590110280557412,0.8753018965676872 -1.1974488461381374 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -92.48980882921262,43.736798882867845 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -89.4103920273641,44.25661861775249 c 1.8394777362344743e-16,0.5522847498307935 -0.4477152501692061,1.0000000000000002 -0.9999999999999994 1.0000000000000002c -0.5522847498307935,2.177654611783563e-16 -1.0000000000000002,-0.44771525016920605 -1.0000000000000002 -0.9999999999999993c -2.515831487332652e-16,-0.5522847498307935 0.447715250169206,-1.0000000000000002 0.9999999999999992 -1.0000000000000002c 0.5522847498307935,-2.854008362881741e-16 1.0000000000000002,0.44771525016920594 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -79.49261097930308,29.64916205849501 l 2.575346380805598,1.5386978322177172 l 0.4026997974529676,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029924 l -1.6526909443563085,-2.5037197611639064 l 0.9270509831248414,-2.853169548885461 l 2.808704611919211,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.46816157994958,30.35328663699142 c 0.46092208064694085,-0.3042520015838139 1.0812182335895912,-0.17724580837774134 1.3854702351734052 0.28367627226919934c 0.30425200158381394,0.46092208064694085 0.1772458083777414,1.0812182335895912 -0.2836762722691992 1.385470235173405c -0.4609220806469408,0.30425200158381394 -1.0812182335895912,0.17724580837774145 -1.385470235173405 -0.2836762722691992c -0.304252001583814,-0.4609220806469408 -0.1772458083777415,-1.0812182335895912 0.283676272269199 -1.3854702351734052Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.48858527329831,29.559522749591576 c 4.950642329273775e-2,-0.5500614137970617 0.5355521891016103,-0.9558414083845438 1.0856136028986718 -0.906334985091806c 0.5500614137970617,4.950642329273772e-2 0.9558414083845438,0.5355521891016102 0.906334985091806 1.0856136028986718c -4.950642329273768e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273765e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.99237824020915,31.426081394566427 c -0.39918858054789347,-0.3816633622131158 -0.4133955770536433,-1.0146689322663625 -3.173221484052757e-2 -1.413857512814256c 0.3816633622131158,-0.39918858054789347 1.0146689322663625,-0.4133955770536434 1.4138575128142559 -3.1732214840527684e-2c 0.3991885805478935,0.38166336221311575 0.4133955770536434,1.0146689322663625 3.1732214840527795e-2 1.4138575128142556c -0.38166336221311575,0.3991885805478935 -1.0146689322663625,0.41339557705364344 -1.413857512814256 3.173221484052813e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -83.09413330852948,34.54740584139243 c -0.5472864412728882,7.413498563107447e-2 -1.051048041954516,-0.3094300546773905 -1.1251830275855905 -0.8567164959502784c -7.41349856310745e-2,-0.5472864412728882 0.30943005467739043,-1.051048041954516 0.8567164959502784 -1.1251830275855905c 0.5472864412728882,-7.413498563107454e-2 1.051048041954516,0.3094300546773904 1.1251830275855905 0.8567164959502782c 7.413498563107457e-2,0.5472864412728882 -0.3094300546773903,1.051048041954516 -0.8567164959502784 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.71722683638896,36.57307511819431 c -0.28326644911051546,0.4741081772169532 -0.8972398937908189,0.628815965306476 -1.371348071007772 0.3455495161959605c -0.4741081772169532,-0.2832664491105154 -0.628815965306476,-0.8972398937908189 -0.34554951619596064 -1.371348071007772c 0.2832664491105154,-0.47410817721695325 0.8972398937908188,-0.628815965306476 1.371348071007772 -0.34554951619596064c 0.47410817721695325,0.28326644911051535 0.628815965306476,0.8972398937908188 0.34554951619596075 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.65151787736536,35.977718943417365 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.20554780666957,33.20965265972137 c 0.5252540101770149,0.1706653734318314 0.8127048953520379,0.7348195004930859 0.6420395219202065 1.2600735106701006c -0.17066537343183139,0.5252540101770149 -0.7348195004930858,0.8127048953520379 -1.2600735106701004 0.6420395219202066c -0.5252540101770149,-0.17066537343183136 -0.8127048953520379,-0.7348195004930858 -0.6420395219202066 -1.2600735106701004c 0.17066537343183133,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -87.03330166350914,19.26333004537001 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -85.73805012619417,17.555550713117547 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.42632669516306,20.182857817921462 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -86.4248385099846,23.140904776850693 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -83.48772660073412,24.202221896670007 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.82669614124158,22.567615739231638 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.44555734263395,19.467978080975683 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.63131549407736,17.23739929965431 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -99.241016447483,23.225554465171353 l -1.179075094961771,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959098 l 2.259214398010833,1.9738161778191368 l -0.13459449105154375,2.9969791996239437 l -2.427050983124842,1.7633557568774196 l -2.8918885820875597,-0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.46495637279529,21.465964214058314 c -0.5517286358374672,-2.4778161606334937e-2 -0.9789063977971351,-0.492129261054362 -0.9541282361908001 -1.043857896891829c 2.4778161606334902e-2,-0.5517286358374672 0.49212926105436194,-0.9789063977971351 1.0438578968918288 -0.9541282361908001c 0.5517286358374672,2.477816160633487e-2 0.9789063977971351,0.4921292610543619 0.9541282361908001 1.0438578968918288c -2.4778161606334836e-2,0.5517286358374672 -0.49212926105436183,0.9789063977971351 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -98.48794498147939,23.883493191111064 c -0.36336952465960504,0.41590988620651326 -0.9951003057368102,0.4585022647235039 -1.4110101919433233 9.513274006389894e-2c -0.41590988620651326,-0.36336952465960504 -0.45850226472350397,-0.9951003057368102 -9.513274006389905e-2 -1.4110101919433233c 0.363369524659605,-0.4159098862065133 0.9951003057368102,-0.45850226472350397 1.411010191943323 -9.513274006389916e-2c 0.4159098862065133,0.363369524659605 0.458502264723504,0.9951003057368101 9.513274006389927e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -95.36519827679682,23.84510810707274 c 9.861424997442848e-2,0.5434093066903097 -0.261963387109683,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442851e-2 -1.063872233422838,-0.2619633871096829 -1.1624864833972666 -0.8053726937999924c -9.861424997442855e-2,-0.5434093066903097 0.26196338710968287,-1.063872233422838 0.8053726937999923 -1.1624864833972666c 0.5434093066903097,-9.861424997442858e-2 1.063872233422838,0.2619633871096828 1.1624864833972668 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -93.4482082197976,21.379713713137217 c 0.48633948301361307,0.2617104357065526 0.6684373050902923,0.8681247113161232 0.4067268693837397 1.3544641943297362c -0.26171043570655256,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.354464194329736 0.40672686938373975c -0.4863394830136131,-0.26171043570655256 -0.6684373050902923,-0.8681247113161232 -0.4067268693837398 -1.354464194329736c 0.2617104357065525,-0.4863394830136131 0.8681247113161231,-0.6684373050902923 1.354464194329736 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.18050742287298,18.343802272818564 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.01065964992574,17.023477021984203 c 0.14692809269956447,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956444 0.844854107828743,0.6976177188969428 0.6979260151291786 1.229999706262528c -0.14692809269956442,0.5323819873655854 -0.6976177188969428,0.8448541078287432 -1.2299997062625279 0.6979260151291786c -0.5323819873655854,-0.14692809269956436 -0.8448541078287432,-0.6976177188969427 -0.6979260151291788 -1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.80750254940072,18.41296980423926 c -0.3246248310165784,-0.44680774834722825 -0.22557600626475421,-1.0721774156508421 0.22123174208247387 -1.3968022466674204c 0.44680774834722825,-0.3246248310165784 1.0721774156508421,-0.22557600626475427 1.3968022466674204 0.22123174208247387c 0.32462483101657846,0.4468077483472282 0.22557600626475433,1.0721774156508421 -0.22123174208247376 1.3968022466674204c -0.4468077483472282,0.32462483101657846 -1.0721774156508421,0.22557600626475438 -1.3968022466674204 -0.22123174208247387Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -104.2198336050813,83.30056231263247 l -10.607884752734034,-7.7070794050409095 l 4.05185142680263,-12.470316431350508 l 13.112066651862817,4.440892098500626e-16 l 4.051851426802628,12.470316431350508 l -10.60788475273404,7.707079405040911 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -100.8493641995051,82.53127466517805 l -0.667562801868942,2.92478373654547 l -2.7029066037072567,1.3016512173526753 l -2.7029066037072567,-1.3016512173526735 l -0.6675628018689442,-2.92478373654547 l 1.870469405576199,-2.3454944474040897 l 3.0,-9.43689570931383e-16 l 1.870469405576201,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.8934371995153,84.67422691925549 c 0.4317936047046944,0.3443439092416014 0.5026855898508984,0.9735276796220689 0.1583416806092971 1.405321284326763c -0.3443439092416014,0.4317936047046944 -0.9735276796220688,0.5026855898508985 -1.405321284326763 0.1583416806092972c -0.43179360470469447,-0.34434390924160135 -0.5026855898508986,-0.9735276796220687 -0.1583416806092972 -1.4053212843267628c 0.34434390924160135,-0.43179360470469447 0.9735276796220687,-0.5026855898508986 1.405321284326763 -0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.07188513346142,81.55634675299622 c 0.5384378180823962,-0.12289491834217786 1.0745539277959604,0.21396916014311237 1.1974488461381383 0.7524069782255084c 0.12289491834217789,0.5384378180823962 -0.21396916014311232,1.0745539277959604 -0.7524069782255083 1.1974488461381383c -0.5384378180823962,0.12289491834217793 -1.0745539277959604,-0.21396916014311226 -1.1974488461381383 -0.7524069782255082c -0.12289491834217796,-0.5384378180823962 0.2139691601431122,-1.0745539277959604 0.7524069782255083 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.62080247298373,79.7518964786564 c 0.23962737231418962,-0.49759136581482083 0.8372612412051561,-0.7067125010990511 1.3348526070199767 -0.46708512878486164c 0.49759136581482083,0.2396273723141896 0.7067125010990513,0.8372612412051561 0.4670851287848617 1.3348526070199767c -0.23962737231418957,0.4975913658148209 -0.837261241205156,0.7067125010990513 -1.3348526070199767 0.4670851287848617c -0.4975913658148209,-0.23962737231418954 -0.7067125010990513,-0.8372612412051559 -0.46708512878486164 -1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -106.62080247298373,80.61966395689153 c -0.23962737231419004,-0.4975913658148206 -3.0506237029960304e-2,-1.0952252347057874 0.4670851287848602 -1.3348526070199773c 0.4975913658148206,-0.23962737231419007 1.0952252347057874,-3.050623702996036e-2 1.3348526070199773 0.4670851287848601c 0.2396273723141901,0.49759136581482055 3.0506237029960415e-2,1.0952252347057874 -0.46708512878485997 1.3348526070199773c -0.49759136581482055,0.23962737231419012 -1.0952252347057874,3.050623702996047e-2 -1.3348526070199775 -0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.81282394461383,83.50620257735987 c -0.5384378180823963,-0.12289491834217742 -0.8753018965676871,-0.6590110280557414 -0.7524069782255097 -1.1974488461381376c 0.12289491834217739,-0.5384378180823963 0.6590110280557413,-0.8753018965676871 1.1974488461381374 -0.7524069782255097c 0.5384378180823963,0.12289491834217735 0.8753018965676871,0.6590110280557413 0.7524069782255098 1.1974488461381374c -0.12289491834217732,0.5384378180823963 -0.6590110280557413,0.8753018965676872 -1.1974488461381374 0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -106.29925040692983,86.23788988419156 c -0.4317936047046941,0.3443439092416018 -1.0609773750851614,0.2734519240953984 -1.4053212843267633 -0.15834168060929554c -0.3443439092416018,-0.4317936047046941 -0.2734519240953985,-1.0609773750851614 0.15834168060929554 -1.4053212843267633c 0.431793604704694,-0.34434390924160185 1.0609773750851614,-0.2734519240953985 1.4053212843267633 0.15834168060929543c 0.34434390924160185,0.431793604704694 0.27345192409539854,1.0609773750851614 -0.15834168060929565 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.2198336050813,86.7577096190762 c 1.5328981135287284e-16,0.5522847498307935 -0.44771525016920616,1.0000000000000002 -0.9999999999999996 1.0000000000000002c -0.5522847498307935,1.8710749890778175e-16 -1.0000000000000002,-0.4477152501692061 -1.0000000000000002 -0.9999999999999993c -2.2092518646269063e-16,-0.5522847498307935 0.44771525016920605,-1.0000000000000002 0.9999999999999993 -1.0000000000000002c 0.5522847498307935,-2.547428740175995e-16 1.0000000000000002,0.447715250169206 1.0000000000000004 0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -93.30205255702029,72.15025305981871 l 2.575346380805598,1.5386978322177174 l 0.40269979745296725,2.972849285303804 l -2.0731879469605934,2.168384591482174 l -2.987922881985716,-0.26891792671029957 l -1.6526909443563083,-2.503719761163907 l 0.9270509831248418,-2.853169548885461 l 2.8087046119192114,-1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -91.27760315766679,72.85437763831513 c 0.4609220806469409,-0.3042520015838138 1.0812182335895915,-0.17724580837774118 1.3854702351734052 0.28367627226919956c 0.3042520015838139,0.4609220806469409 0.17724580837774123,1.0812182335895915 -0.28367627226919945 1.385470235173405c -0.46092208064694085,0.3042520015838139 -1.0812182335895912,0.1772458083777413 -1.385470235173405 -0.28367627226919945c -0.30425200158381394,-0.46092208064694085 -0.17724580837774134,-1.0812182335895912 0.2836762722691992 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.29802685101552,72.06061375091528 c 4.9506423292737814e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845438 1.0856136028986723 -0.906334985091806c 0.5500614137970617,4.950642329273778e-2 0.9558414083845438,0.5355521891016104 0.906334985091806 1.085613602898672c -4.9506423292737745e-2,0.5500614137970617 -0.5355521891016104,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273771e-2 -0.9558414083845438,-0.5355521891016103 -0.9063349850918065 -1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.80181981792636,73.92717239589014 c -0.3991885805478934,-0.3816633622131159 -0.4133955770536431,-1.0146689322663627 -3.173221484052724e-2 -1.413857512814256c 0.3816633622131159,-0.3991885805478934 1.0146689322663627,-0.41339557705364316 1.413857512814256 -3.173221484052735e-2c 0.39918858054789347,0.38166336221311586 0.4133955770536432,1.0146689322663627 3.173221484052746e-2 1.4138575128142559c -0.38166336221311586,0.39918858054789347 -1.0146689322663627,0.4133955770536432 -1.4138575128142563 3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.90357488624669,77.04849684271613 c -0.5472864412728882,7.413498563107442e-2 -1.051048041954516,-0.30943005467739065 -1.1251830275855905 -0.8567164959502787c -7.413498563107444e-2,-0.5472864412728882 0.3094300546773906,-1.051048041954516 0.8567164959502787 -1.1251830275855905c 0.5472864412728882,-7.413498563107448e-2 1.051048041954516,0.30943005467739054 1.1251830275855905 0.8567164959502784c 7.413498563107451e-2,0.5472864412728882 -0.3094300546773905,1.051048041954516 -0.8567164959502787 1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.52666841410617,79.07416611951801 c -0.2832664491105155,0.47410817721695314 -0.897239893790819,0.6288159653064758 -1.371348071007772 0.3455495161959603c -0.47410817721695314,-0.28326644911051546 -0.6288159653064758,-0.897239893790819 -0.3455495161959604 -1.371348071007772c 0.28326644911051546,-0.4741081772169532 0.8972398937908189,-0.6288159653064759 1.371348071007772 -0.3455495161959604c 0.4741081772169532,0.2832664491105154 0.6288159653064759,0.8972398937908188 0.3455495161959603 1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -91.46095945508257,78.47880994474106 c 0.19405895681460356,0.5170682413141325 -6.77918052442616e-2,1.0935507379064766 -0.584860046558394 1.28760969472108c -0.5170682413141325,0.19405895681460358 -1.0935507379064766,-6.779180524426154e-2 -1.28760969472108 -0.584860046558394c -0.1940589568146036,-0.5170682413141325 6.779180524426148e-2,-1.0935507379064766 0.5848600465583937 -1.28760969472108c 0.5170682413141325,-0.19405895681460364 1.0935507379064764,6.779180524426143e-2 1.2876096947210802 0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -90.01498938438678,75.71074366104509 c 0.5252540101770149,0.17066537343183147 0.8127048953520378,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.17066537343183144,0.5252540101770149 -0.734819500493086,0.8127048953520379 -1.2600735106701006 0.6420395219202064c -0.5252540101770149,-0.1706653734318314 -0.8127048953520379,-0.7348195004930859 -0.6420395219202064 -1.2600735106701004c 0.17066537343183139,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -100.84274324122634,61.76442104669371 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.54749170391138,60.056641714441255 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.23576827288026,62.683948819245174 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.2342800877018,65.6419957781744 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.29716817845133,66.70331289799371 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.63613771895879,65.06870674055534 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.25499892035114,61.969069082299384 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.44075707179456,59.738490300978015 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -113.05045802520021,65.72664546649506 l -1.179075094961771,-2.7585833176543506 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959096 l 2.2592143980108323,1.9738161778191368 l -0.13459449105154397,2.996979199623943 l -2.427050983124842,1.7633557568774194 l -2.891888582087558,-0.7981105367000245 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -114.27439795051251,63.967055215382025 c -0.5517286358374671,-2.477816160633497e-2 -0.978906397797135,-0.492129261054362 -0.9541282361908 -1.043857896891829c 2.4778161606334934e-2,-0.5517286358374671 0.49212926105436194,-0.978906397797135 1.0438578968918288 -0.9541282361908c 0.5517286358374671,2.4778161606334902e-2 0.978906397797135,0.4921292610543619 0.9541282361908 1.0438578968918288c -2.4778161606334868e-2,0.5517286358374671 -0.49212926105436183,0.978906397797135 -1.0438578968918288 0.9541282361908001Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -112.29738655919661,66.38458419243477 c -0.36336952465960504,0.4159098862065132 -0.9951003057368102,0.4585022647235038 -1.411010191943323 9.513274006389882e-2c -0.4159098862065132,-0.36336952465960504 -0.45850226472350386,-0.9951003057368101 -9.513274006389894e-2 -1.411010191943323c 0.363369524659605,-0.41590988620651326 0.9951003057368101,-0.45850226472350386 1.411010191943323 -9.513274006389905e-2c 0.41590988620651326,0.363369524659605 0.4585022647235039,0.99510030573681 9.513274006389905e-2 1.4110101919433233Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -109.17463985451403,66.34619910839645 c 9.861424997442843e-2,0.5434093066903096 -0.26196338710968303,1.0638722334228379 -0.8053726937999925 1.1624864833972663c -0.5434093066903096,9.861424997442846e-2 -1.0638722334228379,-0.261963387109683 -1.1624864833972663 -0.8053726937999924c -9.86142499744285e-2,-0.5434093066903096 0.2619633871096829,-1.0638722334228379 0.8053726937999923 -1.1624864833972663c 0.5434093066903096,-9.861424997442853e-2 1.0638722334228379,0.26196338710968287 1.1624864833972666 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.25764979751482,63.88080471446092 c 0.48633948301361307,0.26171043570655267 0.6684373050902923,0.8681247113161233 0.40672686938373964 1.3544641943297362c -0.2617104357065526,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.3544641943297362 0.4067268693837397c -0.4863394830136131,-0.2617104357065526 -0.6684373050902923,-0.8681247113161232 -0.40672686938373975 -1.354464194329736c 0.26171043570655256,-0.4863394830136131 0.8681247113161232,-0.6684373050902923 1.3544641943297364 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.98994900059019,60.84489327414227 c 0.5078411658260445,-0.2170617312842269 1.0954910729211471,1.866157507148214e-2 1.312552804205374 0.5265027408975266c 0.21706173128422693,0.5078411658260445 -1.8661575071482084e-2,1.0954910729211471 -0.5265027408975265 1.312552804205374c -0.5078411658260445,0.21706173128422696 -1.0954910729211471,-1.866157507148203e-2 -1.312552804205374 -0.5265027408975264c -0.21706173128422698,-0.5078411658260445 1.8661575071481973e-2,-1.0954910729211471 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -110.82010122764295,59.524568023307914 c 0.1469280926995645,-0.5323819873655853 0.6976177188969428,-0.8448541078287428 1.2299997062625279 -0.6979260151291784c 0.5323819873655853,0.14692809269956447 0.8448541078287428,0.6976177188969428 0.6979260151291784 1.2299997062625279c -0.14692809269956444,0.5323819873655853 -0.6976177188969427,0.8448541078287428 -1.2299997062625279 0.6979260151291784c -0.5323819873655853,-0.1469280926995644 -0.8448541078287428,-0.6976177188969426 -0.6979260151291784 -1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -113.61694412711793,60.91406080556297 c -0.32462483101657835,-0.44680774834722825 -0.2255760062647541,-1.0721774156508421 0.22123174208247398 -1.3968022466674204c 0.44680774834722825,-0.32462483101657835 1.0721774156508421,-0.22557600626475416 1.3968022466674204 0.22123174208247398c 0.3246248310165784,0.4468077483472282 0.22557600626475421,1.0721774156508421 -0.22123174208247387 1.3968022466674204c -0.4468077483472282,0.3246248310165784 -1.072177415650842,0.22557600626475427 -1.3968022466674206 -0.2212317420824741Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -113.05455000245458,78.5612668421121 l -2.987922881985716,0.2689179267103008 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.5753463808055974,-1.5386978322177185 l 2.808704611919211,1.054124472244027 l 0.9270509831248425,2.8531695488854605 l -1.6526909443563076,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -115.10623801380056,79.18155959290375 c -0.19405895681460328,0.5170682413141326 -0.770541453406947,0.7789190033729982 -1.2876096947210796 0.5848600465583949c -0.5170682413141326,-0.19405895681460325 -0.7789190033729982,-0.770541453406947 -0.584860046558395 -1.2876096947210796c 0.19405895681460322,-0.5170682413141326 0.770541453406947,-0.7789190033729982 1.2876096947210793 -0.5848600465583951c 0.5170682413141326,0.1940589568146032 0.7789190033729982,0.7705414534069469 0.5848600465583951 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -112.19610120885271,78.0483675647062 c 0.28326644911051574,0.474108177216953 0.12855866102099345,1.0880816218972567 -0.3455495161959594 1.3713480710077723c -0.474108177216953,0.2832664491105158 -1.0880816218972567,0.1285586610209935 -1.3713480710077721 -0.3455495161959593c -0.2832664491105158,-0.4741081772169529 -0.12855866102099356,-1.0880816218972564 0.3455495161959593 -1.3713480710077721c 0.4741081772169529,-0.28326644911051585 1.0880816218972564,-0.12855866102099361 1.3713480710077723 0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -111.26762579228061,75.06659731918026 c 0.5472864412728882,7.413498563107417e-2 0.9308514815813536,0.5778965863127017 0.8567164959502794 1.1251830275855899c -7.413498563107414e-2,0.5472864412728882 -0.5778965863127017,0.9308514815813536 -1.1251830275855896 0.8567164959502794c -0.5472864412728882,-7.41349856310741e-2 -0.9308514815813536,-0.5778965863127017 -0.8567164959502794 -1.1251830275855896c 7.413498563107407e-2,-0.5472864412728882 0.5778965863127016,-0.9308514815813536 1.1251830275855896 -0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -113.01997269020998,72.48158266823535 c 0.3991885805478933,-0.38166336221311603 1.03219415060114,-0.3674563657073667 1.413857512814256 3.1732214840526574e-2c 0.38166336221311603,0.3991885805478933 0.36745636570736673,1.03219415060114 -3.173221484052646e-2 1.413857512814256c -0.39918858054789325,0.3816633622131161 -1.03219415060114,0.3674563657073668 -1.4138575128142559 -3.173221484052635e-2c -0.3816633622131161,-0.39918858054789325 -0.36745636570736684,-1.03219415060114 3.173221484052635e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -116.13358894713755,72.23989236872214 c -4.950642329273803e-2,-0.5500614137970616 0.3562735712947436,-1.0361071796059345 0.9063349850918052 -1.0856136028986725c 0.5500614137970616,-4.9506423292738064e-2 1.0361071796059345,0.3562735712947435 1.0856136028986725 0.906334985091805c 4.95064232927381e-2,0.5500614137970616 -0.35627357129474346,1.0361071796059345 -0.906334985091805 1.0856136028986725c -0.5500614137970616,4.950642329273813e-2 -1.0361071796059345,-0.3562735712947434 -1.0856136028986727 -0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -118.26385801540002,74.52352414575773 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.385470235173405 0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -117.80664383702594,77.6128566936354 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202057 1.260073510670101Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -57.458361436227634,101.86060170536192 l -10.607884752734037,7.707079405040908 l -10.607884752734035,-7.707079405040911 l 4.051851426802629,-12.47031643135051 h 13.112066651862817 l 4.05185142680263,12.470316431350513 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -57.148465140900655,98.41737185758907 l 2.575346380805598,1.5386978322177174 l 0.40269979745296736,2.9728492853038038 l -2.073187946960593,2.168384591482174 l -2.987922881985716,-0.26891792671029935 l -1.6526909443563085,-2.503719761163907 l 0.9270509831248416,-2.853169548885461 l 2.808704611919211,-1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.12401574154716,99.1214964360855 c 0.46092208064694085,-0.3042520015838138 1.0812182335895912,-0.17724580837774123 1.385470235173405 0.28367627226919945c 0.3042520015838139,0.46092208064694085 0.1772458083777413,1.0812182335895912 -0.28367627226919934 1.385470235173405c -0.4609220806469408,0.3042520015838139 -1.0812182335895912,0.17724580837774134 -1.385470235173405 -0.28367627226919934c -0.30425200158381394,-0.4609220806469408 -0.1772458083777414,-1.0812182335895912 0.28367627226919945 -1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.144439434895894,98.32773254868565 c 4.9506423292737786e-2,-0.5500614137970617 0.5355521891016104,-0.9558414083845437 1.085613602898672 -0.906334985091806c 0.5500614137970617,4.950642329273775e-2 0.9558414083845437,0.5355521891016103 0.906334985091806 1.0856136028986718c -4.950642329273772e-2,0.5500614137970617 -0.5355521891016102,0.9558414083845438 -1.0856136028986718 0.906334985091806c -0.5500614137970617,-4.950642329273768e-2 -0.9558414083845438,-0.5355521891016102 -0.9063349850918061 -1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.64823240180673,100.1942911936605 c -0.3991885805478934,-0.38166336221311586 -0.41339557705364316,-1.0146689322663627 -3.173221484052735e-2 -1.413857512814256c 0.38166336221311586,-0.3991885805478934 1.0146689322663627,-0.4133955770536432 1.4138575128142559 -3.173221484052746e-2c 0.39918858054789347,0.3816633622131158 0.4133955770536432,1.0146689322663625 3.173221484052757e-2 1.4138575128142556c -0.3816633622131158,0.39918858054789347 -1.0146689322663625,0.41339557705364327 -1.413857512814256 3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.749987470127046,103.3156156404865 c -0.5472864412728882,7.413498563107444e-2 -1.051048041954516,-0.30943005467739054 -1.1251830275855903 -0.8567164959502785c -7.413498563107447e-2,-0.5472864412728882 0.3094300546773905,-1.0510480419545158 0.8567164959502784 -1.1251830275855903c 0.5472864412728882,-7.413498563107451e-2 1.0510480419545158,0.30943005467739043 1.1251830275855903 0.8567164959502783c 7.413498563107454e-2,0.5472864412728882 -0.3094300546773904,1.0510480419545158 -0.8567164959502784 1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.37308099798653,105.34128491728838 c -0.28326644911051546,0.47410817721695314 -0.8972398937908189,0.6288159653064759 -1.371348071007772 0.3455495161959604c -0.47410817721695314,-0.2832664491105154 -0.6288159653064759,-0.8972398937908188 -0.3455495161959605 -1.371348071007772c 0.2832664491105154,-0.4741081772169532 0.8972398937908188,-0.6288159653064759 1.371348071007772 -0.3455495161959605c 0.4741081772169532,0.28326644911051535 0.628815965306476,0.8972398937908188 0.3455495161959605 1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.307372038962946,104.74592874251142 c 0.19405895681460358,0.5170682413141324 -6.779180524426148e-2,1.0935507379064764 -0.5848600465583939 1.28760969472108c -0.5170682413141324,0.1940589568146036 -1.0935507379064764,-6.779180524426143e-2 -1.28760969472108 -0.5848600465583937c -0.19405895681460364,-0.5170682413141324 6.779180524426137e-2,-1.0935507379064764 0.5848600465583936 -1.28760969472108c 0.5170682413141324,-0.19405895681460367 1.0935507379064764,6.779180524426137e-2 1.2876096947210804 0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.86140196826714,101.97786245881545 c 0.5252540101770149,0.17066537343183144 0.8127048953520379,0.734819500493086 0.6420395219202064 1.2600735106701006c -0.1706653734318314,0.5252540101770149 -0.7348195004930859,0.8127048953520379 -1.2600735106701006 0.6420395219202065c -0.5252540101770149,-0.17066537343183139 -0.8127048953520379,-0.7348195004930858 -0.6420395219202065 -1.2600735106701004c 0.17066537343183136,-0.5252540101770149 0.7348195004930858,-0.8127048953520379 1.2600735106701006 -0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -64.68915582510671,88.03153984446408 l 2.2592143980108315,-1.9738161778191379 l 2.9517887657958894,0.5356706843959091 l 1.4216059874189955,2.641786595570213 l -1.1790750949617697,2.7585833176543515 l -2.8918885820875593,0.7981105367000263 l -2.427050983124843,-1.7633557568774192 l -0.13459449105154464,-2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -63.393904287791734,86.32376051221162 c -0.1469280926995648,-0.5323819873655853 0.16554402776359234,-1.0830716135629639 0.6979260151291775 -1.2299997062625287c 0.5323819873655853,-0.14692809269956483 1.0830716135629639,0.16554402776359228 1.2299997062625287 0.6979260151291774c 0.14692809269956486,0.5323819873655853 -0.16554402776359223,1.0830716135629639 -0.6979260151291773 1.2299997062625287c -0.5323819873655853,0.14692809269956492 -1.0830716135629639,-0.16554402776359217 -1.229999706262529 -0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -65.08218085676063,88.95106761701553 c -0.5078411658260448,-0.21706173128422673 -0.7435644721817543,-0.8047116383793294 -0.5265027408975276 -1.312552804205374c 0.2170617312842267,-0.5078411658260448 0.8047116383793292,-0.7435644721817543 1.3125528042053738 -0.5265027408975276c 0.5078411658260448,0.21706173128422668 0.7435644721817543,0.8047116383793291 0.5265027408975276 1.3125528042053736c -0.21706173128422665,0.5078411658260448 -0.8047116383793291,0.7435644721817543 -1.3125528042053738 0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.08069267158217,91.90911457594477 c -0.486339483013613,0.2617104357065529 -1.092753758623184,7.961261362987404e-2 -1.3544641943297366 -0.4067268693837388c -0.26171043570655295,-0.486339483013613 -7.96126136298741e-2,-1.092753758623184 0.4067268693837387 -1.3544641943297366c 0.48633948301361296,-0.26171043570655295 1.0927537586231837,-7.961261362987415e-2 1.3544641943297364 0.4067268693837386c 0.261710435706553,0.48633948301361296 7.961261362987421e-2,1.0927537586231837 -0.4067268693837385 1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -61.143580762331695,92.97043169576408 c -9.86142499744282e-2,0.5434093066903097 -0.6190771767069563,0.9039869437744216 -1.162486483397266 0.8053726937999934c -0.5434093066903097,-9.861424997442818e-2 -0.9039869437744216,-0.6190771767069563 -0.8053726937999934 -1.162486483397266c 9.861424997442814e-2,-0.5434093066903097 0.6190771767069562,-0.9039869437744217 1.1624864833972657 -0.8053726937999934c 0.5434093066903097,9.861424997442811e-2 0.9039869437744217,0.6190771767069561 0.8053726937999937 1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.48255030283915,91.33582553832571 c 0.36336952465960526,0.41590988620651304 0.3207771461426152,1.0476406672837182 -9.513274006389771e-2 1.4110101919433236c -0.41590988620651304,0.36336952465960526 -1.0476406672837182,0.3207771461426152 -1.4110101919433233 -9.513274006389771e-2c -0.3633695246596053,-0.415909886206513 -0.32077714614261527,-1.0476406672837182 9.51327400638976e-2 -1.411010191943323c 0.415909886206513,-0.3633695246596053 1.0476406672837182,-0.3207771461426153 1.4110101919433236 9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.10141150423151,88.23618788006975 c 0.5517286358374672,-2.4778161606335242e-2 1.0190797352854946,0.4023996003533323 1.0438578968918297 0.9541282361907993c 2.4778161606335277e-2,0.5517286358374672 -0.4023996003533322,1.0190797352854946 -0.9541282361907992 1.0438578968918297c -0.5517286358374672,2.477816160633531e-2 -1.0190797352854946,-0.40239960035333217 -1.0438578968918297 -0.9541282361907991c -2.4778161606335343e-2,-0.5517286358374672 0.4023996003533321,-1.0190797352854946 0.9541282361907992 -1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.287169655674944,86.00560909874838 c 0.3246248310165783,-0.44680774834722836 0.9499944983201922,-0.5458565730990529 1.3968022466674204 -0.22123174208247465c 0.44680774834722836,0.3246248310165783 0.5458565730990529,0.9499944983201921 0.22123174208247476 1.3968022466674204c -0.32462483101657824,0.4468077483472284 -0.949994498320192,0.545856573099053 -1.3968022466674204 0.22123174208247476c -0.4468077483472284,-0.32462483101657824 -0.545856573099053,-0.949994498320192 -0.22123174208247476 -1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -76.89687060908058,91.99376426426542 l -1.179075094961771,-2.758583317654351 l 1.4216059874189955,-2.6417865955702142 l 2.9517887657958877,-0.5356706843959098 l 2.259214398010833,1.9738161778191368 l -0.13459449105154375,2.9969791996239437 l -2.427050983124842,1.7633557568774196 l -2.8918885820875597,-0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -78.12081053439286,90.23417401315238 c -0.5517286358374672,-2.4778161606334937e-2 -0.9789063977971351,-0.492129261054362 -0.9541282361908001 -1.043857896891829c 2.4778161606334902e-2,-0.5517286358374672 0.49212926105436194,-0.9789063977971351 1.0438578968918288 -0.9541282361908001c 0.5517286358374672,2.477816160633487e-2 0.9789063977971351,0.4921292610543619 0.9541282361908001 1.0438578968918288c -2.4778161606334836e-2,0.5517286358374672 -0.49212926105436183,0.9789063977971351 -1.0438578968918288 0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.14379914307696,92.65170299020514 c -0.36336952465960504,0.41590988620651326 -0.9951003057368102,0.4585022647235039 -1.4110101919433233 9.513274006389894e-2c -0.41590988620651326,-0.36336952465960504 -0.45850226472350397,-0.9951003057368102 -9.513274006389905e-2 -1.4110101919433233c 0.363369524659605,-0.4159098862065133 0.9951003057368102,-0.45850226472350397 1.411010191943323 -9.513274006389916e-2c 0.4159098862065133,0.363369524659605 0.458502264723504,0.9951003057368101 9.513274006389927e-2 1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -73.02105243839439,92.61331790616681 c 9.861424997442848e-2,0.5434093066903097 -0.261963387109683,1.063872233422838 -0.8053726937999925 1.1624864833972666c -0.5434093066903097,9.861424997442851e-2 -1.063872233422838,-0.2619633871096829 -1.1624864833972666 -0.8053726937999924c -9.861424997442855e-2,-0.5434093066903097 0.26196338710968287,-1.063872233422838 0.8053726937999923 -1.1624864833972666c 0.5434093066903097,-9.861424997442858e-2 1.063872233422838,0.2619633871096828 1.1624864833972668 0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.10406238139518,90.14792351223129 c 0.48633948301361307,0.2617104357065526 0.6684373050902923,0.8681247113161232 0.4067268693837397 1.3544641943297362c -0.26171043570655256,0.48633948301361307 -0.8681247113161232,0.6684373050902923 -1.354464194329736 0.40672686938373975c -0.4863394830136131,-0.26171043570655256 -0.6684373050902923,-0.8681247113161232 -0.4067268693837398 -1.354464194329736c 0.2617104357065525,-0.4863394830136131 0.8681247113161231,-0.6684373050902923 1.354464194329736 -0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.83636158447055,87.11201207191263 c 0.5078411658260447,-0.21706173128422698 1.0954910729211473,1.8661575071482084e-2 1.3125528042053742 0.5265027408975266c 0.217061731284227,0.5078411658260447 -1.866157507148203e-2,1.0954910729211473 -0.5265027408975265 1.3125528042053742c -0.5078411658260447,0.21706173128422704 -1.0954910729211473,-1.8661575071481973e-2 -1.3125528042053742 -0.5265027408975264c -0.21706173128422707,-0.5078411658260447 1.8661575071481917e-2,-1.0954910729211473 0.5265027408975265 -1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -74.66651381152332,85.79168682107827 c 0.14692809269956447,-0.5323819873655854 0.6976177188969428,-0.844854107828743 1.229999706262528 -0.6979260151291786c 0.5323819873655854,0.14692809269956444 0.844854107828743,0.6976177188969428 0.6979260151291786 1.229999706262528c -0.14692809269956442,0.5323819873655854 -0.6976177188969428,0.8448541078287432 -1.2299997062625279 0.6979260151291786c -0.5323819873655854,-0.14692809269956436 -0.8448541078287432,-0.6976177188969427 -0.6979260151291788 -1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.4633567109983,87.18117960333333 c -0.3246248310165784,-0.44680774834722825 -0.22557600626475421,-1.0721774156508421 0.22123174208247387 -1.3968022466674204c 0.44680774834722825,-0.3246248310165784 1.0721774156508421,-0.22557600626475427 1.3968022466674204 0.22123174208247387c 0.32462483101657846,0.4468077483472282 0.22557600626475433,1.0721774156508421 -0.22123174208247376 1.3968022466674204c -0.4468077483472282,0.32462483101657846 -1.0721774156508421,0.22557600626475438 -1.3968022466674204 -0.22123174208247387Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -76.90096258633494,104.82838563988247 l -2.987922881985716,0.2689179267103008 l -2.0731879469605943,-2.168384591482174 l 0.40269979745296647,-2.972849285303803 l 2.5753463808055974,-1.5386978322177185 l 2.808704611919211,1.054124472244027 l 0.9270509831248425,2.8531695488854605 l -1.6526909443563076,2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -78.95265059768093,105.44867839067412 c -0.19405895681460328,0.5170682413141326 -0.770541453406947,0.7789190033729982 -1.2876096947210796 0.5848600465583949c -0.5170682413141326,-0.19405895681460325 -0.7789190033729982,-0.770541453406947 -0.584860046558395 -1.2876096947210796c 0.19405895681460322,-0.5170682413141326 0.770541453406947,-0.7789190033729982 1.2876096947210793 -0.5848600465583951c 0.5170682413141326,0.1940589568146032 0.7789190033729982,0.7705414534069469 0.5848600465583951 1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.04251379273308,104.31548636247656 c 0.28326644911051574,0.474108177216953 0.12855866102099345,1.0880816218972567 -0.3455495161959594 1.3713480710077723c -0.474108177216953,0.2832664491105158 -1.0880816218972567,0.1285586610209935 -1.3713480710077721 -0.3455495161959593c -0.2832664491105158,-0.4741081772169529 -0.12855866102099356,-1.0880816218972564 0.3455495161959593 -1.3713480710077721c 0.4741081772169529,-0.28326644911051585 1.0880816218972564,-0.12855866102099361 1.3713480710077723 0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -75.11403837616098,101.33371611695063 c 0.5472864412728882,7.413498563107417e-2 0.9308514815813536,0.5778965863127017 0.8567164959502794 1.1251830275855899c -7.413498563107414e-2,0.5472864412728882 -0.5778965863127017,0.9308514815813536 -1.1251830275855896 0.8567164959502794c -0.5472864412728882,-7.41349856310741e-2 -0.9308514815813536,-0.5778965863127017 -0.8567164959502794 -1.1251830275855896c 7.413498563107407e-2,-0.5472864412728882 0.5778965863127016,-0.9308514815813536 1.1251830275855896 -0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.86638527409033,98.74870146600571 c 0.3991885805478933,-0.38166336221311603 1.03219415060114,-0.3674563657073667 1.413857512814256 3.1732214840526574e-2c 0.38166336221311603,0.3991885805478933 0.36745636570736673,1.03219415060114 -3.173221484052646e-2 1.413857512814256c -0.39918858054789325,0.3816633622131161 -1.03219415060114,0.3674563657073668 -1.4138575128142559 -3.173221484052635e-2c -0.3816633622131161,-0.39918858054789325 -0.36745636570736684,-1.03219415060114 3.173221484052635e-2 -1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -79.98000153101792,98.5070111664925 c -4.950642329273803e-2,-0.5500614137970616 0.3562735712947436,-1.0361071796059345 0.9063349850918052 -1.0856136028986725c 0.5500614137970616,-4.9506423292738064e-2 1.0361071796059345,0.3562735712947435 1.0856136028986725 0.906334985091805c 4.95064232927381e-2,0.5500614137970616 -0.35627357129474346,1.0361071796059345 -0.906334985091805 1.0856136028986725c -0.5500614137970616,4.950642329273813e-2 -1.0361071796059345,-0.3562735712947434 -1.0856136028986727 -0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.11027059928038,100.7906429435281 c -0.46092208064694096,-0.3042520015838137 -0.5879282738530138,-0.9245481545264642 -0.2836762722692002 -1.385470235173405c 0.30425200158381366,-0.46092208064694096 0.9245481545264641,-0.5879282738530139 1.385470235173405 -0.28367627226920034c 0.460922080646941,0.30425200158381366 0.5879282738530139,0.924548154526464 0.28367627226920034 1.385470235173405c -0.3042520015838136,0.460922080646941 -0.924548154526464,0.5879282738530139 -1.385470235173405 0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -81.65305642090631,103.87997549140576 c -0.5252540101770148,0.17066537343183155 -1.0894081372382693,-0.11678551174319118 -1.2600735106701009 -0.6420395219202059c -0.17066537343183158,-0.5252540101770148 0.11678551174319113,-1.0894081372382693 0.6420395219202057 -1.2600735106701009c 0.5252540101770148,-0.1706653734318316 1.0894081372382693,0.11678551174319107 1.2600735106701009 0.6420395219202056c 0.17066537343183164,0.5252540101770148 -0.11678551174319102,1.0894081372382693 -0.6420395219202057 1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -64.69577678338547,108.79839346294841 l -0.6675628018689428,2.92478373654547 l -2.702906603707257,1.3016512173526746 l -2.702906603707256,-1.3016512173526742 l -0.6675628018689435,-2.92478373654547 l 1.8704694055761997,-2.3454944474040893 l 3.0,-1.1102230246251565e-16 l 1.8704694055762001,2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.73984978339567,110.94134571702585 c 0.4317936047046943,0.3443439092416015 0.5026855898508982,0.9735276796220689 0.15834168060929665 1.405321284326763c -0.3443439092416015,0.4317936047046943 -0.9735276796220689,0.5026855898508982 -1.405321284326763 0.15834168060929676c -0.43179360470469436,-0.34434390924160146 -0.5026855898508982,-0.9735276796220689 -0.15834168060929676 -1.4053212843267628c 0.34434390924160146,-0.43179360470469436 0.9735276796220688,-0.5026855898508982 1.405321284326763 -0.158341680609297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.91829771734179,107.82346555076658 c 0.5384378180823962,-0.12289491834217771 1.0745539277959604,0.2139691601431127 1.197448846138138 0.7524069782255088c 0.12289491834217774,0.5384378180823962 -0.21396916014311265,1.0745539277959604 -0.7524069782255087 1.197448846138138c -0.5384378180823962,0.12289491834217778 -1.0745539277959604,-0.2139691601431126 -1.197448846138138 -0.7524069782255086c -0.1228949183421778,-0.5384378180823962 0.21396916014311254,-1.0745539277959604 0.7524069782255087 -1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -67.46721505686409,106.01901527642677 c 0.2396273723141898,-0.4975913658148208 0.8372612412051563,-0.7067125010990509 1.3348526070199769 -0.46708512878486125c 0.4975913658148208,0.23962737231418976 0.7067125010990509,0.8372612412051563 0.4670851287848613 1.3348526070199769c -0.23962737231418973,0.49759136581482083 -0.8372612412051562,0.706712501099051 -1.3348526070199767 0.4670851287848613c -0.49759136581482083,-0.2396273723141897 -0.706712501099051,-0.8372612412051561 -0.4670851287848614 -1.334852607019977Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -70.46721505686409,106.8867827546619 c -0.2396273723141899,-0.49759136581482066 -3.050623702995997e-2,-1.0952252347057874 0.4670851287848606 -1.334852607019977c 0.49759136581482066,-0.23962737231418993 1.0952252347057874,-3.0506237029960026e-2 1.334852607019977 0.46708512878486047c 0.23962737231418996,0.4975913658148206 3.050623702996008e-2,1.0952252347057874 -0.46708512878486036 1.334852607019977c -0.4975913658148206,0.23962737231418998 -1.0952252347057874,3.0506237029960137e-2 -1.3348526070199773 -0.4670851287848605Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.65923652849419,109.77332137513024 c -0.5384378180823962,-0.12289491834217757 -0.8753018965676869,-0.6590110280557416 -0.7524069782255094 -1.1974488461381378c 0.12289491834217754,-0.5384378180823962 0.6590110280557415,-0.8753018965676869 1.1974488461381376 -0.7524069782255094c 0.5384378180823962,0.1228949183421775 0.8753018965676869,0.6590110280557415 0.7524069782255094 1.1974488461381374c -0.12289491834217747,0.5384378180823962 -0.6590110280557415,0.8753018965676869 -1.1974488461381376 0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -70.1456629908102,112.50500868196193 c -0.43179360470469424,0.3443439092416017 -1.0609773750851617,0.2734519240953981 -1.4053212843267633 -0.158341680609296c -0.3443439092416017,-0.43179360470469424 -0.27345192409539815,-1.0609773750851617 0.158341680609296 -1.4053212843267633c 0.4317936047046942,-0.34434390924160174 1.0609773750851617,-0.2734519240953982 1.4053212843267633 0.15834168060929588c 0.34434390924160174,0.4317936047046942 0.2734519240953982,1.0609773750851614 -0.1583416806092961 1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -67.06624618896167,113.02482841684656 c 0.0,0.5522847498307935 -0.44771525016920644,1.0 -0.9999999999999998 1.0c -0.5522847498307935,3.3817687554908895e-17 -1.0,-0.4477152501692064 -1.0 -0.9999999999999997c -6.763537510981779e-17,-0.5522847498307935 0.4477152501692063,-1.0 0.9999999999999996 -1.0c 0.5522847498307935,-1.0145306266472669e-16 1.0,0.44771525016920627 1.0000000000000002 0.9999999999999997Z" /></g></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -31.912658772842043,-72.14677221605953 l -36.15358741611963,-26.267118797770355 l -36.15358741611962,26.26711879777035 l 13.809441577717198,42.501091001323715 l 44.68829167680483,3.552713678800501e-15 l 13.809441577717216,-42.501091001323715 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -25.356625446910634,-63.12316647624104 l 4.051851426802628,-12.47031643135051 l -10.607884752734037,-7.70707940504091 l -10.607884752734037,7.707079405040909 l 4.051851426802625,12.47031643135051 l 13.112066651862822,1.7763568394002505e-15 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -28.53556840898709,-61.76442104669372 l 2.259214398010831,1.9738161778191383 l 2.9517887657958894,-0.5356706843959083 l 1.4216059874189964,-2.6417865955702124 l -1.179075094961769,-2.758583317654352 l -2.8918885820875584,-0.798110536700027 l -2.4270509831248432,1.7633557568774183 l -0.13459449105154686,2.9969791996239428 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -27.24031687167211,-60.056641714441255 c -0.1469280926995649,0.5323819873655853 0.16554402776359217,1.0830716135629639 0.6979260151291773 1.2299997062625287c 0.5323819873655853,0.14692809269956492 1.0830716135629639,-0.16554402776359212 1.2299997062625287 -0.6979260151291772c 0.14692809269956494,-0.5323819873655853 -0.16554402776359206,-1.0830716135629639 -0.6979260151291771 -1.2299997062625287c -0.5323819873655853,-0.146928092699565 -1.0830716135629639,0.165544027763592 -1.229999706262529 0.6979260151291772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.928593440641013,-62.683948819245174 c -0.5078411658260448,0.21706173128422657 -0.7435644721817545,0.8047116383793291 -0.526502740897528 1.3125528042053738c 0.21706173128422654,0.5078411658260448 0.804711638379329,0.7435644721817545 1.3125528042053736 0.526502740897528c 0.5078411658260448,-0.2170617312842265 0.7435644721817545,-0.8047116383793289 0.526502740897528 -1.3125528042053736c -0.21706173128422648,-0.5078411658260448 -0.8047116383793289,-0.7435644721817545 -1.3125528042053736 -0.5265027408975282Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -27.927105255462543,-65.6419957781744 c -0.4863394830136129,-0.261710435706553 -1.092753758623184,-7.961261362987432e-2 -1.3544641943297369 0.4067268693837385c -0.26171043570655306,0.4863394830136129 -7.961261362987437e-2,1.0927537586231837 0.40672686938373837 1.3544641943297366c 0.48633948301361285,0.26171043570655306 1.0927537586231837,7.961261362987443e-2 1.3544641943297366 -0.40672686938373825c 0.2617104357065531,-0.48633948301361285 7.961261362987448e-2,-1.0927537586231837 -0.40672686938373814 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.989993346212067,-66.70331289799371 c -9.861424997442805e-2,-0.5434093066903097 -0.6190771767069561,-0.9039869437744217 -1.1624864833972657 -0.8053726937999935c -0.5434093066903097,9.861424997442803e-2 -0.9039869437744217,0.619077176706956 -0.8053726937999937 1.1624864833972655c 9.861424997442798e-2,0.5434093066903097 0.6190771767069558,0.9039869437744217 1.1624864833972652 0.8053726937999937c 0.5434093066903097,-9.861424997442796e-2 0.9039869437744217,-0.6190771767069558 0.8053726937999941 -1.1624864833972657Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -22.32896288671953,-65.06870674055534 c 0.3633695246596053,-0.415909886206513 0.3207771461426153,-1.0476406672837182 -9.513274006389749e-2 -1.4110101919433236c -0.415909886206513,-0.3633695246596053 -1.0476406672837182,-0.3207771461426154 -1.4110101919433233 9.513274006389749e-2c -0.36336952465960537,0.4159098862065129 -0.32077714614261543,1.047640667283718 9.513274006389738e-2 1.411010191943323c 0.4159098862065129,0.36336952465960537 1.047640667283718,0.3207771461426155 1.4110101919433236 -9.513274006389705e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -21.947824088111886,-61.969069082299384 c 0.5517286358374672,2.4778161606335395e-2 1.0190797352854948,-0.402399600353332 1.0438578968918302 -0.954128236190799c 2.477816160633543e-2,-0.5517286358374672 -0.40239960035333194,-1.0190797352854948 -0.954128236190799 -1.0438578968918302c -0.5517286358374672,-2.477816160633546e-2 -1.0190797352854948,0.4023996003533319 -1.0438578968918302 0.9541282361907988c -2.4778161606335496e-2,0.5517286358374672 0.40239960035333183,1.0190797352854948 0.954128236190799 1.0438578968918304Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.133582239555313,-59.738490300978015 c 0.32462483101657813,0.4468077483472284 0.949994498320192,0.5458565730990531 1.3968022466674204 0.22123174208247498c 0.4468077483472284,-0.32462483101657813 0.5458565730990531,-0.949994498320192 0.2212317420824751 -1.3968022466674204c -0.3246248310165781,-0.4468077483472285 -0.9499944983201919,-0.5458565730990532 -1.3968022466674201 -0.2212317420824751c -0.4468077483472285,0.3246248310165781 -0.5458565730990532,0.9499944983201918 -0.2212317420824752 1.3968022466674204Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -40.74328319296095,-65.72664546649506 l -1.1790750949617717,2.7585833176543506 l 1.4216059874189948,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.1345944910515433,-2.996979199623943 l -2.4270509831248415,-1.76335575687742 l -2.8918885820875593,0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.96722311827324,-63.967055215382025 c -0.5517286358374671,2.4778161606334875e-2 -0.978906397797135,0.49212926105436183 -0.9541282361908001 1.0438578968918288c 2.477816160633484e-2,0.5517286358374671 0.4921292610543618,0.978906397797135 1.0438578968918288 0.9541282361908001c 0.5517286358374671,-2.477816160633481e-2 0.978906397797135,-0.4921292610543617 0.9541282361908001 -1.0438578968918286c -2.4778161606334774e-2,-0.5517286358374671 -0.49212926105436167,-0.978906397797135 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -39.99021172695734,-66.38458419243477 c -0.363369524659605,-0.41590988620651337 -0.9951003057368102,-0.4585022647235041 -1.4110101919433233 -9.513274006389916e-2c -0.41590988620651337,0.363369524659605 -0.45850226472350414,0.9951003057368101 -9.513274006389927e-2 1.4110101919433233c 0.3633695246596049,0.4159098862065134 0.99510030573681,0.45850226472350414 1.411010191943323 9.513274006389938e-2c 0.4159098862065134,-0.3633695246596049 0.4585022647235042,-0.99510030573681 9.513274006389949e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.867465022274764,-66.34619910839645 c 9.861424997442858e-2,-0.5434093066903096 -0.26196338710968275,-1.063872233422838 -0.8053726937999923 -1.1624864833972666c -0.5434093066903096,-9.861424997442861e-2 -1.063872233422838,0.2619633871096827 -1.1624864833972666 0.8053726937999921c -9.861424997442865e-2,0.5434093066903096 0.26196338710968264,1.063872233422838 0.8053726937999921 1.1624864833972666c 0.5434093066903096,9.861424997442868e-2 1.063872233422838,-0.2619633871096826 1.1624864833972668 -0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -34.95047496527556,-63.88080471446092 c 0.4863394830136131,-0.26171043570655256 0.6684373050902924,-0.8681247113161231 0.40672686938374 -1.3544641943297362c -0.2617104357065525,-0.4863394830136131 -0.8681247113161231,-0.6684373050902925 -1.354464194329736 -0.40672686938374003c -0.4863394830136132,0.2617104357065525 -0.6684373050902925,0.868124711316123 -0.4067268693837401 1.354464194329736c 0.26171043570655245,0.4863394830136132 0.868124711316123,0.6684373050902925 1.354464194329736 0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.68277416835094,-60.84489327414227 c 0.5078411658260445,0.21706173128422704 1.0954910729211473,-1.8661575071481917e-2 1.3125528042053742 -0.5265027408975264c 0.21706173128422707,-0.5078411658260445 -1.8661575071481862e-2,-1.0954910729211473 -0.5265027408975262 -1.3125528042053742c -0.5078411658260445,-0.2170617312842271 -1.0954910729211473,1.8661575071481806e-2 -1.3125528042053742 0.5265027408975261c -0.21706173128422712,0.5078411658260445 1.866157507148175e-2,1.0954910729211471 0.5265027408975262 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.512926395403696,-59.52456802330791 c 0.14692809269956444,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956442 0.8448541078287432,-0.6976177188969428 0.6979260151291787 -1.2299997062625279c -0.1469280926995644,-0.5323819873655854 -0.6976177188969427,-0.8448541078287432 -1.2299997062625279 -0.6979260151291787c -0.5323819873655854,0.14692809269956433 -0.8448541078287432,0.6976177188969426 -0.6979260151291791 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.309769294878684,-60.91406080556297 c -0.32462483101657846,0.44680774834722814 -0.22557600626475438,1.0721774156508421 0.22123174208247365 1.3968022466674204c 0.44680774834722814,0.32462483101657846 1.0721774156508421,0.22557600626475444 1.3968022466674204 -0.22123174208247365c 0.3246248310165785,-0.4468077483472281 0.2255760062647545,-1.0721774156508421 -0.22123174208247354 -1.3968022466674204c -0.4468077483472281,-0.3246248310165785 -1.072177415650842,-0.2255760062647545 -1.3968022466674204 0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -40.747375170215314,-78.5612668421121 l -2.987922881985716,-0.2689179267103019 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.575346380805597,1.5386978322177194 l 2.808704611919212,-1.054124472244026 l 0.9270509831248435,-2.85316954888546 l -1.652690944356306,-2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.799063181561294,-79.18155959290375 c -0.19405895681460308,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583953c -0.5170682413141326,0.19405895681460306 -0.7789190033729985,0.7705414534069468 -0.5848600465583954 1.2876096947210791c 0.19405895681460303,0.5170682413141326 0.7705414534069467,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.194058956814603 0.7789190033729985,-0.7705414534069466 0.5848600465583957 -1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -39.88892637661345,-78.0483675647062 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.960450960041356,-75.06659731918026 c 0.5472864412728883,-7.413498563107399e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502799 -1.1251830275855896c -7.413498563107396e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855894 -0.8567164959502799c -0.5472864412728883,7.413498563107392e-2 -0.9308514815813538,0.5778965863127014 -0.8567164959502799 1.1251830275855894c 7.413498563107389e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855894 0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -40.71279785797072,-72.48158266823535 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.173221484052546e-2 1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -43.826414114898306,-72.23989236872214 c -4.950642329273823e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.9506423292738265e-2 1.0361071796059347,-0.35627357129474313 1.085613602898673 -0.9063349850918047c 4.95064232927383e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.9506423292738334e-2 -1.0361071796059347,0.356273571294743 -1.0856136028986731 0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.95668318316077,-74.52352414575773 c -0.46092208064694107,0.30425200158381355 -0.5879282738530143,0.9245481545264639 -0.2836762722692008 1.385470235173405c 0.3042520015838135,0.46092208064694107 0.9245481545264639,0.5879282738530143 1.3854702351734047 0.2836762722692009c 0.4609220806469411,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692009 -1.3854702351734047c -0.30425200158381344,-0.4609220806469411 -0.9245481545264638,-0.5879282738530144 -1.385470235173405 -0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.499469004786675,-77.6128566936354 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382693,0.1167855117431908 -1.260073510670101 0.6420395219202054c -0.17066537343183177,0.5252540101770148 0.11678551174319074,1.0894081372382693 0.6420395219202053 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382693,-0.11678551174319068 1.260073510670101 -0.6420395219202052c 0.17066537343183183,-0.5252540101770148 -0.11678551174319063,-1.0894081372382693 -0.6420395219202053 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -28.54218936726584,-82.53127466517805 l -0.667562801868942,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689442,2.92478373654547 l 1.870469405576199,2.3454944474040897 l 3.0,9.43689570931383e-16 l 1.870469405576201,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.58626236727605,-84.67422691925549 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -28.764710301222156,-81.55634675299622 c 0.5384378180823962,0.12289491834217786 1.0745539277959604,-0.21396916014311237 1.1974488461381383 -0.7524069782255084c 0.12289491834217789,-0.5384378180823962 -0.21396916014311232,-1.0745539277959604 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217793 -1.0745539277959604,0.21396916014311226 -1.1974488461381383 0.7524069782255082c -0.12289491834217796,0.5384378180823962 0.2139691601431122,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -31.31362764074446,-79.7518964786564 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -34.313627640744464,-80.61966395689153 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.50564911237455,-83.50620257735987 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381374 -0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -33.99207557469057,-86.23788988419156 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -30.91265877284204,-86.7577096190762 c 1.5328981135287284e-16,-0.5522847498307935 -0.44771525016920616,-1.0000000000000002 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.8710749890778175e-16 -1.0000000000000002,0.4477152501692061 -1.0000000000000002 0.9999999999999993c -2.2092518646269063e-16,0.5522847498307935 0.44771525016920605,1.0000000000000002 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.547428740175995e-16 1.0000000000000002,-0.447715250169206 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -20.994877724781023,-72.15025305981871 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296736,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029935 l -1.6526909443563085,2.503719761163907 l 0.9270509831248416,2.853169548885461 l 2.808704611919211,1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -18.970428325427527,-72.85437763831513 c 0.46092208064694085,0.3042520015838138 1.0812182335895912,0.17724580837774123 1.385470235173405 -0.28367627226919945c 0.3042520015838139,-0.46092208064694085 0.1772458083777413,-1.0812182335895912 -0.28367627226919934 -1.385470235173405c -0.4609220806469408,-0.3042520015838139 -1.0812182335895912,-0.17724580837774134 -1.385470235173405 0.28367627226919934c -0.30425200158381394,0.4609220806469408 -0.1772458083777414,1.0812182335895912 0.28367627226919945 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -21.990852018776263,-72.06061375091528 c 4.9506423292737786e-2,0.5500614137970617 0.5355521891016104,0.9558414083845437 1.085613602898672 0.906334985091806c 0.5500614137970617,-4.950642329273775e-2 0.9558414083845437,-0.5355521891016103 0.906334985091806 -1.0856136028986718c -4.950642329273772e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273768e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.4946449856871,-73.92717239589014 c -0.3991885805478934,0.38166336221311586 -0.41339557705364316,1.0146689322663627 -3.173221484052735e-2 1.413857512814256c 0.38166336221311586,0.3991885805478934 1.0146689322663627,0.4133955770536432 1.4138575128142559 3.173221484052746e-2c 0.39918858054789347,-0.3816633622131158 0.4133955770536432,-1.0146689322663625 3.173221484052757e-2 -1.4138575128142556c -0.3816633622131158,-0.39918858054789347 -1.0146689322663625,-0.41339557705364327 -1.413857512814256 -3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -24.596400054007418,-77.04849684271613 c -0.5472864412728882,-7.413498563107444e-2 -1.051048041954516,0.30943005467739054 -1.1251830275855903 0.8567164959502785c -7.413498563107447e-2,0.5472864412728882 0.3094300546773905,1.0510480419545158 0.8567164959502784 1.1251830275855903c 0.5472864412728882,7.413498563107451e-2 1.0510480419545158,-0.30943005467739043 1.1251830275855903 -0.8567164959502783c 7.413498563107454e-2,-0.5472864412728882 -0.3094300546773904,-1.0510480419545158 -0.8567164959502784 -1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -22.219493581866903,-79.07416611951801 c -0.28326644911051546,-0.47410817721695314 -0.8972398937908189,-0.6288159653064759 -1.371348071007772 -0.3455495161959604c -0.47410817721695314,0.2832664491105154 -0.6288159653064759,0.8972398937908188 -0.3455495161959605 1.371348071007772c 0.2832664491105154,0.4741081772169532 0.8972398937908188,0.6288159653064759 1.371348071007772 0.3455495161959605c 0.4741081772169532,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.3455495161959605 -1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -19.153784622843315,-78.47880994474106 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -17.707814552147514,-75.71074366104509 c 0.5252540101770149,-0.17066537343183144 0.8127048953520379,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.1706653734318314,-0.5252540101770149 -0.7348195004930859,-0.8127048953520379 -1.2600735106701006 -0.6420395219202065c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202065 1.2600735106701004c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -52.27813367649067,-20.622075474917324 h 13.112066651862818 l 4.051851426802628,-12.470316431350511 l -10.607884752734037,-7.707079405040911 l -10.607884752734037,7.707079405040908 l 4.051851426802628,12.470316431350515 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -54.55272477067816,-23.225554465171342 l -1.1790750949617717,2.7585833176543506 l 1.4216059874189948,2.6417865955702142 l 2.9517887657958877,0.5356706843959103 l 2.2592143980108332,-1.9738161778191363 l -0.1345944910515433,-2.996979199623943 l -2.4270509831248415,-1.76335575687742 l -2.8918885820875593,0.7981105367000243 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.77666469599045,-21.465964214058307 c -0.5517286358374671,2.4778161606334875e-2 -0.978906397797135,0.49212926105436183 -0.9541282361908001 1.0438578968918288c 2.477816160633484e-2,0.5517286358374671 0.4921292610543618,0.978906397797135 1.0438578968918288 0.9541282361908001c 0.5517286358374671,-2.477816160633481e-2 0.978906397797135,-0.4921292610543617 0.9541282361908001 -1.0438578968918286c -2.4778161606334774e-2,-0.5517286358374671 -0.49212926105436167,-0.978906397797135 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.79965330467455,-23.883493191111054 c -0.363369524659605,-0.41590988620651337 -0.9951003057368102,-0.4585022647235041 -1.4110101919433233 -9.513274006389916e-2c -0.41590988620651337,0.363369524659605 -0.45850226472350414,0.9951003057368101 -9.513274006389927e-2 1.4110101919433233c 0.3633695246596049,0.4159098862065134 0.99510030573681,0.45850226472350414 1.411010191943323 9.513274006389938e-2c 0.4159098862065134,-0.3633695246596049 0.4585022647235042,-0.99510030573681 9.513274006389949e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -50.67690659999197,-23.84510810707273 c 9.861424997442858e-2,-0.5434093066903096 -0.26196338710968275,-1.063872233422838 -0.8053726937999923 -1.1624864833972666c -0.5434093066903096,-9.861424997442861e-2 -1.063872233422838,0.2619633871096827 -1.1624864833972666 0.8053726937999921c -9.861424997442865e-2,0.5434093066903096 0.26196338710968264,1.063872233422838 0.8053726937999921 1.1624864833972666c 0.5434093066903096,9.861424997442868e-2 1.063872233422838,-0.2619633871096826 1.1624864833972668 -0.8053726937999921Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -48.75991654299277,-21.379713713137207 c 0.4863394830136131,-0.26171043570655256 0.6684373050902924,-0.8681247113161231 0.40672686938374 -1.3544641943297362c -0.2617104357065525,-0.4863394830136131 -0.8681247113161231,-0.6684373050902925 -1.354464194329736 -0.40672686938374003c -0.4863394830136132,0.2617104357065525 -0.6684373050902925,0.868124711316123 -0.4067268693837401 1.354464194329736c 0.26171043570655245,0.4863394830136132 0.868124711316123,0.6684373050902925 1.354464194329736 0.40672686938374025Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -49.49221574606815,-18.343802272818554 c 0.5078411658260445,0.21706173128422704 1.0954910729211473,-1.8661575071481917e-2 1.3125528042053742 -0.5265027408975264c 0.21706173128422707,-0.5078411658260445 -1.8661575071481862e-2,-1.0954910729211473 -0.5265027408975262 -1.3125528042053742c -0.5078411658260445,-0.2170617312842271 -1.0954910729211473,1.8661575071481806e-2 -1.3125528042053742 0.5265027408975261c -0.21706173128422712,0.5078411658260445 1.866157507148175e-2,1.0954910729211471 0.5265027408975262 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -52.322367973120905,-17.023477021984192 c 0.14692809269956444,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956442 0.8448541078287432,-0.6976177188969428 0.6979260151291787 -1.2299997062625279c -0.1469280926995644,-0.5323819873655854 -0.6976177188969427,-0.8448541078287432 -1.2299997062625279 -0.6979260151291787c -0.5323819873655854,0.14692809269956433 -0.8448541078287432,0.6976177188969426 -0.6979260151291791 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.11921087259589,-18.41296980423925 c -0.32462483101657846,0.44680774834722814 -0.22557600626475438,1.0721774156508421 0.22123174208247365 1.3968022466674204c 0.44680774834722814,0.32462483101657846 1.0721774156508421,0.22557600626475444 1.3968022466674204 -0.22123174208247365c 0.3246248310165785,-0.4468077483472281 0.2255760062647545,-1.0721774156508421 -0.22123174208247354 -1.3968022466674204c -0.4468077483472281,-0.3246248310165785 -1.072177415650842,-0.2255760062647545 -1.3968022466674204 0.22123174208247365Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -54.55681674793253,-36.060175840788396 l -2.9879228819857166,-0.2689179267103018 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.5753463808055974,1.5386978322177196 l 2.808704611919212,-1.0541244722440264 l 0.9270509831248435,-2.8531695488854605 l -1.652690944356307,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -56.60850475927851,-36.68046859158004 c -0.19405895681460317,-0.5170682413141328 -0.770541453406947,-0.7789190033729985 -1.2876096947210796 -0.5848600465583953c -0.5170682413141328,0.19405895681460314 -0.7789190033729985,0.7705414534069469 -0.5848600465583954 1.2876096947210796c 0.1940589568146031,0.5170682413141328 0.7705414534069468,0.7789190033729985 1.2876096947210793 0.5848600465583955c 0.5170682413141328,-0.19405895681460308 0.7789190033729986,-0.7705414534069468 0.5848600465583955 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.698367954330664,-35.54727656338249 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -52.76989253775857,-32.56550631785655 c 0.5472864412728883,-7.413498563107401e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502798 -1.1251830275855896c -7.413498563107399e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855896 -0.8567164959502798c -0.5472864412728883,7.413498563107394e-2 -0.9308514815813538,0.5778965863127015 -0.8567164959502798 1.1251830275855894c 7.413498563107392e-2,0.5472864412728883 0.5778965863127014,0.9308514815813538 1.1251830275855896 0.85671649595028Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -54.522239435687936,-29.980491666911636 c 0.39918858054789325,0.3816633622131162 1.03219415060114,0.36745636570736706 1.4138575128142563 -3.173221484052613e-2c 0.3816633622131162,-0.39918858054789325 0.3674563657073671,-1.03219415060114 -3.173221484052602e-2 -1.413857512814256c -0.3991885805478932,-0.38166336221311625 -1.03219415060114,-0.36745636570736717 -1.413857512814256 3.173221484052591e-2c -0.38166336221311625,0.3991885805478932 -0.3674563657073672,1.03219415060114 3.1732214840525685e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -57.63585569261552,-29.738801367398434 c -4.9506423292738216e-2,0.5500614137970617 0.3562735712947433,1.0361071796059347 0.906334985091805 1.085613602898673c 0.5500614137970617,4.950642329273825e-2 1.0361071796059347,-0.35627357129474324 1.085613602898673 -0.9063349850918048c 4.9506423292738286e-2,-0.5500614137970617 -0.3562735712947432,-1.0361071796059347 -0.9063349850918048 -1.085613602898673c -0.5500614137970617,-4.950642329273832e-2 -1.0361071796059347,0.35627357129474313 -1.0856136028986731 0.9063349850918048Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -59.766124760877986,-32.022433144434025 c -0.4609220806469411,0.3042520015838136 -0.5879282738530143,0.924548154526464 -0.2836762722692008 1.385470235173405c 0.30425200158381355,0.4609220806469411 0.924548154526464,0.5879282738530144 1.385470235173405 0.2836762722692009c 0.4609220806469412,-0.30425200158381355 0.5879282738530144,-0.924548154526464 0.2836762722692009 -1.385470235173405c -0.3042520015838135,-0.4609220806469412 -0.924548154526464,-0.5879282738530144 -1.385470235173405 -0.2836762722692008Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -59.30891058250389,-35.11176569231168 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382696,0.11678551174319085 -1.2600735106701013 0.6420395219202055c -0.17066537343183177,0.5252540101770148 0.1167855117431908,1.0894081372382696 0.6420395219202054 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382696,-0.11678551174319074 1.260073510670101 -0.6420395219202053c 0.17066537343183183,-0.5252540101770148 -0.11678551174319068,-1.0894081372382696 -0.6420395219202052 -1.2600735106701013Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -42.35163094498306,-40.03018366385433 l -0.6675628018689418,-2.9247837365454705 l -2.7029066037072567,-1.3016512173526755 l -2.7029066037072567,1.3016512173526733 l -0.6675628018689445,2.9247837365454696 l 1.8704694055761988,2.3454944474040897 l 3.0,1.1102230246251565e-15 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.39570394499327,-42.17313591793177 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.574151878939375,-39.055255751672505 c 0.5384378180823962,0.1228949183421779 1.0745539277959606,-0.21396916014311232 1.1974488461381383 -0.7524069782255084c 0.12289491834217793,-0.5384378180823962 -0.21396916014311226,-1.0745539277959606 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217797 -1.0745539277959604,0.2139691601431122 -1.1974488461381383 0.7524069782255082c -0.122894918342178,0.5384378180823962 0.21396916014311215,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -45.12306921846168,-37.25080547733269 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -48.12306921846168,-38.11857295556781 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -49.31509069009177,-41.005111576036164 c -0.5384378180823963,0.12289491834217739 -0.8753018965676871,0.6590110280557413 -0.7524069782255098 1.1974488461381374c 0.12289491834217736,0.5384378180823963 0.6590110280557413,0.8753018965676872 1.1974488461381374 0.7524069782255098c 0.5384378180823963,-0.12289491834217732 0.8753018965676872,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217729,-0.5384378180823963 -0.6590110280557412,-0.8753018965676872 -1.1974488461381374 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -47.80151715240778,-43.73679888286784 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -44.72210035055926,-44.25661861775248 c 1.8394777362344743e-16,-0.5522847498307935 -0.4477152501692061,-1.0000000000000002 -0.9999999999999994 -1.0000000000000002c -0.5522847498307935,-2.177654611783563e-16 -1.0000000000000002,0.44771525016920605 -1.0000000000000002 0.9999999999999993c -2.515831487332652e-16,0.5522847498307935 0.447715250169206,1.0000000000000002 0.9999999999999992 1.0000000000000002c 0.5522847498307935,2.854008362881741e-16 1.0000000000000002,-0.44771525016920594 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -34.80431930249824,-29.649162058495 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.987922881985716,0.26891792671029957 l -1.6526909443563083,2.503719761163907 l 0.9270509831248418,2.853169548885461 l 2.8087046119192114,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -32.77986990314475,-30.353286636991413 c 0.4609220806469409,0.3042520015838138 1.0812182335895915,0.17724580837774118 1.3854702351734052 -0.28367627226919956c 0.3042520015838139,-0.4609220806469409 0.17724580837774123,-1.0812182335895915 -0.28367627226919945 -1.385470235173405c -0.46092208064694085,-0.3042520015838139 -1.0812182335895912,-0.1772458083777413 -1.385470235173405 0.28367627226919945c -0.30425200158381394,0.46092208064694085 -0.17724580837774134,1.0812182335895912 0.2836762722691992 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.80029359649348,-29.55952274959157 c 4.9506423292737814e-2,0.5500614137970617 0.5355521891016104,0.9558414083845438 1.0856136028986723 0.906334985091806c 0.5500614137970617,-4.950642329273778e-2 0.9558414083845438,-0.5355521891016104 0.906334985091806 -1.085613602898672c -4.9506423292737745e-2,-0.5500614137970617 -0.5355521891016104,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273771e-2 -0.9558414083845438,0.5355521891016103 -0.9063349850918065 1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.30408656340432,-31.42608139456642 c -0.3991885805478934,0.3816633622131159 -0.4133955770536431,1.0146689322663627 -3.173221484052724e-2 1.413857512814256c 0.3816633622131159,0.3991885805478934 1.0146689322663627,0.41339557705364316 1.413857512814256 3.173221484052735e-2c 0.39918858054789347,-0.38166336221311586 0.4133955770536432,-1.0146689322663627 3.173221484052746e-2 -1.4138575128142559c -0.38166336221311586,-0.39918858054789347 -1.0146689322663627,-0.4133955770536432 -1.4138575128142563 -3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.405841631724634,-34.547405841392425 c -0.5472864412728882,-7.413498563107442e-2 -1.051048041954516,0.30943005467739065 -1.1251830275855905 0.8567164959502787c -7.413498563107444e-2,0.5472864412728882 0.3094300546773906,1.051048041954516 0.8567164959502787 1.1251830275855905c 0.5472864412728882,7.413498563107448e-2 1.051048041954516,-0.30943005467739054 1.1251830275855905 -0.8567164959502784c 7.413498563107451e-2,-0.5472864412728882 -0.3094300546773905,-1.051048041954516 -0.8567164959502787 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.028935159584115,-36.5730751181943 c -0.2832664491105155,-0.47410817721695314 -0.897239893790819,-0.6288159653064758 -1.371348071007772 -0.3455495161959603c -0.47410817721695314,0.28326644911051546 -0.6288159653064758,0.897239893790819 -0.3455495161959604 1.371348071007772c 0.28326644911051546,0.4741081772169532 0.8972398937908189,0.6288159653064759 1.371348071007772 0.3455495161959604c 0.4741081772169532,-0.2832664491105154 0.6288159653064759,-0.8972398937908188 0.3455495161959603 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -32.963226200560534,-35.97771894341736 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.2876096947210802 -0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -31.51725612986473,-33.20965265972137 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -42.3450099867043,-19.26333004537 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.04975844938932,-17.555550713117537 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -42.73803501835822,-20.18285781792145 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -41.73654683317975,-23.140904776850682 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -38.79943492392928,-24.20222189667 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -36.13840446443674,-22.567615739231627 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -35.757265665829095,-19.467978080975673 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -37.94302381727253,-17.2373992996543 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -101.01827678009813,-33.09239190626785 l 4.051851426802627,12.47031643135051 h 13.112066651862818 l 4.051851426802629,-12.470316431350508 l -10.607884752734035,-7.70707940504091 l -10.607884752734039,7.707079405040909 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -99.24510842473737,-36.06017584078841 l -2.987922881985716,-0.2689179267103019 l -2.073187946960595,2.1683845914821736 l 0.40269979745296547,2.9728492853038033 l 2.575346380805597,1.5386978322177194 l 2.808704611919212,-1.054124472244026 l 0.9270509831248435,-2.85316954888546 l -1.652690944356306,-2.503719761163908 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.29679643608335,-36.68046859158005 c -0.19405895681460308,-0.5170682413141326 -0.7705414534069468,-0.7789190033729985 -1.2876096947210793 -0.5848600465583953c -0.5170682413141326,0.19405895681460306 -0.7789190033729985,0.7705414534069468 -0.5848600465583954 1.2876096947210791c 0.19405895681460303,0.5170682413141326 0.7705414534069467,0.7789190033729985 1.2876096947210791 0.5848600465583955c 0.5170682413141326,-0.194058956814603 0.7789190033729985,-0.7705414534069466 0.5848600465583957 -1.2876096947210793Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -98.3866596311355,-35.5472765633825 c 0.2832664491105159,-0.4741081772169529 0.12855866102099384,-1.0880816218972567 -0.345549516195959 -1.3713480710077723c -0.4741081772169529,-0.28326644911051596 -1.0880816218972567,-0.1285586610209939 -1.3713480710077723 0.34554951619595886c -0.28326644911051596,0.47410817721695286 -0.12855866102099395,1.0880816218972567 0.34554951619595886 1.3713480710077723c 0.47410817721695286,0.283266449110516 1.0880816218972564,0.128558661020994 1.3713480710077723 -0.345549516195959Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.4581842145634,-32.56550631785657 c 0.5472864412728883,-7.413498563107399e-2 0.9308514815813538,-0.5778965863127015 0.8567164959502799 -1.1251830275855896c -7.413498563107396e-2,-0.5472864412728883 -0.5778965863127015,-0.9308514815813538 -1.1251830275855894 -0.8567164959502799c -0.5472864412728883,7.413498563107392e-2 -0.9308514815813538,0.5778965863127014 -0.8567164959502799 1.1251830275855894c 7.413498563107389e-2,0.5472864412728883 0.5778965863127012,0.9308514815813539 1.1251830275855894 0.8567164959502802Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.21053111249277,-29.98049166691165 c 0.39918858054789313,0.38166336221311614 1.0321941506011398,0.36745636570736706 1.413857512814256 -3.173221484052602e-2c 0.38166336221311614,-0.39918858054789313 0.3674563657073671,-1.0321941506011398 -3.173221484052591e-2 -1.4138575128142559c -0.3991885805478931,-0.3816633622131162 -1.0321941506011398,-0.36745636570736717 -1.4138575128142556 3.1732214840525796e-2c -0.3816633622131162,0.3991885805478931 -0.36745636570736717,1.0321941506011396 3.173221484052546e-2 1.413857512814256Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -102.32414736942034,-29.738801367398448 c -4.950642329273823e-2,0.5500614137970616 0.35627357129474324,1.0361071796059347 0.9063349850918048 1.085613602898673c 0.5500614137970616,4.9506423292738265e-2 1.0361071796059347,-0.35627357129474313 1.085613602898673 -0.9063349850918047c 4.95064232927383e-2,-0.5500614137970616 -0.35627357129474313,-1.0361071796059347 -0.9063349850918045 -1.085613602898673c -0.5500614137970616,-4.9506423292738334e-2 -1.0361071796059347,0.356273571294743 -1.0856136028986731 0.9063349850918047Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -104.45441643768281,-32.02243314443404 c -0.46092208064694107,0.30425200158381355 -0.5879282738530143,0.9245481545264639 -0.2836762722692008 1.385470235173405c 0.3042520015838135,0.46092208064694107 0.9245481545264639,0.5879282738530143 1.3854702351734047 0.2836762722692009c 0.4609220806469411,-0.3042520015838135 0.5879282738530143,-0.9245481545264638 0.2836762722692009 -1.3854702351734047c -0.30425200158381344,-0.4609220806469411 -0.9245481545264638,-0.5879282738530144 -1.385470235173405 -0.283676272269201Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.99720225930874,-35.11176569231169 c -0.5252540101770148,-0.17066537343183175 -1.0894081372382693,0.1167855117431908 -1.260073510670101 0.6420395219202054c -0.17066537343183177,0.5252540101770148 0.11678551174319074,1.0894081372382693 0.6420395219202053 1.260073510670101c 0.5252540101770148,0.1706653734318318 1.0894081372382693,-0.11678551174319068 1.260073510670101 -0.6420395219202052c 0.17066537343183183,-0.5252540101770148 -0.11678551174319063,-1.0894081372382693 -0.6420395219202053 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -87.0399226217879,-40.03018366385434 l -0.6675628018689418,-2.9247837365454705 l -2.7029066037072567,-1.3016512173526755 l -2.7029066037072567,1.3016512173526733 l -0.6675628018689445,2.9247837365454696 l 1.8704694055761988,2.3454944474040897 l 3.0,1.1102230246251565e-15 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.0839956217981,-42.17313591793178 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.26244355574421,-39.05525575167251 c 0.5384378180823962,0.1228949183421779 1.0745539277959606,-0.21396916014311232 1.1974488461381383 -0.7524069782255084c 0.12289491834217793,-0.5384378180823962 -0.21396916014311226,-1.0745539277959606 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217797 -1.0745539277959604,0.2139691601431122 -1.1974488461381383 0.7524069782255082c -0.122894918342178,0.5384378180823962 0.21396916014311215,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -89.81136089526652,-37.2508054773327 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -92.81136089526652,-38.118572955567814 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.00338236689662,-41.00511157603617 c -0.5384378180823963,0.12289491834217739 -0.8753018965676871,0.6590110280557413 -0.7524069782255098 1.1974488461381374c 0.12289491834217736,0.5384378180823963 0.6590110280557413,0.8753018965676872 1.1974488461381374 0.7524069782255098c 0.5384378180823963,-0.12289491834217732 0.8753018965676872,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217729,-0.5384378180823963 -0.6590110280557412,-0.8753018965676872 -1.1974488461381374 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -92.48980882921262,-43.736798882867845 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -89.4103920273641,-44.25661861775249 c 1.8394777362344743e-16,-0.5522847498307935 -0.4477152501692061,-1.0000000000000002 -0.9999999999999994 -1.0000000000000002c -0.5522847498307935,-2.177654611783563e-16 -1.0000000000000002,0.44771525016920605 -1.0000000000000002 0.9999999999999993c -2.515831487332652e-16,0.5522847498307935 0.447715250169206,1.0000000000000002 0.9999999999999992 1.0000000000000002c 0.5522847498307935,2.854008362881741e-16 1.0000000000000002,-0.44771525016920594 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -79.49261097930308,-29.64916205849501 l 2.575346380805598,-1.5386978322177172 l 0.4026997974529676,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029924 l -1.6526909443563085,2.5037197611639064 l 0.9270509831248414,2.853169548885461 l 2.808704611919211,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.46816157994958,-30.35328663699142 c 0.46092208064694085,0.3042520015838139 1.0812182335895912,0.17724580837774134 1.3854702351734052 -0.28367627226919934c 0.30425200158381394,-0.46092208064694085 0.1772458083777414,-1.0812182335895912 -0.2836762722691992 -1.385470235173405c -0.4609220806469408,-0.30425200158381394 -1.0812182335895912,-0.17724580837774145 -1.385470235173405 0.2836762722691992c -0.304252001583814,0.4609220806469408 -0.1772458083777415,1.0812182335895912 0.283676272269199 1.3854702351734052Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.48858527329831,-29.559522749591576 c 4.950642329273775e-2,0.5500614137970617 0.5355521891016103,0.9558414083845438 1.0856136028986718 0.906334985091806c 0.5500614137970617,-4.950642329273772e-2 0.9558414083845438,-0.5355521891016102 0.906334985091806 -1.0856136028986718c -4.950642329273768e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273765e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.99237824020915,-31.426081394566427 c -0.39918858054789347,0.3816633622131158 -0.4133955770536433,1.0146689322663625 -3.173221484052757e-2 1.413857512814256c 0.3816633622131158,0.39918858054789347 1.0146689322663625,0.4133955770536434 1.4138575128142559 3.1732214840527684e-2c 0.3991885805478935,-0.38166336221311575 0.4133955770536434,-1.0146689322663625 3.1732214840527795e-2 -1.4138575128142556c -0.38166336221311575,-0.3991885805478935 -1.0146689322663625,-0.41339557705364344 -1.413857512814256 -3.173221484052813e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -83.09413330852948,-34.54740584139243 c -0.5472864412728882,-7.413498563107447e-2 -1.051048041954516,0.3094300546773905 -1.1251830275855905 0.8567164959502784c -7.41349856310745e-2,0.5472864412728882 0.30943005467739043,1.051048041954516 0.8567164959502784 1.1251830275855905c 0.5472864412728882,7.413498563107454e-2 1.051048041954516,-0.3094300546773904 1.1251830275855905 -0.8567164959502782c 7.413498563107457e-2,-0.5472864412728882 -0.3094300546773903,-1.051048041954516 -0.8567164959502784 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.71722683638896,-36.57307511819431 c -0.28326644911051546,-0.4741081772169532 -0.8972398937908189,-0.628815965306476 -1.371348071007772 -0.3455495161959605c -0.4741081772169532,0.2832664491105154 -0.628815965306476,0.8972398937908189 -0.34554951619596064 1.371348071007772c 0.2832664491105154,0.47410817721695325 0.8972398937908188,0.628815965306476 1.371348071007772 0.34554951619596064c 0.47410817721695325,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.34554951619596075 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.65151787736536,-35.977718943417365 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.20554780666957,-33.20965265972137 c 0.5252540101770149,-0.1706653734318314 0.8127048953520379,-0.7348195004930859 0.6420395219202065 -1.2600735106701006c -0.17066537343183139,-0.5252540101770149 -0.7348195004930858,-0.8127048953520379 -1.2600735106701004 -0.6420395219202066c -0.5252540101770149,0.17066537343183136 -0.8127048953520379,0.7348195004930858 -0.6420395219202066 1.2600735106701004c 0.17066537343183133,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -87.03330166350914,-19.26333004537001 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -85.73805012619417,-17.555550713117547 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -87.42632669516306,-20.182857817921462 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -86.4248385099846,-23.140904776850693 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -83.48772660073412,-24.202221896670007 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.82669614124158,-22.567615739231638 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -80.44555734263395,-19.467978080975683 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.63131549407736,-17.23739929965431 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -99.241016447483,-23.225554465171353 l -1.179075094961771,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959098 l 2.259214398010833,-1.9738161778191368 l -0.13459449105154375,-2.9969791996239437 l -2.427050983124842,-1.7633557568774196 l -2.8918885820875597,0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.46495637279529,-21.465964214058314 c -0.5517286358374672,2.4778161606334937e-2 -0.9789063977971351,0.492129261054362 -0.9541282361908001 1.043857896891829c 2.4778161606334902e-2,0.5517286358374672 0.49212926105436194,0.9789063977971351 1.0438578968918288 0.9541282361908001c 0.5517286358374672,-2.477816160633487e-2 0.9789063977971351,-0.4921292610543619 0.9541282361908001 -1.0438578968918288c -2.4778161606334836e-2,-0.5517286358374672 -0.49212926105436183,-0.9789063977971351 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -98.48794498147939,-23.883493191111064 c -0.36336952465960504,-0.41590988620651326 -0.9951003057368102,-0.4585022647235039 -1.4110101919433233 -9.513274006389894e-2c -0.41590988620651326,0.36336952465960504 -0.45850226472350397,0.9951003057368102 -9.513274006389905e-2 1.4110101919433233c 0.363369524659605,0.4159098862065133 0.9951003057368102,0.45850226472350397 1.411010191943323 9.513274006389916e-2c 0.4159098862065133,-0.363369524659605 0.458502264723504,-0.9951003057368101 9.513274006389927e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -95.36519827679682,-23.84510810707274 c 9.861424997442848e-2,-0.5434093066903097 -0.261963387109683,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442851e-2 -1.063872233422838,0.2619633871096829 -1.1624864833972666 0.8053726937999924c -9.861424997442855e-2,0.5434093066903097 0.26196338710968287,1.063872233422838 0.8053726937999923 1.1624864833972666c 0.5434093066903097,9.861424997442858e-2 1.063872233422838,-0.2619633871096828 1.1624864833972668 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -93.4482082197976,-21.379713713137217 c 0.48633948301361307,-0.2617104357065526 0.6684373050902923,-0.8681247113161232 0.4067268693837397 -1.3544641943297362c -0.26171043570655256,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.354464194329736 -0.40672686938373975c -0.4863394830136131,0.26171043570655256 -0.6684373050902923,0.8681247113161232 -0.4067268693837398 1.354464194329736c 0.2617104357065525,0.4863394830136131 0.8681247113161231,0.6684373050902923 1.354464194329736 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.18050742287298,-18.343802272818564 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.01065964992574,-17.023477021984203 c 0.14692809269956447,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956444 0.844854107828743,-0.6976177188969428 0.6979260151291786 -1.229999706262528c -0.14692809269956442,-0.5323819873655854 -0.6976177188969428,-0.8448541078287432 -1.2299997062625279 -0.6979260151291786c -0.5323819873655854,0.14692809269956436 -0.8448541078287432,0.6976177188969427 -0.6979260151291788 1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.80750254940072,-18.41296980423926 c -0.3246248310165784,0.44680774834722825 -0.22557600626475421,1.0721774156508421 0.22123174208247387 1.3968022466674204c 0.44680774834722825,0.3246248310165784 1.0721774156508421,0.22557600626475427 1.3968022466674204 -0.22123174208247387c 0.32462483101657846,-0.4468077483472282 0.22557600626475433,-1.0721774156508421 -0.22123174208247376 -1.3968022466674204c -0.4468077483472282,-0.32462483101657846 -1.0721774156508421,-0.22557600626475438 -1.3968022466674204 0.22123174208247387Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -104.2198336050813,-83.30056231263247 l -10.607884752734034,7.7070794050409095 l 4.05185142680263,12.470316431350508 l 13.112066651862817,-4.440892098500626e-16 l 4.051851426802628,-12.470316431350508 l -10.60788475273404,-7.707079405040911 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -100.8493641995051,-82.53127466517805 l -0.667562801868942,-2.92478373654547 l -2.7029066037072567,-1.3016512173526753 l -2.7029066037072567,1.3016512173526735 l -0.6675628018689442,2.92478373654547 l 1.870469405576199,2.3454944474040897 l 3.0,9.43689570931383e-16 l 1.870469405576201,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.8934371995153,-84.67422691925549 c 0.4317936047046944,-0.3443439092416014 0.5026855898508984,-0.9735276796220689 0.1583416806092971 -1.405321284326763c -0.3443439092416014,-0.4317936047046944 -0.9735276796220688,-0.5026855898508985 -1.405321284326763 -0.1583416806092972c -0.43179360470469447,0.34434390924160135 -0.5026855898508986,0.9735276796220687 -0.1583416806092972 1.4053212843267628c 0.34434390924160135,0.43179360470469447 0.9735276796220687,0.5026855898508986 1.405321284326763 0.15834168060929743Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.07188513346142,-81.55634675299622 c 0.5384378180823962,0.12289491834217786 1.0745539277959604,-0.21396916014311237 1.1974488461381383 -0.7524069782255084c 0.12289491834217789,-0.5384378180823962 -0.21396916014311232,-1.0745539277959604 -0.7524069782255083 -1.1974488461381383c -0.5384378180823962,-0.12289491834217793 -1.0745539277959604,0.21396916014311226 -1.1974488461381383 0.7524069782255082c -0.12289491834217796,0.5384378180823962 0.2139691601431122,1.0745539277959604 0.7524069782255083 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.62080247298373,-79.7518964786564 c 0.23962737231418962,0.49759136581482083 0.8372612412051561,0.7067125010990511 1.3348526070199767 0.46708512878486164c 0.49759136581482083,-0.2396273723141896 0.7067125010990513,-0.8372612412051561 0.4670851287848617 -1.3348526070199767c -0.23962737231418957,-0.4975913658148209 -0.837261241205156,-0.7067125010990513 -1.3348526070199767 -0.4670851287848617c -0.4975913658148209,0.23962737231418954 -0.7067125010990513,0.8372612412051559 -0.46708512878486164 1.3348526070199767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -106.62080247298373,-80.61966395689153 c -0.23962737231419004,0.4975913658148206 -3.0506237029960304e-2,1.0952252347057874 0.4670851287848602 1.3348526070199773c 0.4975913658148206,0.23962737231419007 1.0952252347057874,3.050623702996036e-2 1.3348526070199773 -0.4670851287848601c 0.2396273723141901,-0.49759136581482055 3.0506237029960415e-2,-1.0952252347057874 -0.46708512878485997 -1.3348526070199773c -0.49759136581482055,-0.23962737231419012 -1.0952252347057874,-3.050623702996047e-2 -1.3348526070199775 0.4670851287848601Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.81282394461383,-83.50620257735987 c -0.5384378180823963,0.12289491834217742 -0.8753018965676871,0.6590110280557414 -0.7524069782255097 1.1974488461381376c 0.12289491834217739,0.5384378180823963 0.6590110280557413,0.8753018965676871 1.1974488461381374 0.7524069782255097c 0.5384378180823963,-0.12289491834217735 0.8753018965676871,-0.6590110280557413 0.7524069782255098 -1.1974488461381374c -0.12289491834217732,-0.5384378180823963 -0.6590110280557413,-0.8753018965676872 -1.1974488461381374 -0.7524069782255101Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -106.29925040692983,-86.23788988419156 c -0.4317936047046941,-0.3443439092416018 -1.0609773750851614,-0.2734519240953984 -1.4053212843267633 0.15834168060929554c -0.3443439092416018,0.4317936047046941 -0.2734519240953985,1.0609773750851614 0.15834168060929554 1.4053212843267633c 0.431793604704694,0.34434390924160185 1.0609773750851614,0.2734519240953985 1.4053212843267633 -0.15834168060929543c 0.34434390924160185,-0.431793604704694 0.27345192409539854,-1.0609773750851614 -0.15834168060929565 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -103.2198336050813,-86.7577096190762 c 1.5328981135287284e-16,-0.5522847498307935 -0.44771525016920616,-1.0000000000000002 -0.9999999999999996 -1.0000000000000002c -0.5522847498307935,-1.8710749890778175e-16 -1.0000000000000002,0.4477152501692061 -1.0000000000000002 0.9999999999999993c -2.2092518646269063e-16,0.5522847498307935 0.44771525016920605,1.0000000000000002 0.9999999999999993 1.0000000000000002c 0.5522847498307935,2.547428740175995e-16 1.0000000000000002,-0.447715250169206 1.0000000000000004 -0.9999999999999993Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -93.30205255702029,-72.15025305981871 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296725,-2.972849285303804 l -2.0731879469605934,-2.168384591482174 l -2.987922881985716,0.26891792671029957 l -1.6526909443563083,2.503719761163907 l 0.9270509831248418,2.853169548885461 l 2.8087046119192114,1.0541244722440282 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -91.27760315766679,-72.85437763831513 c 0.4609220806469409,0.3042520015838138 1.0812182335895915,0.17724580837774118 1.3854702351734052 -0.28367627226919956c 0.3042520015838139,-0.4609220806469409 0.17724580837774123,-1.0812182335895915 -0.28367627226919945 -1.385470235173405c -0.46092208064694085,-0.3042520015838139 -1.0812182335895912,-0.1772458083777413 -1.385470235173405 0.28367627226919945c -0.30425200158381394,0.46092208064694085 -0.17724580837774134,1.0812182335895912 0.2836762722691992 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.29802685101552,-72.06061375091528 c 4.9506423292737814e-2,0.5500614137970617 0.5355521891016104,0.9558414083845438 1.0856136028986723 0.906334985091806c 0.5500614137970617,-4.950642329273778e-2 0.9558414083845438,-0.5355521891016104 0.906334985091806 -1.085613602898672c -4.9506423292737745e-2,-0.5500614137970617 -0.5355521891016104,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273771e-2 -0.9558414083845438,0.5355521891016103 -0.9063349850918065 1.085613602898672Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.80181981792636,-73.92717239589014 c -0.3991885805478934,0.3816633622131159 -0.4133955770536431,1.0146689322663627 -3.173221484052724e-2 1.413857512814256c 0.3816633622131159,0.3991885805478934 1.0146689322663627,0.41339557705364316 1.413857512814256 3.173221484052735e-2c 0.39918858054789347,-0.38166336221311586 0.4133955770536432,-1.0146689322663627 3.173221484052746e-2 -1.4138575128142559c -0.38166336221311586,-0.39918858054789347 -1.0146689322663627,-0.4133955770536432 -1.4138575128142563 -3.1732214840527684e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.90357488624669,-77.04849684271613 c -0.5472864412728882,-7.413498563107442e-2 -1.051048041954516,0.30943005467739065 -1.1251830275855905 0.8567164959502787c -7.413498563107444e-2,0.5472864412728882 0.3094300546773906,1.051048041954516 0.8567164959502787 1.1251830275855905c 0.5472864412728882,7.413498563107448e-2 1.051048041954516,-0.30943005467739054 1.1251830275855905 -0.8567164959502784c 7.413498563107451e-2,-0.5472864412728882 -0.3094300546773905,-1.051048041954516 -0.8567164959502787 -1.1251830275855907Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.52666841410617,-79.07416611951801 c -0.2832664491105155,-0.47410817721695314 -0.897239893790819,-0.6288159653064758 -1.371348071007772 -0.3455495161959603c -0.47410817721695314,0.28326644911051546 -0.6288159653064758,0.897239893790819 -0.3455495161959604 1.371348071007772c 0.28326644911051546,0.4741081772169532 0.8972398937908189,0.6288159653064759 1.371348071007772 0.3455495161959604c 0.4741081772169532,-0.2832664491105154 0.6288159653064759,-0.8972398937908188 0.3455495161959603 -1.371348071007772Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -91.46095945508257,-78.47880994474106 c 0.19405895681460356,-0.5170682413141325 -6.77918052442616e-2,-1.0935507379064766 -0.584860046558394 -1.28760969472108c -0.5170682413141325,-0.19405895681460358 -1.0935507379064766,6.779180524426154e-2 -1.28760969472108 0.584860046558394c -0.1940589568146036,0.5170682413141325 6.779180524426148e-2,1.0935507379064766 0.5848600465583937 1.28760969472108c 0.5170682413141325,0.19405895681460364 1.0935507379064764,-6.779180524426143e-2 1.2876096947210802 -0.584860046558394Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -90.01498938438678,-75.71074366104509 c 0.5252540101770149,-0.17066537343183147 0.8127048953520378,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.17066537343183144,-0.5252540101770149 -0.734819500493086,-0.8127048953520379 -1.2600735106701006 -0.6420395219202064c -0.5252540101770149,0.1706653734318314 -0.8127048953520379,0.7348195004930859 -0.6420395219202064 1.2600735106701004c 0.17066537343183139,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202066Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -100.84274324122634,-61.76442104669371 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -99.54749170391138,-60.056641714441255 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -101.23576827288026,-62.683948819245174 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -100.2342800877018,-65.6419957781744 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -97.29716817845133,-66.70331289799371 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.63613771895879,-65.06870674055534 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -94.25499892035114,-61.969069082299384 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -96.44075707179456,-59.738490300978015 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -113.05045802520021,-65.72664546649506 l -1.179075094961771,2.7585833176543506 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959096 l 2.2592143980108323,-1.9738161778191368 l -0.13459449105154397,-2.996979199623943 l -2.427050983124842,-1.7633557568774194 l -2.891888582087558,0.7981105367000245 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -114.27439795051251,-63.967055215382025 c -0.5517286358374671,2.477816160633497e-2 -0.978906397797135,0.492129261054362 -0.9541282361908 1.043857896891829c 2.4778161606334934e-2,0.5517286358374671 0.49212926105436194,0.978906397797135 1.0438578968918288 0.9541282361908c 0.5517286358374671,-2.4778161606334902e-2 0.978906397797135,-0.4921292610543619 0.9541282361908 -1.0438578968918288c -2.4778161606334868e-2,-0.5517286358374671 -0.49212926105436183,-0.978906397797135 -1.0438578968918288 -0.9541282361908001Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -112.29738655919661,-66.38458419243477 c -0.36336952465960504,-0.4159098862065132 -0.9951003057368102,-0.4585022647235038 -1.411010191943323 -9.513274006389882e-2c -0.4159098862065132,0.36336952465960504 -0.45850226472350386,0.9951003057368101 -9.513274006389894e-2 1.411010191943323c 0.363369524659605,0.41590988620651326 0.9951003057368101,0.45850226472350386 1.411010191943323 9.513274006389905e-2c 0.41590988620651326,-0.363369524659605 0.4585022647235039,-0.99510030573681 9.513274006389905e-2 -1.4110101919433233Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -109.17463985451403,-66.34619910839645 c 9.861424997442843e-2,-0.5434093066903096 -0.26196338710968303,-1.0638722334228379 -0.8053726937999925 -1.1624864833972663c -0.5434093066903096,-9.861424997442846e-2 -1.0638722334228379,0.261963387109683 -1.1624864833972663 0.8053726937999924c -9.86142499744285e-2,0.5434093066903096 0.2619633871096829,1.0638722334228379 0.8053726937999923 1.1624864833972663c 0.5434093066903096,9.861424997442853e-2 1.0638722334228379,-0.26196338710968287 1.1624864833972666 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.25764979751482,-63.88080471446092 c 0.48633948301361307,-0.26171043570655267 0.6684373050902923,-0.8681247113161233 0.40672686938373964 -1.3544641943297362c -0.2617104357065526,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.3544641943297362 -0.4067268693837397c -0.4863394830136131,0.2617104357065526 -0.6684373050902923,0.8681247113161232 -0.40672686938373975 1.354464194329736c 0.26171043570655256,0.4863394830136131 0.8681247113161232,0.6684373050902923 1.3544641943297364 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -107.98994900059019,-60.84489327414227 c 0.5078411658260445,0.2170617312842269 1.0954910729211471,-1.866157507148214e-2 1.312552804205374 -0.5265027408975266c 0.21706173128422693,-0.5078411658260445 -1.8661575071482084e-2,-1.0954910729211471 -0.5265027408975265 -1.312552804205374c -0.5078411658260445,-0.21706173128422696 -1.0954910729211471,1.866157507148203e-2 -1.312552804205374 0.5265027408975264c -0.21706173128422698,0.5078411658260445 1.8661575071481973e-2,1.0954910729211471 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -110.82010122764295,-59.524568023307914 c 0.1469280926995645,0.5323819873655853 0.6976177188969428,0.8448541078287428 1.2299997062625279 0.6979260151291784c 0.5323819873655853,-0.14692809269956447 0.8448541078287428,-0.6976177188969428 0.6979260151291784 -1.2299997062625279c -0.14692809269956444,-0.5323819873655853 -0.6976177188969427,-0.8448541078287428 -1.2299997062625279 -0.6979260151291784c -0.5323819873655853,0.1469280926995644 -0.8448541078287428,0.6976177188969426 -0.6979260151291784 1.2299997062625279Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -113.61694412711793,-60.91406080556297 c -0.32462483101657835,0.44680774834722825 -0.2255760062647541,1.0721774156508421 0.22123174208247398 1.3968022466674204c 0.44680774834722825,0.32462483101657835 1.0721774156508421,0.22557600626475416 1.3968022466674204 -0.22123174208247398c 0.3246248310165784,-0.4468077483472282 0.22557600626475421,-1.0721774156508421 -0.22123174208247387 -1.3968022466674204c -0.4468077483472282,-0.3246248310165784 -1.072177415650842,-0.22557600626475427 -1.3968022466674206 0.2212317420824741Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -113.05455000245458,-78.5612668421121 l -2.987922881985716,-0.2689179267103008 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.5753463808055974,1.5386978322177185 l 2.808704611919211,-1.054124472244027 l 0.9270509831248425,-2.8531695488854605 l -1.6526909443563076,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -115.10623801380056,-79.18155959290375 c -0.19405895681460328,-0.5170682413141326 -0.770541453406947,-0.7789190033729982 -1.2876096947210796 -0.5848600465583949c -0.5170682413141326,0.19405895681460325 -0.7789190033729982,0.770541453406947 -0.584860046558395 1.2876096947210796c 0.19405895681460322,0.5170682413141326 0.770541453406947,0.7789190033729982 1.2876096947210793 0.5848600465583951c 0.5170682413141326,-0.1940589568146032 0.7789190033729982,-0.7705414534069469 0.5848600465583951 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -112.19610120885271,-78.0483675647062 c 0.28326644911051574,-0.474108177216953 0.12855866102099345,-1.0880816218972567 -0.3455495161959594 -1.3713480710077723c -0.474108177216953,-0.2832664491105158 -1.0880816218972567,-0.1285586610209935 -1.3713480710077721 0.3455495161959593c -0.2832664491105158,0.4741081772169529 -0.12855866102099356,1.0880816218972564 0.3455495161959593 1.3713480710077721c 0.4741081772169529,0.28326644911051585 1.0880816218972564,0.12855866102099361 1.3713480710077723 -0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -111.26762579228061,-75.06659731918026 c 0.5472864412728882,-7.413498563107417e-2 0.9308514815813536,-0.5778965863127017 0.8567164959502794 -1.1251830275855899c -7.413498563107414e-2,-0.5472864412728882 -0.5778965863127017,-0.9308514815813536 -1.1251830275855896 -0.8567164959502794c -0.5472864412728882,7.41349856310741e-2 -0.9308514815813536,0.5778965863127017 -0.8567164959502794 1.1251830275855896c 7.413498563107407e-2,0.5472864412728882 0.5778965863127016,0.9308514815813536 1.1251830275855896 0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -113.01997269020998,-72.48158266823535 c 0.3991885805478933,0.38166336221311603 1.03219415060114,0.3674563657073667 1.413857512814256 -3.1732214840526574e-2c 0.38166336221311603,-0.3991885805478933 0.36745636570736673,-1.03219415060114 -3.173221484052646e-2 -1.413857512814256c -0.39918858054789325,-0.3816633622131161 -1.03219415060114,-0.3674563657073668 -1.4138575128142559 3.173221484052635e-2c -0.3816633622131161,0.39918858054789325 -0.36745636570736684,1.03219415060114 3.173221484052635e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -116.13358894713755,-72.23989236872214 c -4.950642329273803e-2,0.5500614137970616 0.3562735712947436,1.0361071796059345 0.9063349850918052 1.0856136028986725c 0.5500614137970616,4.9506423292738064e-2 1.0361071796059345,-0.3562735712947435 1.0856136028986725 -0.906334985091805c 4.95064232927381e-2,-0.5500614137970616 -0.35627357129474346,-1.0361071796059345 -0.906334985091805 -1.0856136028986725c -0.5500614137970616,-4.950642329273813e-2 -1.0361071796059345,0.3562735712947434 -1.0856136028986727 0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -118.26385801540002,-74.52352414575773 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.385470235173405 -0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -117.80664383702594,-77.6128566936354 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202057 -1.260073510670101Z" /></g></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -57.458361436227634,-101.86060170536192 l -10.607884752734037,-7.707079405040908 l -10.607884752734035,7.707079405040911 l 4.051851426802629,12.47031643135051 h 13.112066651862817 l 4.05185142680263,-12.470316431350513 Z" /></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -57.148465140900655,-98.41737185758907 l 2.575346380805598,-1.5386978322177174 l 0.40269979745296736,-2.9728492853038038 l -2.073187946960593,-2.168384591482174 l -2.987922881985716,0.26891792671029935 l -1.6526909443563085,2.503719761163907 l 0.9270509831248416,2.853169548885461 l 2.808704611919211,1.0541244722440286 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.12401574154716,-99.1214964360855 c 0.46092208064694085,0.3042520015838138 1.0812182335895912,0.17724580837774123 1.385470235173405 -0.28367627226919945c 0.3042520015838139,-0.46092208064694085 0.1772458083777413,-1.0812182335895912 -0.28367627226919934 -1.385470235173405c -0.4609220806469408,-0.3042520015838139 -1.0812182335895912,-0.17724580837774134 -1.385470235173405 0.28367627226919934c -0.30425200158381394,0.4609220806469408 -0.1772458083777414,1.0812182335895912 0.28367627226919945 1.385470235173405Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.144439434895894,-98.32773254868565 c 4.9506423292737786e-2,0.5500614137970617 0.5355521891016104,0.9558414083845437 1.085613602898672 0.906334985091806c 0.5500614137970617,-4.950642329273775e-2 0.9558414083845437,-0.5355521891016103 0.906334985091806 -1.0856136028986718c -4.950642329273772e-2,-0.5500614137970617 -0.5355521891016102,-0.9558414083845438 -1.0856136028986718 -0.906334985091806c -0.5500614137970617,4.950642329273768e-2 -0.9558414083845438,0.5355521891016102 -0.9063349850918061 1.0856136028986718Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.64823240180673,-100.1942911936605 c -0.3991885805478934,0.38166336221311586 -0.41339557705364316,1.0146689322663627 -3.173221484052735e-2 1.413857512814256c 0.38166336221311586,0.3991885805478934 1.0146689322663627,0.4133955770536432 1.4138575128142559 3.173221484052746e-2c 0.39918858054789347,-0.3816633622131158 0.4133955770536432,-1.0146689322663625 3.173221484052757e-2 -1.4138575128142556c -0.3816633622131158,-0.39918858054789347 -1.0146689322663625,-0.41339557705364327 -1.413857512814256 -3.1732214840527906e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.749987470127046,-103.3156156404865 c -0.5472864412728882,-7.413498563107444e-2 -1.051048041954516,0.30943005467739054 -1.1251830275855903 0.8567164959502785c -7.413498563107447e-2,0.5472864412728882 0.3094300546773905,1.0510480419545158 0.8567164959502784 1.1251830275855903c 0.5472864412728882,7.413498563107451e-2 1.0510480419545158,-0.30943005467739043 1.1251830275855903 -0.8567164959502783c 7.413498563107454e-2,-0.5472864412728882 -0.3094300546773904,-1.0510480419545158 -0.8567164959502784 -1.1251830275855905Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.37308099798653,-105.34128491728838 c -0.28326644911051546,-0.47410817721695314 -0.8972398937908189,-0.6288159653064759 -1.371348071007772 -0.3455495161959604c -0.47410817721695314,0.2832664491105154 -0.6288159653064759,0.8972398937908188 -0.3455495161959605 1.371348071007772c 0.2832664491105154,0.4741081772169532 0.8972398937908188,0.6288159653064759 1.371348071007772 0.3455495161959605c 0.4741081772169532,-0.28326644911051535 0.628815965306476,-0.8972398937908188 0.3455495161959605 -1.3713480710077721Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -55.307372038962946,-104.74592874251142 c 0.19405895681460358,-0.5170682413141324 -6.779180524426148e-2,-1.0935507379064764 -0.5848600465583939 -1.28760969472108c -0.5170682413141324,-0.1940589568146036 -1.0935507379064764,6.779180524426143e-2 -1.28760969472108 0.5848600465583937c -0.19405895681460364,0.5170682413141324 6.779180524426137e-2,1.0935507379064764 0.5848600465583936 1.28760969472108c 0.5170682413141324,0.19405895681460367 1.0935507379064764,-6.779180524426137e-2 1.2876096947210804 -0.5848600465583937Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -53.86140196826714,-101.97786245881545 c 0.5252540101770149,-0.17066537343183144 0.8127048953520379,-0.734819500493086 0.6420395219202064 -1.2600735106701006c -0.1706653734318314,-0.5252540101770149 -0.7348195004930859,-0.8127048953520379 -1.2600735106701006 -0.6420395219202065c -0.5252540101770149,0.17066537343183139 -0.8127048953520379,0.7348195004930858 -0.6420395219202065 1.2600735106701004c 0.17066537343183136,0.5252540101770149 0.7348195004930858,0.8127048953520379 1.2600735106701006 0.6420395219202069Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -64.68915582510671,-88.03153984446408 l 2.2592143980108315,1.9738161778191379 l 2.9517887657958894,-0.5356706843959091 l 1.4216059874189955,-2.641786595570213 l -1.1790750949617697,-2.7585833176543515 l -2.8918885820875593,-0.7981105367000263 l -2.427050983124843,1.7633557568774192 l -0.13459449105154464,2.996979199623942 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -63.393904287791734,-86.32376051221162 c -0.1469280926995648,0.5323819873655853 0.16554402776359234,1.0830716135629639 0.6979260151291775 1.2299997062625287c 0.5323819873655853,0.14692809269956483 1.0830716135629639,-0.16554402776359228 1.2299997062625287 -0.6979260151291774c 0.14692809269956486,-0.5323819873655853 -0.16554402776359223,-1.0830716135629639 -0.6979260151291773 -1.2299997062625287c -0.5323819873655853,-0.14692809269956492 -1.0830716135629639,0.16554402776359217 -1.229999706262529 0.6979260151291774Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -65.08218085676063,-88.95106761701553 c -0.5078411658260448,0.21706173128422673 -0.7435644721817543,0.8047116383793294 -0.5265027408975276 1.312552804205374c 0.2170617312842267,0.5078411658260448 0.8047116383793292,0.7435644721817543 1.3125528042053738 0.5265027408975276c 0.5078411658260448,-0.21706173128422668 0.7435644721817543,-0.8047116383793291 0.5265027408975276 -1.3125528042053736c -0.21706173128422665,-0.5078411658260448 -0.8047116383793291,-0.7435644721817543 -1.3125528042053738 -0.526502740897528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.08069267158217,-91.90911457594477 c -0.486339483013613,-0.2617104357065529 -1.092753758623184,-7.961261362987404e-2 -1.3544641943297366 0.4067268693837388c -0.26171043570655295,0.486339483013613 -7.96126136298741e-2,1.092753758623184 0.4067268693837387 1.3544641943297366c 0.48633948301361296,0.26171043570655295 1.0927537586231837,7.961261362987415e-2 1.3544641943297364 -0.4067268693837386c 0.261710435706553,-0.48633948301361296 7.961261362987421e-2,-1.0927537586231837 -0.4067268693837385 -1.3544641943297369Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -61.143580762331695,-92.97043169576408 c -9.86142499744282e-2,-0.5434093066903097 -0.6190771767069563,-0.9039869437744216 -1.162486483397266 -0.8053726937999934c -0.5434093066903097,9.861424997442818e-2 -0.9039869437744216,0.6190771767069563 -0.8053726937999934 1.162486483397266c 9.861424997442814e-2,0.5434093066903097 0.6190771767069562,0.9039869437744217 1.1624864833972657 0.8053726937999934c 0.5434093066903097,-9.861424997442811e-2 0.9039869437744217,-0.6190771767069561 0.8053726937999937 -1.162486483397266Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.48255030283915,-91.33582553832571 c 0.36336952465960526,-0.41590988620651304 0.3207771461426152,-1.0476406672837182 -9.513274006389771e-2 -1.4110101919433236c -0.41590988620651304,-0.36336952465960526 -1.0476406672837182,-0.3207771461426152 -1.4110101919433233 9.513274006389771e-2c -0.3633695246596053,0.415909886206513 -0.32077714614261527,1.0476406672837182 9.51327400638976e-2 1.411010191943323c 0.415909886206513,0.3633695246596053 1.0476406672837182,0.3207771461426153 1.4110101919433236 -9.513274006389727e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -58.10141150423151,-88.23618788006975 c 0.5517286358374672,2.4778161606335242e-2 1.0190797352854946,-0.4023996003533323 1.0438578968918297 -0.9541282361907993c 2.4778161606335277e-2,-0.5517286358374672 -0.4023996003533322,-1.0190797352854946 -0.9541282361907992 -1.0438578968918297c -0.5517286358374672,-2.477816160633531e-2 -1.0190797352854946,0.40239960035333217 -1.0438578968918297 0.9541282361907991c -2.4778161606335343e-2,0.5517286358374672 0.4023996003533321,1.0190797352854946 0.9541282361907992 1.0438578968918297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -60.287169655674944,-86.00560909874838 c 0.3246248310165783,0.44680774834722836 0.9499944983201922,0.5458565730990529 1.3968022466674204 0.22123174208247465c 0.44680774834722836,-0.3246248310165783 0.5458565730990529,-0.9499944983201921 0.22123174208247476 -1.3968022466674204c -0.32462483101657824,-0.4468077483472284 -0.949994498320192,-0.545856573099053 -1.3968022466674204 -0.22123174208247476c -0.4468077483472284,0.32462483101657824 -0.545856573099053,0.949994498320192 -0.22123174208247476 1.3968022466674206Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -76.89687060908058,-91.99376426426542 l -1.179075094961771,2.758583317654351 l 1.4216059874189955,2.6417865955702142 l 2.9517887657958877,0.5356706843959098 l 2.259214398010833,-1.9738161778191368 l -0.13459449105154375,-2.9969791996239437 l -2.427050983124842,-1.7633557568774196 l -2.8918885820875597,0.7981105367000247 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -78.12081053439286,-90.23417401315238 c -0.5517286358374672,2.4778161606334937e-2 -0.9789063977971351,0.492129261054362 -0.9541282361908001 1.043857896891829c 2.4778161606334902e-2,0.5517286358374672 0.49212926105436194,0.9789063977971351 1.0438578968918288 0.9541282361908001c 0.5517286358374672,-2.477816160633487e-2 0.9789063977971351,-0.4921292610543619 0.9541282361908001 -1.0438578968918288c -2.4778161606334836e-2,-0.5517286358374672 -0.49212926105436183,-0.9789063977971351 -1.0438578968918288 -0.9541282361908003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.14379914307696,-92.65170299020514 c -0.36336952465960504,-0.41590988620651326 -0.9951003057368102,-0.4585022647235039 -1.4110101919433233 -9.513274006389894e-2c -0.41590988620651326,0.36336952465960504 -0.45850226472350397,0.9951003057368102 -9.513274006389905e-2 1.4110101919433233c 0.363369524659605,0.4159098862065133 0.9951003057368102,0.45850226472350397 1.411010191943323 9.513274006389916e-2c 0.4159098862065133,-0.363369524659605 0.458502264723504,-0.9951003057368101 9.513274006389927e-2 -1.4110101919433236Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -73.02105243839439,-92.61331790616681 c 9.861424997442848e-2,-0.5434093066903097 -0.261963387109683,-1.063872233422838 -0.8053726937999925 -1.1624864833972666c -0.5434093066903097,-9.861424997442851e-2 -1.063872233422838,0.2619633871096829 -1.1624864833972666 0.8053726937999924c -9.861424997442855e-2,0.5434093066903097 0.26196338710968287,1.063872233422838 0.8053726937999923 1.1624864833972666c 0.5434093066903097,9.861424997442858e-2 1.063872233422838,-0.2619633871096828 1.1624864833972668 -0.8053726937999924Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.10406238139518,-90.14792351223129 c 0.48633948301361307,-0.2617104357065526 0.6684373050902923,-0.8681247113161232 0.4067268693837397 -1.3544641943297362c -0.26171043570655256,-0.48633948301361307 -0.8681247113161232,-0.6684373050902923 -1.354464194329736 -0.40672686938373975c -0.4863394830136131,0.26171043570655256 -0.6684373050902923,0.8681247113161232 -0.4067268693837398 1.354464194329736c 0.2617104357065525,0.4863394830136131 0.8681247113161231,0.6684373050902923 1.354464194329736 0.40672686938374003Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.83636158447055,-87.11201207191263 c 0.5078411658260447,0.21706173128422698 1.0954910729211473,-1.8661575071482084e-2 1.3125528042053742 -0.5265027408975266c 0.217061731284227,-0.5078411658260447 -1.866157507148203e-2,-1.0954910729211473 -0.5265027408975265 -1.3125528042053742c -0.5078411658260447,-0.21706173128422704 -1.0954910729211473,1.8661575071481973e-2 -1.3125528042053742 0.5265027408975264c -0.21706173128422707,0.5078411658260447 1.8661575071481917e-2,1.0954910729211473 0.5265027408975265 1.3125528042053745Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -74.66651381152332,-85.79168682107827 c 0.14692809269956447,0.5323819873655854 0.6976177188969428,0.844854107828743 1.229999706262528 0.6979260151291786c 0.5323819873655854,-0.14692809269956444 0.844854107828743,-0.6976177188969428 0.6979260151291786 -1.229999706262528c -0.14692809269956442,-0.5323819873655854 -0.6976177188969428,-0.8448541078287432 -1.2299997062625279 -0.6979260151291786c -0.5323819873655854,0.14692809269956436 -0.8448541078287432,0.6976177188969427 -0.6979260151291788 1.229999706262528Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -77.4633567109983,-87.18117960333333 c -0.3246248310165784,0.44680774834722825 -0.22557600626475421,1.0721774156508421 0.22123174208247387 1.3968022466674204c 0.44680774834722825,0.3246248310165784 1.0721774156508421,0.22557600626475427 1.3968022466674204 -0.22123174208247387c 0.32462483101657846,-0.4468077483472282 0.22557600626475433,-1.0721774156508421 -0.22123174208247376 -1.3968022466674204c -0.4468077483472282,-0.32462483101657846 -1.0721774156508421,-0.22557600626475438 -1.3968022466674204 0.22123174208247387Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -76.90096258633494,-104.82838563988247 l -2.987922881985716,-0.2689179267103008 l -2.0731879469605943,2.168384591482174 l 0.40269979745296647,2.972849285303803 l 2.5753463808055974,1.5386978322177185 l 2.808704611919211,-1.054124472244027 l 0.9270509831248425,-2.8531695488854605 l -1.6526909443563076,-2.5037197611639077 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -78.95265059768093,-105.44867839067412 c -0.19405895681460328,-0.5170682413141326 -0.770541453406947,-0.7789190033729982 -1.2876096947210796 -0.5848600465583949c -0.5170682413141326,0.19405895681460325 -0.7789190033729982,0.770541453406947 -0.584860046558395 1.2876096947210796c 0.19405895681460322,0.5170682413141326 0.770541453406947,0.7789190033729982 1.2876096947210793 0.5848600465583951c 0.5170682413141326,-0.1940589568146032 0.7789190033729982,-0.7705414534069469 0.5848600465583951 -1.2876096947210798Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.04251379273308,-104.31548636247656 c 0.28326644911051574,-0.474108177216953 0.12855866102099345,-1.0880816218972567 -0.3455495161959594 -1.3713480710077723c -0.474108177216953,-0.2832664491105158 -1.0880816218972567,-0.1285586610209935 -1.3713480710077721 0.3455495161959593c -0.2832664491105158,0.4741081772169529 -0.12855866102099356,1.0880816218972564 0.3455495161959593 1.3713480710077721c 0.4741081772169529,0.28326644911051585 1.0880816218972564,0.12855866102099361 1.3713480710077723 -0.3455495161959592Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -75.11403837616098,-101.33371611695063 c 0.5472864412728882,-7.413498563107417e-2 0.9308514815813536,-0.5778965863127017 0.8567164959502794 -1.1251830275855899c -7.413498563107414e-2,-0.5472864412728882 -0.5778965863127017,-0.9308514815813536 -1.1251830275855896 -0.8567164959502794c -0.5472864412728882,7.41349856310741e-2 -0.9308514815813536,0.5778965863127017 -0.8567164959502794 1.1251830275855896c 7.413498563107407e-2,0.5472864412728882 0.5778965863127016,0.9308514815813536 1.1251830275855896 0.8567164959502795Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -76.86638527409033,-98.74870146600571 c 0.3991885805478933,0.38166336221311603 1.03219415060114,0.3674563657073667 1.413857512814256 -3.1732214840526574e-2c 0.38166336221311603,-0.3991885805478933 0.36745636570736673,-1.03219415060114 -3.173221484052646e-2 -1.413857512814256c -0.39918858054789325,-0.3816633622131161 -1.03219415060114,-0.3674563657073668 -1.4138575128142559 3.173221484052635e-2c -0.3816633622131161,0.39918858054789325 -0.36745636570736684,1.03219415060114 3.173221484052635e-2 1.4138575128142563Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -79.98000153101792,-98.5070111664925 c -4.950642329273803e-2,0.5500614137970616 0.3562735712947436,1.0361071796059345 0.9063349850918052 1.0856136028986725c 0.5500614137970616,4.9506423292738064e-2 1.0361071796059345,-0.3562735712947435 1.0856136028986725 -0.906334985091805c 4.95064232927381e-2,-0.5500614137970616 -0.35627357129474346,-1.0361071796059345 -0.906334985091805 -1.0856136028986725c -0.5500614137970616,-4.950642329273813e-2 -1.0361071796059345,0.3562735712947434 -1.0856136028986727 0.906334985091805Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -82.11027059928038,-100.7906429435281 c -0.46092208064694096,0.3042520015838137 -0.5879282738530138,0.9245481545264642 -0.2836762722692002 1.385470235173405c 0.30425200158381366,0.46092208064694096 0.9245481545264641,0.5879282738530139 1.385470235173405 0.28367627226920034c 0.460922080646941,-0.30425200158381366 0.5879282738530139,-0.924548154526464 0.28367627226920034 -1.385470235173405c -0.3042520015838136,-0.460922080646941 -0.924548154526464,-0.5879282738530139 -1.385470235173405 -0.28367627226920034Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -81.65305642090631,-103.87997549140576 c -0.5252540101770148,-0.17066537343183155 -1.0894081372382693,0.11678551174319118 -1.2600735106701009 0.6420395219202059c -0.17066537343183158,0.5252540101770148 0.11678551174319113,1.0894081372382693 0.6420395219202057 1.2600735106701009c 0.5252540101770148,0.1706653734318316 1.0894081372382693,-0.11678551174319107 1.2600735106701009 -0.6420395219202056c 0.17066537343183164,-0.5252540101770148 -0.11678551174319102,-1.0894081372382693 -0.6420395219202057 -1.260073510670101Z" /></g></g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M -64.69577678338547,-108.79839346294841 l -0.6675628018689428,-2.92478373654547 l -2.702906603707257,-1.3016512173526746 l -2.702906603707256,1.3016512173526742 l -0.6675628018689435,2.92478373654547 l 1.8704694055761997,2.3454944474040893 l 3.0,1.1102230246251565e-16 l 1.8704694055762001,-2.3454944474040884 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.73984978339567,-110.94134571702585 c 0.4317936047046943,-0.3443439092416015 0.5026855898508982,-0.9735276796220689 0.15834168060929665 -1.405321284326763c -0.3443439092416015,-0.4317936047046943 -0.9735276796220689,-0.5026855898508982 -1.405321284326763 -0.15834168060929676c -0.43179360470469436,0.34434390924160146 -0.5026855898508982,0.9735276796220689 -0.15834168060929676 1.4053212843267628c 0.34434390924160146,0.43179360470469436 0.9735276796220688,0.5026855898508982 1.405321284326763 0.158341680609297Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -64.91829771734179,-107.82346555076658 c 0.5384378180823962,0.12289491834217771 1.0745539277959604,-0.2139691601431127 1.197448846138138 -0.7524069782255088c 0.12289491834217774,-0.5384378180823962 -0.21396916014311265,-1.0745539277959604 -0.7524069782255087 -1.197448846138138c -0.5384378180823962,-0.12289491834217778 -1.0745539277959604,0.2139691601431126 -1.197448846138138 0.7524069782255086c -0.1228949183421778,0.5384378180823962 0.21396916014311254,1.0745539277959604 0.7524069782255087 1.1974488461381383Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -67.46721505686409,-106.01901527642677 c 0.2396273723141898,0.4975913658148208 0.8372612412051563,0.7067125010990509 1.3348526070199769 0.46708512878486125c 0.4975913658148208,-0.23962737231418976 0.7067125010990509,-0.8372612412051563 0.4670851287848613 -1.3348526070199769c -0.23962737231418973,-0.49759136581482083 -0.8372612412051562,-0.706712501099051 -1.3348526070199767 -0.4670851287848613c -0.49759136581482083,0.2396273723141897 -0.706712501099051,0.8372612412051561 -0.4670851287848614 1.334852607019977Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -70.46721505686409,-106.8867827546619 c -0.2396273723141899,0.49759136581482066 -3.050623702995997e-2,1.0952252347057874 0.4670851287848606 1.334852607019977c 0.49759136581482066,0.23962737231418993 1.0952252347057874,3.0506237029960026e-2 1.334852607019977 -0.46708512878486047c 0.23962737231418996,-0.4975913658148206 3.050623702996008e-2,-1.0952252347057874 -0.46708512878486036 -1.334852607019977c -0.4975913658148206,-0.23962737231418998 -1.0952252347057874,-3.0506237029960137e-2 -1.3348526070199773 0.4670851287848605Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -71.65923652849419,-109.77332137513024 c -0.5384378180823962,0.12289491834217757 -0.8753018965676869,0.6590110280557416 -0.7524069782255094 1.1974488461381378c 0.12289491834217754,0.5384378180823962 0.6590110280557415,0.8753018965676869 1.1974488461381376 0.7524069782255094c 0.5384378180823962,-0.1228949183421775 0.8753018965676869,-0.6590110280557415 0.7524069782255094 -1.1974488461381374c -0.12289491834217747,-0.5384378180823962 -0.6590110280557415,-0.8753018965676869 -1.1974488461381376 -0.7524069782255098Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -70.1456629908102,-112.50500868196193 c -0.43179360470469424,-0.3443439092416017 -1.0609773750851617,-0.2734519240953981 -1.4053212843267633 0.158341680609296c -0.3443439092416017,0.43179360470469424 -0.27345192409539815,1.0609773750851617 0.158341680609296 1.4053212843267633c 0.4317936047046942,0.34434390924160174 1.0609773750851617,0.2734519240953982 1.4053212843267633 -0.15834168060929588c 0.34434390924160174,-0.4317936047046942 0.2734519240953982,-1.0609773750851614 -0.1583416806092961 -1.4053212843267635Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -67.06624618896167,-113.02482841684656 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g></g></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_fdGridEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="200.0" font-size="1" viewBox="0 0 200 200"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(66.66666666666667,0.0,0.0,66.66666666666667,33.33333333333333,33.33333333333333)"><g><g><path d="M 2.5,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.127099873547919,2.253384192486175 l -0.12709987354791916,9.234346343666683e-2 l -0.12709987354791916,-9.234346343666687e-2 l 4.8547831729491425e-2,-0.14941486247941016 h 0.1571040836368554 l 4.854783172949148e-2,0.14941486247941022 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.150019244748239,2.221838384337487 l 1.416495040257307e-2,4.3595234658903116e-2 l -3.70843216028928e-2,2.694333676672956e-2 l -3.70843216028928e-2,-2.6943336766729546e-2 l 1.4164950402573066e-2,-4.359523465890312e-2 l 4.583874240063947e-2,-6.938893903907228e-18 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.137657804213941,2.212857272081911 c 4.9601313352733494e-3,-6.827035093032784e-3 1.4515517696841338e-2,-8.340459613994442e-3 2.1342552789874118e-2 -3.3803282787210932e-3c 6.827035093032784e-3,4.9601313352733494e-3 8.340459613994442e-3,1.4515517696841337e-2 3.380328278721095e-3 2.1342552789874118e-2c -4.960131335273349e-3,6.827035093032785e-3 -1.4515517696841337e-2,8.340459613994444e-3 -2.1342552789874118e-2 3.380328278721095e-3c -6.827035093032785e-3,-4.960131335273349e-3 -8.340459613994444e-3,-1.4515517696841337e-2 -3.3803282787210967e-3 -2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0918190618133017,2.230819496593064 c -4.960131335273355e-3,-6.827035093032781e-3 -3.4467068143117065e-3,-1.638242145460077e-2 3.3803282787210724e-3 -2.1342552789874125e-2c 6.827035093032781e-3,-4.960131335273355e-3 1.638242145460077e-2,-3.4467068143117074e-3 2.1342552789874125e-2 3.3803282787210724e-3c 4.9601313352733555e-3,6.82703509303278e-3 3.4467068143117082e-3,1.638242145460077e-2 -3.3803282787210707e-3 2.1342552789874125e-2c -6.82703509303278e-3,4.9601313352733555e-3 -1.638242145460077e-2,3.4467068143117082e-3 -2.1342552789874125e-2 -3.3803282787210724e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.094737202079217,2.2799653638826913 c -8.025661089135683e-3,2.6076953631502253e-3 -1.6645699657341848e-2,-1.7844336629743275e-3 -1.9253395020492073e-2 -9.810094752110008e-3c -2.6076953631502258e-3,-8.025661089135683e-3 1.7844336629743267e-3,-1.6645699657341848e-2 9.810094752110008e-3 -1.925339502049207e-2c 8.025661089135683e-3,-2.607695363150226e-3 1.6645699657341848e-2,1.7844336629743258e-3 1.925339502049207e-2 9.810094752110005e-3c 2.6076953631502266e-3,8.025661089135683e-3 -1.784433662974325e-3,1.6645699657341844e-2 -9.810094752110005e-3 1.9253395020492073e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1423794543481325,2.2923769557631197 c 1.9161226419109107e-18,8.43867945976512e-3 -6.840901340448034e-3,1.527958080021316e-2 -1.5279580800213152e-2 1.5279580800213162e-2c -8.43867945976512e-3,2.432842731382504e-18 -1.527958080021316e-2,-6.840901340448033e-3 -1.5279580800213162e-2 -1.527958080021315e-2c -2.9495628208540977e-18,-8.43867945976512e-3 6.8409013404480325e-3,-1.527958080021316e-2 1.5279580800213148e-2 -1.5279580800213162e-2c 8.43867945976512e-3,-3.4662829103256908e-18 1.527958080021316e-2,6.840901340448032e-3 1.5279580800213166e-2 1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.168905845285003,2.2509018741100895 c 8.025661089135685e-3,2.607695363150221e-3 1.2417790115260244e-2,1.1227733931356381e-2 9.810094752110022e-3 1.9253395020492062e-2c -2.6076953631502206e-3,8.025661089135685e-3 -1.122773393135638e-2,1.2417790115260244e-2 -1.925339502049206e-2 9.810094752110024e-3c -8.025661089135685e-3,-2.60769536315022e-3 -1.2417790115260244e-2,-1.1227733931356378e-2 -9.810094752110024e-3 -1.925339502049206e-2c 2.6076953631502197e-3,-8.025661089135685e-3 1.1227733931356378e-2,-1.2417790115260244e-2 1.925339502049206e-2 -9.810094752110025e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.055632670618108,2.072423521858077 l 4.583874240063947e-2,3.469446951953614e-18 l 1.4164950402573078e-2,4.359523465890312e-2 l -3.70843216028928e-2,2.6943336766729557e-2 l -3.7084321602892815e-2,-2.6943336766729553e-2 l 1.4164950402573068e-2,-4.359523465890312e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.04327123008381,2.0814046341136536 c -4.960131335273355e-3,-6.827035093032781e-3 -3.4467068143117065e-3,-1.638242145460077e-2 3.3803282787210724e-3 -2.1342552789874125e-2c 6.827035093032781e-3,-4.960131335273355e-3 1.638242145460077e-2,-3.4467068143117074e-3 2.1342552789874125e-2 3.3803282787210724e-3c 4.9601313352733555e-3,6.82703509303278e-3 3.4467068143117082e-3,1.638242145460077e-2 -3.3803282787210707e-3 2.1342552789874125e-2c -6.82703509303278e-3,4.9601313352733555e-3 -1.638242145460077e-2,3.4467068143117082e-3 -2.1342552789874125e-2 -3.3803282787210724e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0461893703497256,2.130550501403281 c -8.025661089135685e-3,2.6076953631502253e-3 -1.6645699657341848e-2,-1.7844336629743284e-3 -1.9253395020492073e-2 -9.810094752110012e-3c -2.6076953631502258e-3,-8.025661089135685e-3 1.7844336629743275e-3,-1.6645699657341848e-2 9.810094752110008e-3 -1.9253395020492073e-2c 8.025661089135685e-3,-2.607695363150226e-3 1.6645699657341848e-2,1.7844336629743267e-3 1.9253395020492073e-2 9.810094752110008e-3c 2.6076953631502266e-3,8.025661089135685e-3 -1.7844336629743258e-3,1.6645699657341848e-2 -9.810094752110008e-3 1.9253395020492076e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.093831622618641,2.1429620932837095 c 2.874183962866366e-18,8.438679459765121e-3 -6.840901340448033e-3,1.5279580800213162e-2 -1.5279580800213152e-2 1.5279580800213166e-2c -8.438679459765121e-3,3.3909040523379595e-18 -1.5279580800213162e-2,-6.8409013404480325e-3 -1.5279580800213166e-2 -1.527958080021315e-2c -3.907624141809553e-18,-8.438679459765121e-3 6.840901340448032e-3,-1.5279580800213162e-2 1.5279580800213148e-2 -1.5279580800213166e-2c 8.438679459765121e-3,-4.4243442312811465e-18 1.5279580800213162e-2,6.840901340448031e-3 1.527958080021317e-2 1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1203580135555113,2.101487011630679 c 8.025661089135685e-3,2.6076953631502214e-3 1.2417790115260244e-2,1.1227733931356381e-2 9.810094752110022e-3 1.9253395020492062e-2c -2.607695363150221e-3,8.025661089135685e-3 -1.1227733931356381e-2,1.2417790115260244e-2 -1.9253395020492062e-2 9.810094752110022e-3c -8.025661089135685e-3,-2.6076953631502206e-3 -1.2417790115260244e-2,-1.122773393135638e-2 -9.810094752110022e-3 -1.925339502049206e-2c 2.60769536315022e-3,-8.025661089135685e-3 1.1227733931356378e-2,-1.2417790115260244e-2 1.9253395020492062e-2 -9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0891099724844495,2.0634424096025 c 4.960131335273351e-3,-6.827035093032784e-3 1.4515517696841342e-2,-8.34045961399444e-3 2.1342552789874125e-2 -3.3803282787210898e-3c 6.827035093032784e-3,4.960131335273351e-3 8.34045961399444e-3,1.451551769684134e-2 3.3803282787210915e-3 2.1342552789874125e-2c -4.96013133527335e-3,6.827035093032785e-3 -1.451551769684134e-2,8.34045961399444e-3 -2.134255278987412e-2 3.3803282787210915e-3c -6.827035093032785e-3,-4.96013133527335e-3 -8.340459613994442e-3,-1.451551769684134e-2 -3.3803282787210932e-3 -2.1342552789874125e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8843636365786793,2.11601875651698 l 1.4164950402573075e-2,-4.3595234658903116e-2 l 4.583874240063947e-2,-3.469446951953614e-18 l 1.4164950402573075e-2,4.3595234658903116e-2 l -3.708432160289281e-2,2.6943336766729564e-2 l -3.708432160289281e-2,-2.6943336766729557e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8890852867128705,2.130550501403281 c -8.025661089135683e-3,2.6076953631502253e-3 -1.6645699657341848e-2,-1.7844336629743275e-3 -1.9253395020492073e-2 -9.810094752110008e-3c -2.6076953631502258e-3,-8.025661089135683e-3 1.7844336629743267e-3,-1.6645699657341848e-2 9.810094752110008e-3 -1.925339502049207e-2c 8.025661089135683e-3,-2.607695363150226e-3 1.6645699657341848e-2,1.7844336629743258e-3 1.925339502049207e-2 9.810094752110005e-3c 2.6076953631502266e-3,8.025661089135683e-3 -1.784433662974325e-3,1.6645699657341844e-2 -9.810094752110005e-3 1.9253395020492073e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367275389817853,2.1429620932837095 c 2.874183962866366e-18,8.438679459765121e-3 -6.840901340448034e-3,1.5279580800213164e-2 -1.5279580800213154e-2 1.5279580800213168e-2c -8.438679459765121e-3,3.3909040523379595e-18 -1.5279580800213164e-2,-6.840901340448033e-3 -1.5279580800213168e-2 -1.5279580800213152e-2c -3.9076241418095534e-18,-8.438679459765121e-3 6.8409013404480325e-3,-1.5279580800213164e-2 1.527958080021315e-2 -1.5279580800213168e-2c 8.438679459765121e-3,-4.4243442312811465e-18 1.5279580800213164e-2,6.840901340448032e-3 1.5279580800213171e-2 1.5279580800213152e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9632539299186562,2.101487011630679 c 8.025661089135685e-3,2.60769536315022e-3 1.2417790115260246e-2,1.122773393135638e-2 9.810094752110025e-3 1.9253395020492062e-2c -2.6076953631502197e-3,8.025661089135685e-3 -1.1227733931356378e-2,1.2417790115260246e-2 -1.925339502049206e-2 9.810094752110027e-3c -8.025661089135685e-3,-2.6076953631502192e-3 -1.2417790115260247e-2,-1.1227733931356378e-2 -9.810094752110027e-3 -1.925339502049206e-2c 2.607695363150219e-3,-8.025661089135685e-3 1.1227733931356378e-2,-1.2417790115260247e-2 1.925339502049206e-2 -9.810094752110032e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9320058888475944,2.0634424096025006 c 4.96013133527335e-3,-6.827035093032783e-3 1.451551769684134e-2,-8.34045961399444e-3 2.1342552789874118e-2 -3.3803282787210898e-3c 6.827035093032783e-3,4.96013133527335e-3 8.34045961399444e-3,1.4515517696841338e-2 3.3803282787210915e-3 2.1342552789874118e-2c -4.9601313352733494e-3,6.827035093032784e-3 -1.4515517696841337e-2,8.34045961399444e-3 -2.1342552789874118e-2 3.3803282787210915e-3c -6.827035093032784e-3,-4.9601313352733494e-3 -8.34045961399444e-3,-1.4515517696841337e-2 -3.3803282787210898e-3 -2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.886167146446955,2.0814046341136536 c -4.960131335273353e-3,-6.827035093032782e-3 -3.446706814311702e-3,-1.6382421454600775e-2 3.3803282787210776e-3 -2.1342552789874125e-2c 6.827035093032782e-3,-4.960131335273353e-3 1.638242145460077e-2,-3.446706814311703e-3 2.1342552789874125e-2 3.3803282787210776e-3c 4.960131335273354e-3,6.8270350930327815e-3 3.446706814311704e-3,1.638242145460077e-2 -3.380328278721076e-3 2.1342552789874125e-2c -6.8270350930327815e-3,4.960131335273354e-3 -1.638242145460077e-2,3.446706814311704e-3 -2.1342552789874125e-2 -3.380328278721076e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8729001264520808,2.2923769557631197 l -3.7084321602892795e-2,-2.694333676672956e-2 l 1.416495040257307e-2,-4.3595234658903116e-2 h 4.583874240063947e-2 l 1.4164950402573073e-2,4.359523465890312e-2 l -3.7084321602892815e-2,2.6943336766729553e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.888179707252294,2.2923769557631197 c 2.395153302388638e-18,8.43867945976512e-3 -6.840901340448033e-3,1.527958080021316e-2 -1.527958080021315e-2 1.5279580800213162e-2c -8.43867945976512e-3,2.9118733918602317e-18 -1.527958080021316e-2,-6.8409013404480325e-3 -1.5279580800213162e-2 -1.527958080021315e-2c -3.428593481331825e-18,-8.43867945976512e-3 6.840901340448032e-3,-1.527958080021316e-2 1.5279580800213147e-2 -1.5279580800213162e-2c 8.43867945976512e-3,-3.945313570803418e-18 1.527958080021316e-2,6.840901340448031e-3 1.5279580800213168e-2 1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9147060981891648,2.2509018741100895 c 8.025661089135685e-3,2.60769536315022e-3 1.2417790115260244e-2,1.1227733931356378e-2 9.810094752110025e-3 1.925339502049206e-2c -2.6076953631502197e-3,8.025661089135685e-3 -1.1227733931356378e-2,1.2417790115260244e-2 -1.925339502049206e-2 9.810094752110025e-3c -8.025661089135685e-3,-2.6076953631502192e-3 -1.2417790115260244e-2,-1.1227733931356378e-2 -9.810094752110025e-3 -1.925339502049206e-2c 2.607695363150219e-3,-8.025661089135685e-3 1.1227733931356376e-2,-1.2417790115260246e-2 1.925339502049206e-2 -9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.883458057118103,2.2128572720819104 c 4.96013133527335e-3,-6.827035093032783e-3 1.451551769684134e-2,-8.34045961399444e-3 2.1342552789874118e-2 -3.3803282787210898e-3c 6.827035093032783e-3,4.96013133527335e-3 8.34045961399444e-3,1.4515517696841338e-2 3.3803282787210915e-3 2.1342552789874118e-2c -4.9601313352733494e-3,6.827035093032784e-3 -1.4515517696841337e-2,8.34045961399444e-3 -2.1342552789874118e-2 3.3803282787210915e-3c -6.827035093032784e-3,-4.9601313352733494e-3 -8.34045961399444e-3,-1.4515517696841337e-2 -3.3803282787210898e-3 -2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8376193147174635,2.230819496593064 c -4.960131335273352e-3,-6.827035093032781e-3 -3.4467068143117013e-3,-1.638242145460077e-2 3.3803282787210776e-3 -2.134255278987412e-2c 6.827035093032781e-3,-4.960131335273352e-3 1.6382421454600768e-2,-3.446706814311702e-3 2.1342552789874118e-2 3.3803282787210776e-3c 4.960131335273353e-3,6.82703509303278e-3 3.446706814311703e-3,1.6382421454600768e-2 -3.380328278721076e-3 2.1342552789874118e-2c -6.82703509303278e-3,4.960131335273353e-3 -1.6382421454600768e-2,3.446706814311703e-3 -2.1342552789874118e-2 -3.380328278721076e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.840537454983379,2.2799653638826913 c -8.025661089135683e-3,2.6076953631502227e-3 -1.6645699657341844e-2,-1.7844336629743319e-3 -1.9253395020492066e-2 -9.810094752110013e-3c -2.607695363150223e-3,-8.025661089135683e-3 1.784433662974331e-3,-1.6645699657341844e-2 9.810094752110012e-3 -1.9253395020492066e-2c 8.025661089135683e-3,-2.6076953631502236e-3 1.6645699657341844e-2,1.7844336629743301e-3 1.9253395020492066e-2 9.81009475211001e-3c 2.607695363150224e-3,8.025661089135683e-3 -1.7844336629743293e-3,1.6645699657341844e-2 -9.810094752110012e-3 1.9253395020492066e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.037084321602893,2.3577770824330573 l -3.708432160289281e-2,2.6943336766729546e-2 l -3.70843216028928e-2,-2.6943336766729557e-2 l 1.4164950402573073e-2,-4.3595234658903116e-2 l 4.5838742400639475e-2,1.6963742411017125e-18 l 1.4164950402573068e-2,4.359523465890312e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.041805971737084,2.3432453375467563 c 8.025661089135685e-3,2.607695363150221e-3 1.2417790115260244e-2,1.1227733931356381e-2 9.810094752110022e-3 1.9253395020492062e-2c -2.6076953631502206e-3,8.025661089135685e-3 -1.122773393135638e-2,1.2417790115260244e-2 -1.925339502049206e-2 9.810094752110024e-3c -8.025661089135685e-3,-2.60769536315022e-3 -1.2417790115260244e-2,-1.1227733931356378e-2 -9.810094752110024e-3 -1.925339502049206e-2c 2.6076953631502197e-3,-8.025661089135685e-3 1.1227733931356378e-2,-1.2417790115260244e-2 1.925339502049206e-2 -9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.010557930666022,2.3052007355185773 c 4.960131335273351e-3,-6.827035093032784e-3 1.4515517696841342e-2,-8.34045961399444e-3 2.1342552789874125e-2 -3.3803282787210898e-3c 6.827035093032784e-3,4.960131335273351e-3 8.34045961399444e-3,1.451551769684134e-2 3.3803282787210915e-3 2.1342552789874125e-2c -4.96013133527335e-3,6.827035093032785e-3 -1.451551769684134e-2,8.34045961399444e-3 -2.134255278987412e-2 3.3803282787210915e-3c -6.827035093032785e-3,-4.96013133527335e-3 -8.340459613994442e-3,-1.451551769684134e-2 -3.3803282787210932e-3 -2.1342552789874125e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9647191882653827,2.3231629600297308 c -4.960131335273353e-3,-6.827035093032782e-3 -3.446706814311702e-3,-1.6382421454600775e-2 3.3803282787210776e-3 -2.1342552789874125e-2c 6.827035093032782e-3,-4.960131335273353e-3 1.638242145460077e-2,-3.446706814311703e-3 2.1342552789874125e-2 3.3803282787210776e-3c 4.960131335273354e-3,6.8270350930327815e-3 3.446706814311704e-3,1.638242145460077e-2 -3.380328278721076e-3 2.1342552789874125e-2c -6.8270350930327815e-3,4.960131335273354e-3 -1.638242145460077e-2,3.446706814311704e-3 -2.1342552789874125e-2 -3.380328278721076e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9676373285312982,2.372308827319358 c -8.025661089135683e-3,2.6076953631502227e-3 -1.6645699657341844e-2,-1.7844336629743319e-3 -1.9253395020492066e-2 -9.810094752110013e-3c -2.607695363150223e-3,-8.025661089135683e-3 1.784433662974331e-3,-1.6645699657341844e-2 9.810094752110012e-3 -1.9253395020492066e-2c 8.025661089135683e-3,-2.6076953631502236e-3 1.6645699657341844e-2,1.7844336629743301e-3 1.9253395020492066e-2 9.81009475211001e-3c 2.607695363150224e-3,8.025661089135683e-3 -1.7844336629743293e-3,1.6645699657341844e-2 -9.810094752110012e-3 1.9253395020492066e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0152795808002133,2.3847204191997866 c 0.0,8.438679459765121e-3 -6.840901340448039e-3,1.527958080021316e-2 -1.5279580800213157e-2 1.527958080021316e-2c -8.438679459765121e-3,5.167200894715935e-19 -1.527958080021316e-2,-6.840901340448038e-3 -1.527958080021316e-2 -1.5279580800213155e-2c -1.033440178943187e-18,-8.438679459765121e-3 6.840901340448037e-3,-1.527958080021316e-2 1.5279580800213154e-2 -1.527958080021316e-2c 8.438679459765121e-3,-1.5501602684147805e-18 1.527958080021316e-2,6.840901340448036e-3 1.5279580800213164e-2 1.5279580800213155e-2Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.127099873547919,1.7466158075138247 l -0.12709987354791916,-9.234346343666683e-2 l -0.12709987354791916,9.234346343666687e-2 l 4.8547831729491425e-2,0.14941486247941016 h 0.1571040836368554 l 4.854783172949148e-2,-0.14941486247941022 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.150019244748239,1.7781616156625126 l 1.416495040257307e-2,-4.3595234658903116e-2 l -3.70843216028928e-2,-2.694333676672956e-2 l -3.70843216028928e-2,2.6943336766729546e-2 l 1.4164950402573066e-2,4.359523465890312e-2 l 4.583874240063947e-2,6.938893903907228e-18 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.137657804213941,1.7871427279180894 c 4.9601313352733494e-3,6.827035093032784e-3 1.4515517696841338e-2,8.340459613994442e-3 2.1342552789874118e-2 3.3803282787210932e-3c 6.827035093032784e-3,-4.9601313352733494e-3 8.340459613994442e-3,-1.4515517696841337e-2 3.380328278721095e-3 -2.1342552789874118e-2c -4.960131335273349e-3,-6.827035093032785e-3 -1.4515517696841337e-2,-8.340459613994444e-3 -2.1342552789874118e-2 -3.380328278721095e-3c -6.827035093032785e-3,4.960131335273349e-3 -8.340459613994444e-3,1.4515517696841337e-2 -3.3803282787210967e-3 2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0918190618133017,1.7691805034069361 c -4.960131335273355e-3,6.827035093032781e-3 -3.4467068143117065e-3,1.638242145460077e-2 3.3803282787210724e-3 2.1342552789874125e-2c 6.827035093032781e-3,4.960131335273355e-3 1.638242145460077e-2,3.4467068143117074e-3 2.1342552789874125e-2 -3.3803282787210724e-3c 4.9601313352733555e-3,-6.82703509303278e-3 3.4467068143117082e-3,-1.638242145460077e-2 -3.3803282787210707e-3 -2.1342552789874125e-2c -6.82703509303278e-3,-4.9601313352733555e-3 -1.638242145460077e-2,-3.4467068143117082e-3 -2.1342552789874125e-2 3.3803282787210724e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.094737202079217,1.7200346361173087 c -8.025661089135683e-3,-2.6076953631502253e-3 -1.6645699657341848e-2,1.7844336629743275e-3 -1.9253395020492073e-2 9.810094752110008e-3c -2.6076953631502258e-3,8.025661089135683e-3 1.7844336629743267e-3,1.6645699657341848e-2 9.810094752110008e-3 1.925339502049207e-2c 8.025661089135683e-3,2.607695363150226e-3 1.6645699657341848e-2,-1.7844336629743258e-3 1.925339502049207e-2 -9.810094752110005e-3c 2.6076953631502266e-3,-8.025661089135683e-3 -1.784433662974325e-3,-1.6645699657341844e-2 -9.810094752110005e-3 -1.9253395020492073e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1423794543481325,1.70762304423688 c 1.9161226419109107e-18,-8.43867945976512e-3 -6.840901340448034e-3,-1.527958080021316e-2 -1.5279580800213152e-2 -1.5279580800213162e-2c -8.43867945976512e-3,-2.432842731382504e-18 -1.527958080021316e-2,6.840901340448033e-3 -1.5279580800213162e-2 1.527958080021315e-2c -2.9495628208540977e-18,8.43867945976512e-3 6.8409013404480325e-3,1.527958080021316e-2 1.5279580800213148e-2 1.5279580800213162e-2c 8.43867945976512e-3,3.4662829103256908e-18 1.527958080021316e-2,-6.840901340448032e-3 1.5279580800213166e-2 -1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.168905845285003,1.7490981258899105 c 8.025661089135685e-3,-2.607695363150221e-3 1.2417790115260244e-2,-1.1227733931356381e-2 9.810094752110022e-3 -1.9253395020492062e-2c -2.6076953631502206e-3,-8.025661089135685e-3 -1.122773393135638e-2,-1.2417790115260244e-2 -1.925339502049206e-2 -9.810094752110024e-3c -8.025661089135685e-3,2.60769536315022e-3 -1.2417790115260244e-2,1.1227733931356378e-2 -9.810094752110024e-3 1.925339502049206e-2c 2.6076953631502197e-3,8.025661089135685e-3 1.1227733931356378e-2,1.2417790115260244e-2 1.925339502049206e-2 9.810094752110025e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.055632670618108,1.9275764781419227 l 4.583874240063947e-2,-3.469446951953614e-18 l 1.4164950402573078e-2,-4.359523465890312e-2 l -3.70843216028928e-2,-2.6943336766729557e-2 l -3.7084321602892815e-2,2.6943336766729553e-2 l 1.4164950402573068e-2,4.359523465890312e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.04327123008381,1.9185953658863462 c -4.960131335273355e-3,6.827035093032781e-3 -3.4467068143117065e-3,1.638242145460077e-2 3.3803282787210724e-3 2.1342552789874125e-2c 6.827035093032781e-3,4.960131335273355e-3 1.638242145460077e-2,3.4467068143117074e-3 2.1342552789874125e-2 -3.3803282787210724e-3c 4.9601313352733555e-3,-6.82703509303278e-3 3.4467068143117082e-3,-1.638242145460077e-2 -3.3803282787210707e-3 -2.1342552789874125e-2c -6.82703509303278e-3,-4.9601313352733555e-3 -1.638242145460077e-2,-3.4467068143117082e-3 -2.1342552789874125e-2 3.3803282787210724e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0461893703497256,1.8694494985967187 c -8.025661089135685e-3,-2.6076953631502253e-3 -1.6645699657341848e-2,1.7844336629743284e-3 -1.9253395020492073e-2 9.810094752110012e-3c -2.6076953631502258e-3,8.025661089135685e-3 1.7844336629743275e-3,1.6645699657341848e-2 9.810094752110008e-3 1.9253395020492073e-2c 8.025661089135685e-3,2.607695363150226e-3 1.6645699657341848e-2,-1.7844336629743267e-3 1.9253395020492073e-2 -9.810094752110008e-3c 2.6076953631502266e-3,-8.025661089135685e-3 -1.7844336629743258e-3,-1.6645699657341848e-2 -9.810094752110008e-3 -1.9253395020492076e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.093831622618641,1.85703790671629 c 2.874183962866366e-18,-8.438679459765121e-3 -6.840901340448033e-3,-1.5279580800213162e-2 -1.5279580800213152e-2 -1.5279580800213166e-2c -8.438679459765121e-3,-3.3909040523379595e-18 -1.5279580800213162e-2,6.8409013404480325e-3 -1.5279580800213166e-2 1.527958080021315e-2c -3.907624141809553e-18,8.438679459765121e-3 6.840901340448032e-3,1.5279580800213162e-2 1.5279580800213148e-2 1.5279580800213166e-2c 8.438679459765121e-3,4.4243442312811465e-18 1.5279580800213162e-2,-6.840901340448031e-3 1.527958080021317e-2 -1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1203580135555113,1.8985129883693206 c 8.025661089135685e-3,-2.6076953631502214e-3 1.2417790115260244e-2,-1.1227733931356381e-2 9.810094752110022e-3 -1.9253395020492062e-2c -2.607695363150221e-3,-8.025661089135685e-3 -1.1227733931356381e-2,-1.2417790115260244e-2 -1.9253395020492062e-2 -9.810094752110022e-3c -8.025661089135685e-3,2.6076953631502206e-3 -1.2417790115260244e-2,1.122773393135638e-2 -9.810094752110022e-3 1.925339502049206e-2c 2.60769536315022e-3,8.025661089135685e-3 1.1227733931356378e-2,1.2417790115260244e-2 1.9253395020492062e-2 9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0891099724844495,1.9365575903974992 c 4.960131335273351e-3,6.827035093032784e-3 1.4515517696841342e-2,8.34045961399444e-3 2.1342552789874125e-2 3.3803282787210898e-3c 6.827035093032784e-3,-4.960131335273351e-3 8.34045961399444e-3,-1.451551769684134e-2 3.3803282787210915e-3 -2.1342552789874125e-2c -4.96013133527335e-3,-6.827035093032785e-3 -1.451551769684134e-2,-8.34045961399444e-3 -2.134255278987412e-2 -3.3803282787210915e-3c -6.827035093032785e-3,4.96013133527335e-3 -8.340459613994442e-3,1.451551769684134e-2 -3.3803282787210932e-3 2.1342552789874125e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8843636365786793,1.8839812434830197 l 1.4164950402573075e-2,4.3595234658903116e-2 l 4.583874240063947e-2,3.469446951953614e-18 l 1.4164950402573075e-2,-4.3595234658903116e-2 l -3.708432160289281e-2,-2.6943336766729564e-2 l -3.708432160289281e-2,2.6943336766729557e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8890852867128705,1.8694494985967187 c -8.025661089135683e-3,-2.6076953631502253e-3 -1.6645699657341848e-2,1.7844336629743275e-3 -1.9253395020492073e-2 9.810094752110008e-3c -2.6076953631502258e-3,8.025661089135683e-3 1.7844336629743267e-3,1.6645699657341848e-2 9.810094752110008e-3 1.925339502049207e-2c 8.025661089135683e-3,2.607695363150226e-3 1.6645699657341848e-2,-1.7844336629743258e-3 1.925339502049207e-2 -9.810094752110005e-3c 2.6076953631502266e-3,-8.025661089135683e-3 -1.784433662974325e-3,-1.6645699657341844e-2 -9.810094752110005e-3 -1.9253395020492073e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367275389817853,1.85703790671629 c 2.874183962866366e-18,-8.438679459765121e-3 -6.840901340448034e-3,-1.5279580800213164e-2 -1.5279580800213154e-2 -1.5279580800213168e-2c -8.438679459765121e-3,-3.3909040523379595e-18 -1.5279580800213164e-2,6.840901340448033e-3 -1.5279580800213168e-2 1.5279580800213152e-2c -3.9076241418095534e-18,8.438679459765121e-3 6.8409013404480325e-3,1.5279580800213164e-2 1.527958080021315e-2 1.5279580800213168e-2c 8.438679459765121e-3,4.4243442312811465e-18 1.5279580800213164e-2,-6.840901340448032e-3 1.5279580800213171e-2 -1.5279580800213152e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9632539299186562,1.8985129883693208 c 8.025661089135685e-3,-2.60769536315022e-3 1.2417790115260246e-2,-1.122773393135638e-2 9.810094752110025e-3 -1.9253395020492062e-2c -2.6076953631502197e-3,-8.025661089135685e-3 -1.1227733931356378e-2,-1.2417790115260246e-2 -1.925339502049206e-2 -9.810094752110027e-3c -8.025661089135685e-3,2.6076953631502192e-3 -1.2417790115260247e-2,1.1227733931356378e-2 -9.810094752110027e-3 1.925339502049206e-2c 2.607695363150219e-3,8.025661089135685e-3 1.1227733931356378e-2,1.2417790115260247e-2 1.925339502049206e-2 9.810094752110032e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9320058888475944,1.9365575903974992 c 4.96013133527335e-3,6.827035093032783e-3 1.451551769684134e-2,8.34045961399444e-3 2.1342552789874118e-2 3.3803282787210898e-3c 6.827035093032783e-3,-4.96013133527335e-3 8.34045961399444e-3,-1.4515517696841338e-2 3.3803282787210915e-3 -2.1342552789874118e-2c -4.9601313352733494e-3,-6.827035093032784e-3 -1.4515517696841337e-2,-8.34045961399444e-3 -2.1342552789874118e-2 -3.3803282787210915e-3c -6.827035093032784e-3,4.9601313352733494e-3 -8.34045961399444e-3,1.4515517696841337e-2 -3.3803282787210898e-3 2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.886167146446955,1.9185953658863462 c -4.960131335273353e-3,6.827035093032782e-3 -3.446706814311702e-3,1.6382421454600775e-2 3.3803282787210776e-3 2.1342552789874125e-2c 6.827035093032782e-3,4.960131335273353e-3 1.638242145460077e-2,3.446706814311703e-3 2.1342552789874125e-2 -3.3803282787210776e-3c 4.960131335273354e-3,-6.8270350930327815e-3 3.446706814311704e-3,-1.638242145460077e-2 -3.380328278721076e-3 -2.1342552789874125e-2c -6.8270350930327815e-3,-4.960131335273354e-3 -1.638242145460077e-2,-3.446706814311704e-3 -2.1342552789874125e-2 3.380328278721076e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8729001264520808,1.70762304423688 l -3.7084321602892795e-2,2.694333676672956e-2 l 1.416495040257307e-2,4.3595234658903116e-2 h 4.583874240063947e-2 l 1.4164950402573073e-2,-4.359523465890312e-2 l -3.7084321602892815e-2,-2.6943336766729553e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.888179707252294,1.70762304423688 c 2.395153302388638e-18,-8.43867945976512e-3 -6.840901340448033e-3,-1.527958080021316e-2 -1.527958080021315e-2 -1.5279580800213162e-2c -8.43867945976512e-3,-2.9118733918602317e-18 -1.527958080021316e-2,6.8409013404480325e-3 -1.5279580800213162e-2 1.527958080021315e-2c -3.428593481331825e-18,8.43867945976512e-3 6.840901340448032e-3,1.527958080021316e-2 1.5279580800213147e-2 1.5279580800213162e-2c 8.43867945976512e-3,3.945313570803418e-18 1.527958080021316e-2,-6.840901340448031e-3 1.5279580800213168e-2 -1.527958080021315e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9147060981891648,1.7490981258899105 c 8.025661089135685e-3,-2.60769536315022e-3 1.2417790115260244e-2,-1.1227733931356378e-2 9.810094752110025e-3 -1.925339502049206e-2c -2.6076953631502197e-3,-8.025661089135685e-3 -1.1227733931356378e-2,-1.2417790115260244e-2 -1.925339502049206e-2 -9.810094752110025e-3c -8.025661089135685e-3,2.6076953631502192e-3 -1.2417790115260244e-2,1.1227733931356378e-2 -9.810094752110025e-3 1.925339502049206e-2c 2.607695363150219e-3,8.025661089135685e-3 1.1227733931356376e-2,1.2417790115260246e-2 1.925339502049206e-2 9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.883458057118103,1.7871427279180891 c 4.96013133527335e-3,6.827035093032783e-3 1.451551769684134e-2,8.34045961399444e-3 2.1342552789874118e-2 3.3803282787210898e-3c 6.827035093032783e-3,-4.96013133527335e-3 8.34045961399444e-3,-1.4515517696841338e-2 3.3803282787210915e-3 -2.1342552789874118e-2c -4.9601313352733494e-3,-6.827035093032784e-3 -1.4515517696841337e-2,-8.34045961399444e-3 -2.1342552789874118e-2 -3.3803282787210915e-3c -6.827035093032784e-3,4.9601313352733494e-3 -8.34045961399444e-3,1.4515517696841337e-2 -3.3803282787210898e-3 2.1342552789874118e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8376193147174635,1.7691805034069361 c -4.960131335273352e-3,6.827035093032781e-3 -3.4467068143117013e-3,1.638242145460077e-2 3.3803282787210776e-3 2.134255278987412e-2c 6.827035093032781e-3,4.960131335273352e-3 1.6382421454600768e-2,3.446706814311702e-3 2.1342552789874118e-2 -3.3803282787210776e-3c 4.960131335273353e-3,-6.82703509303278e-3 3.446706814311703e-3,-1.6382421454600768e-2 -3.380328278721076e-3 -2.1342552789874118e-2c -6.82703509303278e-3,-4.960131335273353e-3 -1.6382421454600768e-2,-3.446706814311703e-3 -2.1342552789874118e-2 3.380328278721076e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.840537454983379,1.7200346361173087 c -8.025661089135683e-3,-2.6076953631502227e-3 -1.6645699657341844e-2,1.7844336629743319e-3 -1.9253395020492066e-2 9.810094752110013e-3c -2.607695363150223e-3,8.025661089135683e-3 1.784433662974331e-3,1.6645699657341844e-2 9.810094752110012e-3 1.9253395020492066e-2c 8.025661089135683e-3,2.6076953631502236e-3 1.6645699657341844e-2,-1.7844336629743301e-3 1.9253395020492066e-2 -9.81009475211001e-3c 2.607695363150224e-3,-8.025661089135683e-3 -1.7844336629743293e-3,-1.6645699657341844e-2 -9.810094752110012e-3 -1.9253395020492066e-2Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.037084321602893,1.6422229175669427 l -3.708432160289281e-2,-2.6943336766729546e-2 l -3.70843216028928e-2,2.6943336766729557e-2 l 1.4164950402573073e-2,4.3595234658903116e-2 l 4.5838742400639475e-2,-1.6963742411017125e-18 l 1.4164950402573068e-2,-4.359523465890312e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.041805971737084,1.6567546624532437 c 8.025661089135685e-3,-2.607695363150221e-3 1.2417790115260244e-2,-1.1227733931356381e-2 9.810094752110022e-3 -1.9253395020492062e-2c -2.6076953631502206e-3,-8.025661089135685e-3 -1.122773393135638e-2,-1.2417790115260244e-2 -1.925339502049206e-2 -9.810094752110024e-3c -8.025661089135685e-3,2.60769536315022e-3 -1.2417790115260244e-2,1.1227733931356378e-2 -9.810094752110024e-3 1.925339502049206e-2c 2.6076953631502197e-3,8.025661089135685e-3 1.1227733931356378e-2,1.2417790115260244e-2 1.925339502049206e-2 9.810094752110025e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.010557930666022,1.6947992644814223 c 4.960131335273351e-3,6.827035093032784e-3 1.4515517696841342e-2,8.34045961399444e-3 2.1342552789874125e-2 3.3803282787210898e-3c 6.827035093032784e-3,-4.960131335273351e-3 8.34045961399444e-3,-1.451551769684134e-2 3.3803282787210915e-3 -2.1342552789874125e-2c -4.96013133527335e-3,-6.827035093032785e-3 -1.451551769684134e-2,-8.34045961399444e-3 -2.134255278987412e-2 -3.3803282787210915e-3c -6.827035093032785e-3,4.96013133527335e-3 -8.340459613994442e-3,1.451551769684134e-2 -3.3803282787210932e-3 2.1342552789874125e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9647191882653827,1.6768370399702692 c -4.960131335273353e-3,6.827035093032782e-3 -3.446706814311702e-3,1.6382421454600775e-2 3.3803282787210776e-3 2.1342552789874125e-2c 6.827035093032782e-3,4.960131335273353e-3 1.638242145460077e-2,3.446706814311703e-3 2.1342552789874125e-2 -3.3803282787210776e-3c 4.960131335273354e-3,-6.8270350930327815e-3 3.446706814311704e-3,-1.638242145460077e-2 -3.380328278721076e-3 -2.1342552789874125e-2c -6.8270350930327815e-3,-4.960131335273354e-3 -1.638242145460077e-2,-3.446706814311704e-3 -2.1342552789874125e-2 3.380328278721076e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9676373285312982,1.6276911726806418 c -8.025661089135683e-3,-2.6076953631502227e-3 -1.6645699657341844e-2,1.7844336629743319e-3 -1.9253395020492066e-2 9.810094752110013e-3c -2.607695363150223e-3,8.025661089135683e-3 1.784433662974331e-3,1.6645699657341844e-2 9.810094752110012e-3 1.9253395020492066e-2c 8.025661089135683e-3,2.6076953631502236e-3 1.6645699657341844e-2,-1.7844336629743301e-3 1.9253395020492066e-2 -9.81009475211001e-3c 2.607695363150224e-3,-8.025661089135683e-3 -1.7844336629743293e-3,-1.6645699657341844e-2 -9.810094752110012e-3 -1.9253395020492066e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0152795808002133,1.6152795808002132 c 0.0,-8.438679459765121e-3 -6.840901340448039e-3,-1.527958080021316e-2 -1.5279580800213157e-2 -1.527958080021316e-2c -8.438679459765121e-3,-5.167200894715935e-19 -1.527958080021316e-2,6.840901340448038e-3 -1.527958080021316e-2 1.5279580800213155e-2c -1.033440178943187e-18,8.438679459765121e-3 6.840901340448037e-3,1.527958080021316e-2 1.5279580800213154e-2 1.527958080021316e-2c 8.438679459765121e-3,1.5501602684147805e-18 1.527958080021316e-2,-6.840901340448036e-3 1.5279580800213164e-2 -1.5279580800213155e-2Z" /></g></g></g></g><g><path d="M 1.5,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1257643257781647,2.256809116880829 l -0.1257643257781648,9.137313118375759e-2 l -0.12576432577816476,-9.137313118375762e-2 l 4.803769787504438e-2,-0.14784483191382272 l 0.15545325580624084,5.7529261283010965e-18 l 4.8037697875044305e-2,0.14784483191382275 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1417768917365128,2.207527506242888 c 2.7217482002433777e-2,8.843495984455371e-3 4.211254066404819e-2,3.8076694593855265e-2 3.326904467959282e-2 6.529417659628904e-2c -8.84349598445537e-3,2.7217482002433777e-2 -3.8076694593855265e-2,4.211254066404819e-2 -6.529417659628904e-2 3.3269044679592824e-2c -2.7217482002433777e-2,-8.843495984455368e-3 -4.211254066404819e-2,-3.8076694593855265e-2 -3.3269044679592824e-2 -6.529417659628903e-2c 8.843495984455366e-3,-2.7217482002433777e-2 3.8076694593855265e-2,-4.211254066404819e-2 6.529417659628906e-2 -3.326904467959284e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0358051859770654,2.0785065745724203 c 1.682132896569262e-2,-2.3152573066677392e-2 4.9226579253963426e-2,-2.8285060497161688e-2 7.237915232064082e-2 -1.1463731531469075e-2c 2.3152573066677392e-2,1.682132896569262e-2 2.828506049716169e-2,4.9226579253963426e-2 1.1463731531469078e-2 7.237915232064081e-2c -1.6821328965692616e-2,2.3152573066677395e-2 -4.9226579253963426e-2,2.8285060497161695e-2 -7.23791523206408e-2 1.1463731531469082e-2c -2.3152573066677395e-2,-1.6821328965692616e-2 -2.8285060497161695e-2,-4.922657925396342e-2 -1.146373153146911e-2 -7.237915232064082e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8803519301708245,2.1394219953615923 c -1.6821328965692623e-2,-2.315257306667739e-2 -1.1688841535208341e-2,-5.5557823354948195e-2 1.1463731531469044e-2 -7.237915232064082e-2c 2.315257306667739e-2,-1.6821328965692623e-2 5.5557823354948195e-2,-1.1688841535208345e-2 7.237915232064082e-2 1.1463731531469037e-2c 1.6821328965692627e-2,2.3152573066677385e-2 1.1688841535208345e-2,5.5557823354948195e-2 -1.146373153146903e-2 7.237915232064081e-2c -2.3152573066677385e-2,1.6821328965692627e-2 -5.5557823354948195e-2,1.1688841535208348e-2 -7.237915232064084e-2 -1.1463731531469026e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8902482401801832,2.30609072751877 c -2.7217482002433773e-2,8.843495984455378e-3 -5.645068061183368e-2,-6.051562677159013e-3 -6.529417659628906e-2 -3.326904467959278e-2c -8.84349598445538e-3,-2.7217482002433773e-2 6.051562677159013e-3,-5.645068061183368e-2 3.326904467959278e-2 -6.529417659628906e-2c 2.7217482002433773e-2,-8.843495984455382e-3 5.645068061183368e-2,6.051562677159009e-3 6.529417659628906e-2 3.326904467959277e-2c 8.843495984455383e-3,2.7217482002433773e-2 -6.051562677159006e-3,5.645068061183368e-2 -3.326904467959278e-2 6.529417659628907e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0518177519354135,2.3481822480645866 c 0.0,2.8618154164444024e-2 -2.319959777096959e-2,5.181775193541362e-2 -5.18177519354136e-2 5.181775193541362e-2c -2.8618154164444024e-2,1.7523565447495932e-18 -5.181775193541362e-2,-2.3199597770969586e-2 -5.181775193541362e-2 -5.18177519354136e-2c -3.5047130894991865e-18,-2.8618154164444024e-2 2.3199597770969582e-2,-5.181775193541362e-2 5.1817751935413596e-2 -5.181775193541362e-2c 2.8618154164444024e-2,-5.25706963424878e-18 5.181775193541362e-2,2.319959777096958e-2 5.1817751935413624e-2 5.18177519354136e-2Z" /></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1257643257781647,1.7431908831191711 l -0.1257643257781648,-9.137313118375759e-2 l -0.12576432577816476,9.137313118375762e-2 l 4.803769787504438e-2,0.14784483191382272 l 0.15545325580624084,-5.7529261283010965e-18 l 4.8037697875044305e-2,-0.14784483191382275 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1417768917365128,1.7924724937571122 c 2.7217482002433777e-2,-8.843495984455371e-3 4.211254066404819e-2,-3.8076694593855265e-2 3.326904467959282e-2 -6.529417659628904e-2c -8.84349598445537e-3,-2.7217482002433777e-2 -3.8076694593855265e-2,-4.211254066404819e-2 -6.529417659628904e-2 -3.3269044679592824e-2c -2.7217482002433777e-2,8.843495984455368e-3 -4.211254066404819e-2,3.8076694593855265e-2 -3.3269044679592824e-2 6.529417659628903e-2c 8.843495984455366e-3,2.7217482002433777e-2 3.8076694593855265e-2,4.211254066404819e-2 6.529417659628906e-2 3.326904467959284e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0358051859770654,1.9214934254275797 c 1.682132896569262e-2,2.3152573066677392e-2 4.9226579253963426e-2,2.8285060497161688e-2 7.237915232064082e-2 1.1463731531469075e-2c 2.3152573066677392e-2,-1.682132896569262e-2 2.828506049716169e-2,-4.9226579253963426e-2 1.1463731531469078e-2 -7.237915232064081e-2c -1.6821328965692616e-2,-2.3152573066677395e-2 -4.9226579253963426e-2,-2.8285060497161695e-2 -7.23791523206408e-2 -1.1463731531469082e-2c -2.3152573066677395e-2,1.6821328965692616e-2 -2.8285060497161695e-2,4.922657925396342e-2 -1.146373153146911e-2 7.237915232064082e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8803519301708245,1.8605780046384082 c -1.6821328965692623e-2,2.315257306667739e-2 -1.1688841535208341e-2,5.5557823354948195e-2 1.1463731531469044e-2 7.237915232064082e-2c 2.315257306667739e-2,1.6821328965692623e-2 5.5557823354948195e-2,1.1688841535208345e-2 7.237915232064082e-2 -1.1463731531469037e-2c 1.6821328965692627e-2,-2.3152573066677385e-2 1.1688841535208345e-2,-5.5557823354948195e-2 -1.146373153146903e-2 -7.237915232064081e-2c -2.3152573066677385e-2,-1.6821328965692627e-2 -5.5557823354948195e-2,-1.1688841535208348e-2 -7.237915232064084e-2 1.1463731531469026e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8902482401801832,1.6939092724812301 c -2.7217482002433773e-2,-8.843495984455378e-3 -5.645068061183368e-2,6.051562677159013e-3 -6.529417659628906e-2 3.326904467959278e-2c -8.84349598445538e-3,2.7217482002433773e-2 6.051562677159013e-3,5.645068061183368e-2 3.326904467959278e-2 6.529417659628906e-2c 2.7217482002433773e-2,8.843495984455382e-3 5.645068061183368e-2,-6.051562677159009e-3 6.529417659628906e-2 -3.326904467959277e-2c 8.843495984455383e-3,-2.7217482002433773e-2 -6.051562677159006e-3,-5.645068061183368e-2 -3.326904467959278e-2 -6.529417659628907e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0518177519354135,1.6518177519354136 c 0.0,-2.8618154164444024e-2 -2.319959777096959e-2,-5.181775193541362e-2 -5.18177519354136e-2 -5.181775193541362e-2c -2.8618154164444024e-2,-1.7523565447495932e-18 -5.181775193541362e-2,2.3199597770969586e-2 -5.181775193541362e-2 5.18177519354136e-2c -3.5047130894991865e-18,2.8618154164444024e-2 2.3199597770969582e-2,5.181775193541362e-2 5.1817751935413596e-2 5.181775193541362e-2c 2.8618154164444024e-2,5.25706963424878e-18 5.181775193541362e-2,-2.319959777096958e-2 5.1817751935413624e-2 -5.18177519354136e-2Z" /></g></g></g><path d="M 0.5000000000000001,2.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4,2.0 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.40000000000000013 -0.39999999999999997Z" /></g></g><g><g><path d="M 2.5,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1570244609073197,1.1199782032202106 l -5.447137437767964e-2,-3.9575770044285793e-2 l -5.447137437767964e-2,3.957577004428581e-2 l 2.0806213598353468e-2,6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,-6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1668470485645996,1.1334978352839342 l 6.070693029674173e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.154714432859838e-2 l 6.070693029674172e-3,1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.161549288335615,1.137346883393467 c 2.125770572260007e-3,2.925872182728337e-3 6.220936155789147e-3,3.574482691711905e-3 9.146808338517484e-3 1.4487121194518985e-3c 2.925872182728337e-3,-2.125770572260007e-3 3.5744826917119056e-3,-6.220936155789146e-3 1.448712119451899e-3 -9.146808338517482e-3c -2.1257705722600067e-3,-2.9258721827283376e-3 -6.220936155789146e-3,-3.574482691711906e-3 -9.14680833851748e-3 -1.4487121194518993e-3c -2.9258721827283376e-3,2.1257705722600067e-3 -3.574482691711906e-3,6.220936155789145e-3 -1.4487121194519028e-3 9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.141904113021055,1.1296487871744014 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1431547445635903,1.108586272621704 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.16357285267884,1.103267018958663 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.174941305937499,1.121042053952819 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1263956596516866,1.1975327763465384 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l -1.5893280686954066e-2,1.1547144328598382e-2 l 6.070693029674175e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.121097899422702,1.1936837282370056 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1223485309652377,1.1726212136843082 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1427666390804867,1.1673019600212673 c 9.580613209554553e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.1795127878718526e-18 -6.548391771519928e-3,2.931814860192015e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.40096425478825e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.622415721704647e-18 6.548391771519928e-3,-2.931814860192014e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.154135092339146,1.1850769950154232 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1407430747372618,1.2013818244560712 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0529946450633596,1.1788491043498657 l 6.070693029674176e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672764e-2 l -1.5893280686954062e-2,-1.1547144328598387e-2 l -1.5893280686954062e-2,1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0550182094065845,1.1726212136843082 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.075436317521834,1.1673019600212673 c 9.580613209554553e-19,-3.6165769113279097e-3 -2.9318148601920157e-3,-6.5483917715199284e-3 -6.548391771519924e-3 -6.548391771519929e-3c -3.6165769113279097e-3,-1.1795127878718526e-18 -6.5483917715199284e-3,2.9318148601920153e-3 -6.548391771519929e-3 6.548391771519923e-3c -1.40096425478825e-18,3.6165769113279097e-3 2.931814860192015e-3,6.5483917715199284e-3 6.548391771519923e-3 6.548391771519929e-3c 3.6165769113279097e-3,1.622415721704647e-18 6.5483917715199284e-3,-2.9318148601920144e-3 6.54839177151993e-3 -6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.086804770780493,1.1850769950154232 c 3.4395690382010083e-3,-1.1175837270643802e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.11758372706438e-3,-3.4395690382010083e-3 -4.8118859705813056e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332869e-3c -3.4395690382010083e-3,1.1175837270643797e-3 -5.321910049397249e-3,4.811885970581305e-3 -4.204326322332869e-3 8.251455008782313e-3c 1.1175837270643795e-3,3.4395690382010083e-3 4.811885970581305e-3,5.321910049397249e-3 8.251455008782313e-3 4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.073412753178609,1.2013818244560712 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.053767577864049,1.1936837282370056 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0480817121519608,1.103267018958663 l -1.589328068695406e-2,1.1547144328598385e-2 l 6.070693029674175e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,-8.673617379884035e-19 l 6.070693029674174e-3,-1.8683671996672768e-2 l -1.5893280686954066e-2,-1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.054630103923481,1.103267018958663 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.06599855718214,1.121042053952819 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.052606539580256,1.137346883393467 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.032961364265696,1.1296487871744014 c -2.1257705722600084e-3,2.925872182728335e-3 -1.477160063276444e-3,7.021037766257474e-3 1.448712119451891e-3 9.146808338517482e-3c 2.925872182728335e-3,2.1257705722600084e-3 7.021037766257474e-3,1.477160063276444e-3 9.14680833851748e-3 -1.4487121194518902e-3c 2.125770572260009e-3,-2.9258721827283346e-3 1.4771600632764443e-3,-7.021037766257473e-3 -1.4487121194518894e-3 -9.14680833851748e-3c -2.9258721827283346e-3,-2.125770572260009e-3 -7.021037766257473e-3,-1.4771600632764448e-3 -9.146808338517482e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0342119958082314,1.108586272621704 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1184463672165945,1.0752383932429757 l -1.5893280686954062e-2,-1.1547144328598378e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l 6.070693029674175e-3,1.8683671996672764e-2 l 1.964517531455978e-2,-7.27017531900734e-19 l 6.0706930296741644e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1204699315598194,1.0814662839085332 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1070779139579354,1.0977711133491812 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0874327386433755,1.0900730171301156 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.088683370185911,1.0690105025774181 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1091014783011603,1.0636912489143773 c 0.0,-3.6165769113279092e-3 -2.931814860192017e-3,-6.548391771519927e-3 -6.548391771519925e-3 -6.548391771519927e-3c -3.6165769113279092e-3,-2.2145146691639725e-19 -6.548391771519927e-3,2.9318148601920166e-3 -6.548391771519927e-3 6.548391771519924e-3c -4.429029338327945e-19,3.6165769113279092e-3 2.931814860192016e-3,6.548391771519927e-3 6.548391771519924e-3 6.548391771519927e-3c 3.6165769113279092e-3,6.643544007491917e-19 6.548391771519927e-3,-2.9318148601920157e-3 6.548391771519928e-3 -6.548391771519924e-3Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1570244609073197,1.3371646539226467 l -5.447137437767964e-2,3.9575770044285793e-2 l -5.447137437767964e-2,-3.957577004428581e-2 l 2.0806213598353468e-2,-6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1668470485645996,1.323645021858923 l 6.070693029674173e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 l 6.070693029674172e-3,-1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.161549288335615,1.3197959737493903 c 2.125770572260007e-3,-2.925872182728337e-3 6.220936155789147e-3,-3.574482691711905e-3 9.146808338517484e-3 -1.4487121194518985e-3c 2.925872182728337e-3,2.125770572260007e-3 3.5744826917119056e-3,6.220936155789146e-3 1.448712119451899e-3 9.146808338517482e-3c -2.1257705722600067e-3,2.9258721827283376e-3 -6.220936155789146e-3,3.574482691711906e-3 -9.14680833851748e-3 1.4487121194518993e-3c -2.9258721827283376e-3,-2.1257705722600067e-3 -3.574482691711906e-3,-6.220936155789145e-3 -1.4487121194519028e-3 -9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.141904113021055,1.3274940699684559 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1431547445635903,1.3485565845211533 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.16357285267884,1.3538758381841942 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.174941305937499,1.3361008031900383 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1263956596516866,1.2596100807963189 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l -1.5893280686954066e-2,-1.1547144328598382e-2 l 6.070693029674175e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.121097899422702,1.2634591289058517 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1223485309652377,1.2845216434585491 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1427666390804867,1.28984089712159 c 9.580613209554553e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.1795127878718526e-18 -6.548391771519928e-3,-2.931814860192015e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.40096425478825e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.622415721704647e-18 6.548391771519928e-3,2.931814860192014e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.154135092339146,1.272065862127434 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1407430747372618,1.255761032686786 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0529946450633596,1.2782937527929916 l 6.070693029674176e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672764e-2 l -1.5893280686954062e-2,1.1547144328598387e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0550182094065845,1.2845216434585491 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.075436317521834,1.28984089712159 c 9.580613209554553e-19,3.6165769113279097e-3 -2.9318148601920157e-3,6.5483917715199284e-3 -6.548391771519924e-3 6.548391771519929e-3c -3.6165769113279097e-3,1.1795127878718526e-18 -6.5483917715199284e-3,-2.9318148601920153e-3 -6.548391771519929e-3 -6.548391771519923e-3c -1.40096425478825e-18,-3.6165769113279097e-3 2.931814860192015e-3,-6.5483917715199284e-3 6.548391771519923e-3 -6.548391771519929e-3c 3.6165769113279097e-3,-1.622415721704647e-18 6.5483917715199284e-3,2.9318148601920144e-3 6.54839177151993e-3 6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.086804770780493,1.272065862127434 c 3.4395690382010083e-3,1.1175837270643802e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.11758372706438e-3,3.4395690382010083e-3 -4.8118859705813056e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332869e-3c -3.4395690382010083e-3,-1.1175837270643797e-3 -5.321910049397249e-3,-4.811885970581305e-3 -4.204326322332869e-3 -8.251455008782313e-3c 1.1175837270643795e-3,-3.4395690382010083e-3 4.811885970581305e-3,-5.321910049397249e-3 8.251455008782313e-3 -4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.073412753178609,1.255761032686786 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.053767577864049,1.2634591289058517 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0480817121519608,1.3538758381841942 l -1.589328068695406e-2,-1.1547144328598385e-2 l 6.070693029674175e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,8.673617379884035e-19 l 6.070693029674174e-3,1.8683671996672768e-2 l -1.5893280686954066e-2,1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.054630103923481,1.3538758381841942 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.06599855718214,1.3361008031900383 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.052606539580256,1.3197959737493903 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.032961364265696,1.3274940699684559 c -2.1257705722600084e-3,-2.925872182728335e-3 -1.477160063276444e-3,-7.021037766257474e-3 1.448712119451891e-3 -9.146808338517482e-3c 2.925872182728335e-3,-2.1257705722600084e-3 7.021037766257474e-3,-1.477160063276444e-3 9.14680833851748e-3 1.4487121194518902e-3c 2.125770572260009e-3,2.9258721827283346e-3 1.4771600632764443e-3,7.021037766257473e-3 -1.4487121194518894e-3 9.14680833851748e-3c -2.9258721827283346e-3,2.125770572260009e-3 -7.021037766257473e-3,1.4771600632764448e-3 -9.146808338517482e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0342119958082314,1.3485565845211533 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1184463672165945,1.3819044638998816 l -1.5893280686954062e-2,1.1547144328598378e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l 6.070693029674175e-3,-1.8683671996672764e-2 l 1.964517531455978e-2,7.27017531900734e-19 l 6.0706930296741644e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1204699315598194,1.3756765732343241 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1070779139579354,1.359371743793676 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0874327386433755,1.3670698400127417 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.088683370185911,1.3881323545654392 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1091014783011603,1.39345160822848 c 0.0,3.6165769113279092e-3 -2.931814860192017e-3,6.548391771519927e-3 -6.548391771519925e-3 6.548391771519927e-3c -3.6165769113279092e-3,2.2145146691639725e-19 -6.548391771519927e-3,-2.9318148601920166e-3 -6.548391771519927e-3 -6.548391771519924e-3c -4.429029338327945e-19,-3.6165769113279092e-3 2.931814860192016e-3,-6.548391771519927e-3 6.548391771519924e-3 -6.548391771519927e-3c 3.6165769113279092e-3,-6.643544007491917e-19 6.548391771519927e-3,2.9318148601920157e-3 6.548391771519928e-3 6.548391771519924e-3Z" /></g></g></g><g></g><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.951918287848039,1.1199782032202106 l -5.447137437767964e-2,-3.9575770044285793e-2 l -5.447137437767964e-2,3.957577004428581e-2 l 2.0806213598353468e-2,6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,-6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.961740875505319,1.1334978352839342 l 6.070693029674173e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.154714432859838e-2 l 6.070693029674172e-3,1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9564431152763342,1.137346883393467 c 2.125770572260007e-3,2.925872182728337e-3 6.220936155789147e-3,3.574482691711905e-3 9.146808338517484e-3 1.4487121194518985e-3c 2.925872182728337e-3,-2.125770572260007e-3 3.5744826917119056e-3,-6.220936155789146e-3 1.448712119451899e-3 -9.146808338517482e-3c -2.1257705722600067e-3,-2.9258721827283376e-3 -6.220936155789146e-3,-3.574482691711906e-3 -9.14680833851748e-3 -1.4487121194518993e-3c -2.9258721827283376e-3,2.1257705722600067e-3 -3.574482691711906e-3,6.220936155789145e-3 -1.4487121194519028e-3 9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367979399617743,1.1296487871744014 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9380485715043096,1.108586272621704 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.958466679619559,1.103267018958663 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9698351328782178,1.121042053952819 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9212894865924055,1.1975327763465384 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l -1.5893280686954066e-2,1.1547144328598382e-2 l 6.070693029674175e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9159917263634207,1.1936837282370056 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.917242357905956,1.1726212136843082 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9376604660212053,1.1673019600212673 c 9.580613209554553e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.1795127878718526e-18 -6.548391771519928e-3,2.931814860192015e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.40096425478825e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.622415721704647e-18 6.548391771519928e-3,-2.931814860192014e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9490289192798642,1.1850769950154232 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9356369016779806,1.2013818244560712 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8478884720040791,1.1788491043498657 l 6.070693029674176e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672764e-2 l -1.5893280686954062e-2,-1.1547144328598387e-2 l -1.5893280686954062e-2,1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8499120363473038,1.1726212136843082 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.870330144462553,1.1673019600212673 c 9.580613209554553e-19,-3.6165769113279097e-3 -2.9318148601920157e-3,-6.5483917715199284e-3 -6.548391771519924e-3 -6.548391771519929e-3c -3.6165769113279097e-3,-1.1795127878718526e-18 -6.5483917715199284e-3,2.9318148601920153e-3 -6.548391771519929e-3 6.548391771519923e-3c -1.40096425478825e-18,3.6165769113279097e-3 2.931814860192015e-3,6.5483917715199284e-3 6.548391771519923e-3 6.548391771519929e-3c 3.6165769113279097e-3,1.622415721704647e-18 6.5483917715199284e-3,-2.9318148601920144e-3 6.54839177151993e-3 -6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.881698597721212,1.1850769950154232 c 3.4395690382010083e-3,-1.1175837270643802e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.11758372706438e-3,-3.4395690382010083e-3 -4.8118859705813056e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332869e-3c -3.4395690382010083e-3,1.1175837270643797e-3 -5.321910049397249e-3,4.811885970581305e-3 -4.204326322332869e-3 8.251455008782313e-3c 1.1175837270643795e-3,3.4395690382010083e-3 4.811885970581305e-3,5.321910049397249e-3 8.251455008782313e-3 4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8683065801193284,1.2013818244560712 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8486614048047685,1.1936837282370056 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8429755390926796,1.103267018958663 l -1.589328068695406e-2,1.1547144328598385e-2 l 6.070693029674175e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,-8.673617379884035e-19 l 6.070693029674174e-3,-1.8683671996672768e-2 l -1.5893280686954066e-2,-1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8495239308641995,1.103267018958663 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8608923841228584,1.121042053952819 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8475003665209748,1.137346883393467 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.827855191206415,1.1296487871744014 c -2.1257705722600084e-3,2.925872182728335e-3 -1.477160063276444e-3,7.021037766257474e-3 1.448712119451891e-3 9.146808338517482e-3c 2.925872182728335e-3,2.1257705722600084e-3 7.021037766257474e-3,1.477160063276444e-3 9.14680833851748e-3 -1.4487121194518902e-3c 2.125770572260009e-3,-2.9258721827283346e-3 1.4771600632764443e-3,-7.021037766257473e-3 -1.4487121194518894e-3 -9.14680833851748e-3c -2.9258721827283346e-3,-2.125770572260009e-3 -7.021037766257473e-3,-1.4771600632764448e-3 -9.146808338517482e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8291058227489503,1.108586272621704 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9133401941573134,1.0752383932429757 l -1.5893280686954062e-2,-1.1547144328598378e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l 6.070693029674175e-3,1.8683671996672764e-2 l 1.964517531455978e-2,-7.27017531900734e-19 l 6.0706930296741644e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.915363758500538,1.0814662839085332 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9019717408986545,1.0977711133491812 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8823265655840946,1.0900730171301156 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.88357719712663,1.0690105025774181 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9039953052418792,1.0636912489143773 c 0.0,-3.6165769113279092e-3 -2.931814860192017e-3,-6.548391771519927e-3 -6.548391771519925e-3 -6.548391771519927e-3c -3.6165769113279092e-3,-2.2145146691639725e-19 -6.548391771519927e-3,2.9318148601920166e-3 -6.548391771519927e-3 6.548391771519924e-3c -4.429029338327945e-19,3.6165769113279092e-3 2.931814860192016e-3,6.548391771519927e-3 6.548391771519924e-3 6.548391771519927e-3c 3.6165769113279092e-3,6.643544007491917e-19 6.548391771519927e-3,-2.9318148601920157e-3 6.548391771519928e-3 -6.548391771519924e-3Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.951918287848039,1.3371646539226467 l -5.447137437767964e-2,3.9575770044285793e-2 l -5.447137437767964e-2,-3.957577004428581e-2 l 2.0806213598353468e-2,-6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.961740875505319,1.323645021858923 l 6.070693029674173e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 l 6.070693029674172e-3,-1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9564431152763342,1.3197959737493903 c 2.125770572260007e-3,-2.925872182728337e-3 6.220936155789147e-3,-3.574482691711905e-3 9.146808338517484e-3 -1.4487121194518985e-3c 2.925872182728337e-3,2.125770572260007e-3 3.5744826917119056e-3,6.220936155789146e-3 1.448712119451899e-3 9.146808338517482e-3c -2.1257705722600067e-3,2.9258721827283376e-3 -6.220936155789146e-3,3.574482691711906e-3 -9.14680833851748e-3 1.4487121194518993e-3c -2.9258721827283376e-3,-2.1257705722600067e-3 -3.574482691711906e-3,-6.220936155789145e-3 -1.4487121194519028e-3 -9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367979399617743,1.3274940699684559 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9380485715043096,1.3485565845211533 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.958466679619559,1.3538758381841942 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9698351328782178,1.3361008031900383 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9212894865924055,1.2596100807963189 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l -1.5893280686954066e-2,-1.1547144328598382e-2 l 6.070693029674175e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9159917263634207,1.2634591289058517 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.917242357905956,1.2845216434585491 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9376604660212053,1.28984089712159 c 9.580613209554553e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.1795127878718526e-18 -6.548391771519928e-3,-2.931814860192015e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.40096425478825e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.622415721704647e-18 6.548391771519928e-3,2.931814860192014e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9490289192798642,1.272065862127434 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9356369016779806,1.255761032686786 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8478884720040791,1.2782937527929916 l 6.070693029674176e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672764e-2 l -1.5893280686954062e-2,1.1547144328598387e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8499120363473038,1.2845216434585491 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.870330144462553,1.28984089712159 c 9.580613209554553e-19,3.6165769113279097e-3 -2.9318148601920157e-3,6.5483917715199284e-3 -6.548391771519924e-3 6.548391771519929e-3c -3.6165769113279097e-3,1.1795127878718526e-18 -6.5483917715199284e-3,-2.9318148601920153e-3 -6.548391771519929e-3 -6.548391771519923e-3c -1.40096425478825e-18,-3.6165769113279097e-3 2.931814860192015e-3,-6.5483917715199284e-3 6.548391771519923e-3 -6.548391771519929e-3c 3.6165769113279097e-3,-1.622415721704647e-18 6.5483917715199284e-3,2.9318148601920144e-3 6.54839177151993e-3 6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.881698597721212,1.272065862127434 c 3.4395690382010083e-3,1.1175837270643802e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.11758372706438e-3,3.4395690382010083e-3 -4.8118859705813056e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332869e-3c -3.4395690382010083e-3,-1.1175837270643797e-3 -5.321910049397249e-3,-4.811885970581305e-3 -4.204326322332869e-3 -8.251455008782313e-3c 1.1175837270643795e-3,-3.4395690382010083e-3 4.811885970581305e-3,-5.321910049397249e-3 8.251455008782313e-3 -4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8683065801193284,1.255761032686786 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8486614048047685,1.2634591289058517 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8429755390926796,1.3538758381841942 l -1.589328068695406e-2,-1.1547144328598385e-2 l 6.070693029674175e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,8.673617379884035e-19 l 6.070693029674174e-3,1.8683671996672768e-2 l -1.5893280686954066e-2,1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8495239308641995,1.3538758381841942 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8608923841228584,1.3361008031900383 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8475003665209748,1.3197959737493903 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.827855191206415,1.3274940699684559 c -2.1257705722600084e-3,-2.925872182728335e-3 -1.477160063276444e-3,-7.021037766257474e-3 1.448712119451891e-3 -9.146808338517482e-3c 2.925872182728335e-3,-2.1257705722600084e-3 7.021037766257474e-3,-1.477160063276444e-3 9.14680833851748e-3 1.4487121194518902e-3c 2.125770572260009e-3,2.9258721827283346e-3 1.4771600632764443e-3,7.021037766257473e-3 -1.4487121194518894e-3 9.14680833851748e-3c -2.9258721827283346e-3,2.125770572260009e-3 -7.021037766257473e-3,1.4771600632764448e-3 -9.146808338517482e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8291058227489503,1.3485565845211533 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9133401941573134,1.3819044638998816 l -1.5893280686954062e-2,1.1547144328598378e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l 6.070693029674175e-3,-1.8683671996672764e-2 l 1.964517531455978e-2,7.27017531900734e-19 l 6.0706930296741644e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.915363758500538,1.3756765732343241 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9019717408986545,1.359371743793676 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8823265655840946,1.3670698400127417 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.88357719712663,1.3881323545654392 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9039953052418792,1.39345160822848 c 0.0,3.6165769113279092e-3 -2.931814860192017e-3,6.548391771519927e-3 -6.548391771519925e-3 6.548391771519927e-3c -3.6165769113279092e-3,2.2145146691639725e-19 -6.548391771519927e-3,-2.9318148601920166e-3 -6.548391771519927e-3 -6.548391771519924e-3c -4.429029338327945e-19,-3.6165769113279092e-3 2.931814860192016e-3,-6.548391771519927e-3 6.548391771519924e-3 -6.548391771519927e-3c 3.6165769113279092e-3,-6.643544007491917e-19 6.548391771519927e-3,2.9318148601920157e-3 6.548391771519928e-3 6.548391771519924e-3Z" /></g></g></g></g><g></g><g><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1570244609073197,0.8800217967797892 l -5.447137437767964e-2,3.9575770044285793e-2 l -5.447137437767964e-2,-3.957577004428581e-2 l 2.0806213598353468e-2,-6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1668470485645996,0.8665021647160659 l 6.070693029674173e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 l 6.070693029674172e-3,-1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.161549288335615,0.8626531166065331 c 2.125770572260007e-3,-2.925872182728337e-3 6.220936155789147e-3,-3.574482691711905e-3 9.146808338517484e-3 -1.4487121194518985e-3c 2.925872182728337e-3,2.125770572260007e-3 3.5744826917119056e-3,6.220936155789146e-3 1.448712119451899e-3 9.146808338517482e-3c -2.1257705722600067e-3,2.9258721827283376e-3 -6.220936155789146e-3,3.574482691711906e-3 -9.14680833851748e-3 1.4487121194518993e-3c -2.9258721827283376e-3,-2.1257705722600067e-3 -3.574482691711906e-3,-6.220936155789145e-3 -1.4487121194519028e-3 -9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.141904113021055,0.8703512128255987 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1431547445635903,0.8914137273782963 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.16357285267884,0.896732981041337 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.174941305937499,0.878957946047181 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1263956596516866,0.8024672236534615 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l -1.5893280686954066e-2,-1.1547144328598382e-2 l 6.070693029674175e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.121097899422702,0.8063162717629943 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1223485309652377,0.8273787863156918 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1427666390804867,0.8326980399787326 c 9.580613209554553e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.1795127878718526e-18 -6.548391771519928e-3,-2.931814860192015e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.40096425478825e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.622415721704647e-18 6.548391771519928e-3,2.931814860192014e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.154135092339146,0.8149230049845766 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1407430747372618,0.7986181755439287 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0529946450633596,0.8211508956501343 l 6.070693029674176e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672764e-2 l -1.5893280686954062e-2,1.1547144328598387e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0550182094065845,0.827378786315692 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.075436317521834,0.8326980399787327 c 9.580613209554553e-19,3.6165769113279097e-3 -2.9318148601920157e-3,6.5483917715199284e-3 -6.548391771519924e-3 6.548391771519929e-3c -3.6165769113279097e-3,1.1795127878718526e-18 -6.5483917715199284e-3,-2.9318148601920153e-3 -6.548391771519929e-3 -6.548391771519923e-3c -1.40096425478825e-18,-3.6165769113279097e-3 2.931814860192015e-3,-6.5483917715199284e-3 6.548391771519923e-3 -6.548391771519929e-3c 3.6165769113279097e-3,-1.622415721704647e-18 6.5483917715199284e-3,2.9318148601920144e-3 6.54839177151993e-3 6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.086804770780493,0.8149230049845767 c 3.4395690382010083e-3,1.1175837270643802e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.11758372706438e-3,3.4395690382010083e-3 -4.8118859705813056e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332869e-3c -3.4395690382010083e-3,-1.1175837270643797e-3 -5.321910049397249e-3,-4.811885970581305e-3 -4.204326322332869e-3 -8.251455008782313e-3c 1.1175837270643795e-3,-3.4395690382010083e-3 4.811885970581305e-3,-5.321910049397249e-3 8.251455008782313e-3 -4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.073412753178609,0.7986181755439288 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.053767577864049,0.8063162717629944 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0480817121519608,0.896732981041337 l -1.589328068695406e-2,-1.1547144328598385e-2 l 6.070693029674175e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,8.673617379884035e-19 l 6.070693029674174e-3,1.8683671996672768e-2 l -1.5893280686954066e-2,1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.054630103923481,0.896732981041337 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.06599855718214,0.878957946047181 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.052606539580256,0.8626531166065331 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.032961364265696,0.8703512128255987 c -2.1257705722600084e-3,-2.925872182728335e-3 -1.477160063276444e-3,-7.021037766257474e-3 1.448712119451891e-3 -9.146808338517482e-3c 2.925872182728335e-3,-2.1257705722600084e-3 7.021037766257474e-3,-1.477160063276444e-3 9.14680833851748e-3 1.4487121194518902e-3c 2.125770572260009e-3,2.9258721827283346e-3 1.4771600632764443e-3,7.021037766257473e-3 -1.4487121194518894e-3 9.14680833851748e-3c -2.9258721827283346e-3,2.125770572260009e-3 -7.021037766257473e-3,1.4771600632764448e-3 -9.146808338517482e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0342119958082314,0.8914137273782963 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1184463672165945,0.9247616067570245 l -1.5893280686954062e-2,1.1547144328598378e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l 6.070693029674175e-3,-1.8683671996672764e-2 l 1.964517531455978e-2,7.27017531900734e-19 l 6.0706930296741644e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1204699315598194,0.9185337160914668 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1070779139579354,0.9022288866508189 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0874327386433755,0.9099269828698845 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.088683370185911,0.9309894974225821 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1091014783011603,0.9363087510856228 c 0.0,3.6165769113279092e-3 -2.931814860192017e-3,6.548391771519927e-3 -6.548391771519925e-3 6.548391771519927e-3c -3.6165769113279092e-3,2.2145146691639725e-19 -6.548391771519927e-3,-2.9318148601920166e-3 -6.548391771519927e-3 -6.548391771519924e-3c -4.429029338327945e-19,-3.6165769113279092e-3 2.931814860192016e-3,-6.548391771519927e-3 6.548391771519924e-3 -6.548391771519927e-3c 3.6165769113279092e-3,-6.643544007491917e-19 6.548391771519927e-3,2.9318148601920157e-3 6.548391771519928e-3 6.548391771519924e-3Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1570244609073197,0.6628353460773534 l -5.447137437767964e-2,-3.9575770044285793e-2 l -5.447137437767964e-2,3.957577004428581e-2 l 2.0806213598353468e-2,6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,-6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1668470485645996,0.6763549781410767 l 6.070693029674173e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.154714432859838e-2 l 6.070693029674172e-3,1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.161549288335615,0.6802040262506095 c 2.125770572260007e-3,2.925872182728337e-3 6.220936155789147e-3,3.574482691711905e-3 9.146808338517484e-3 1.4487121194518985e-3c 2.925872182728337e-3,-2.125770572260007e-3 3.5744826917119056e-3,-6.220936155789146e-3 1.448712119451899e-3 -9.146808338517482e-3c -2.1257705722600067e-3,-2.9258721827283376e-3 -6.220936155789146e-3,-3.574482691711906e-3 -9.14680833851748e-3 -1.4487121194518993e-3c -2.9258721827283376e-3,2.1257705722600067e-3 -3.574482691711906e-3,6.220936155789145e-3 -1.4487121194519028e-3 9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.141904113021055,0.6725059300315439 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1431547445635903,0.6514434154788463 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.16357285267884,0.6461241618158056 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.174941305937499,0.6638991968099616 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1263956596516866,0.740389919203681 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l -1.5893280686954066e-2,1.1547144328598382e-2 l 6.070693029674175e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.121097899422702,0.7365408710941482 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1223485309652377,0.7154783565414506 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1427666390804867,0.7101591028784099 c 9.580613209554553e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.1795127878718526e-18 -6.548391771519928e-3,2.931814860192015e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.40096425478825e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.622415721704647e-18 6.548391771519928e-3,-2.931814860192014e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.154135092339146,0.7279341378725659 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1407430747372618,0.7442389673132138 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0529946450633596,0.7217062472070083 l 6.070693029674176e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672764e-2 l -1.5893280686954062e-2,-1.1547144328598387e-2 l -1.5893280686954062e-2,1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0550182094065845,0.7154783565414506 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.075436317521834,0.7101591028784099 c 9.580613209554553e-19,-3.6165769113279097e-3 -2.9318148601920157e-3,-6.5483917715199284e-3 -6.548391771519924e-3 -6.548391771519929e-3c -3.6165769113279097e-3,-1.1795127878718526e-18 -6.5483917715199284e-3,2.9318148601920153e-3 -6.548391771519929e-3 6.548391771519923e-3c -1.40096425478825e-18,3.6165769113279097e-3 2.931814860192015e-3,6.5483917715199284e-3 6.548391771519923e-3 6.548391771519929e-3c 3.6165769113279097e-3,1.622415721704647e-18 6.5483917715199284e-3,-2.9318148601920144e-3 6.54839177151993e-3 -6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.086804770780493,0.7279341378725659 c 3.4395690382010083e-3,-1.1175837270643802e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.11758372706438e-3,-3.4395690382010083e-3 -4.8118859705813056e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332869e-3c -3.4395690382010083e-3,1.1175837270643797e-3 -5.321910049397249e-3,4.811885970581305e-3 -4.204326322332869e-3 8.251455008782313e-3c 1.1175837270643795e-3,3.4395690382010083e-3 4.811885970581305e-3,5.321910049397249e-3 8.251455008782313e-3 4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.073412753178609,0.7442389673132138 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.053767577864049,0.7365408710941482 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.0480817121519608,0.6461241618158056 l -1.589328068695406e-2,1.1547144328598385e-2 l 6.070693029674175e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,-8.673617379884035e-19 l 6.070693029674174e-3,-1.8683671996672768e-2 l -1.5893280686954066e-2,-1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.054630103923481,0.6461241618158056 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.06599855718214,0.6638991968099616 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.052606539580256,0.6802040262506095 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.032961364265696,0.6725059300315439 c -2.1257705722600084e-3,2.925872182728335e-3 -1.477160063276444e-3,7.021037766257474e-3 1.448712119451891e-3 9.146808338517482e-3c 2.925872182728335e-3,2.1257705722600084e-3 7.021037766257474e-3,1.477160063276444e-3 9.14680833851748e-3 -1.4487121194518902e-3c 2.125770572260009e-3,-2.9258721827283346e-3 1.4771600632764443e-3,-7.021037766257473e-3 -1.4487121194518894e-3 -9.14680833851748e-3c -2.9258721827283346e-3,-2.125770572260009e-3 -7.021037766257473e-3,-1.4771600632764448e-3 -9.146808338517482e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0342119958082314,0.6514434154788463 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.1184463672165945,0.6180955361001181 l -1.5893280686954062e-2,-1.1547144328598378e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l 6.070693029674175e-3,1.8683671996672764e-2 l 1.964517531455978e-2,-7.27017531900734e-19 l 6.0706930296741644e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1204699315598194,0.6243234267656758 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1070779139579354,0.6406282562063237 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0874327386433755,0.6329301599872581 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.088683370185911,0.6118676454345605 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1091014783011603,0.6065483917715198 c 0.0,-3.6165769113279092e-3 -2.931814860192017e-3,-6.548391771519927e-3 -6.548391771519925e-3 -6.548391771519927e-3c -3.6165769113279092e-3,-2.2145146691639725e-19 -6.548391771519927e-3,2.9318148601920166e-3 -6.548391771519927e-3 6.548391771519924e-3c -4.429029338327945e-19,3.6165769113279092e-3 2.931814860192016e-3,6.548391771519927e-3 6.548391771519924e-3 6.548391771519927e-3c 3.6165769113279092e-3,6.643544007491917e-19 6.548391771519927e-3,-2.9318148601920157e-3 6.548391771519928e-3 -6.548391771519924e-3Z" /></g></g></g><g></g><g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.951918287848039,0.8800217967797892 l -5.447137437767964e-2,3.9575770044285793e-2 l -5.447137437767964e-2,-3.957577004428581e-2 l 2.0806213598353468e-2,-6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.961740875505319,0.8665021647160659 l 6.070693029674173e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598385e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 l 6.070693029674172e-3,-1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9564431152763342,0.8626531166065331 c 2.125770572260007e-3,-2.925872182728337e-3 6.220936155789147e-3,-3.574482691711905e-3 9.146808338517484e-3 -1.4487121194518985e-3c 2.925872182728337e-3,2.125770572260007e-3 3.5744826917119056e-3,6.220936155789146e-3 1.448712119451899e-3 9.146808338517482e-3c -2.1257705722600067e-3,2.9258721827283376e-3 -6.220936155789146e-3,3.574482691711906e-3 -9.14680833851748e-3 1.4487121194518993e-3c -2.9258721827283376e-3,-2.1257705722600067e-3 -3.574482691711906e-3,-6.220936155789145e-3 -1.4487121194519028e-3 -9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367979399617743,0.8703512128255987 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9380485715043096,0.8914137273782963 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.958466679619559,0.896732981041337 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9698351328782178,0.878957946047181 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9212894865924055,0.8024672236534615 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672768e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l -1.5893280686954066e-2,-1.1547144328598382e-2 l 6.070693029674175e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9159917263634207,0.8063162717629943 c -2.1257705722600093e-3,-2.925872182728335e-3 -1.4771600632764456e-3,-7.021037766257475e-3 1.4487121194518894e-3 -9.146808338517484e-3c 2.925872182728335e-3,-2.1257705722600093e-3 7.021037766257475e-3,-1.4771600632764456e-3 9.146808338517484e-3 1.4487121194518885e-3c 2.1257705722600097e-3,2.9258721827283346e-3 1.477160063276446e-3,7.021037766257474e-3 -1.4487121194518876e-3 9.146808338517482e-3c -2.9258721827283346e-3,2.1257705722600097e-3 -7.021037766257474e-3,1.4771600632764465e-3 -9.146808338517486e-3 -1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.917242357905956,0.8273787863156918 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9376604660212053,0.8326980399787326 c 9.580613209554553e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.1795127878718526e-18 -6.548391771519928e-3,-2.931814860192015e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.40096425478825e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.622415721704647e-18 6.548391771519928e-3,2.931814860192014e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9490289192798642,0.8149230049845766 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9356369016779806,0.7986181755439287 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8478884720040791,0.8211508956501343 l 6.070693029674176e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,1.8683671996672764e-2 l -1.5893280686954062e-2,1.1547144328598387e-2 l -1.5893280686954062e-2,-1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8499120363473038,0.827378786315692 c -3.439569038201008e-3,1.1175837270643826e-3 -7.133871281717935e-3,-7.647572841318548e-4 -8.251455008782318e-3 -4.204326322332861e-3c -1.1175837270643828e-3,-3.439569038201008e-3 7.647572841318544e-4,-7.133871281717935e-3 4.204326322332861e-3 -8.251455008782316e-3c 3.439569038201008e-3,-1.117583727064383e-3 7.133871281717935e-3,7.647572841318539e-4 8.251455008782316e-3 4.2043263223328605e-3c 1.1175837270643832e-3,3.439569038201008e-3 -7.647572841318535e-4,7.133871281717935e-3 -4.20432632233286e-3 8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.870330144462553,0.8326980399787327 c 9.580613209554553e-19,3.6165769113279097e-3 -2.9318148601920157e-3,6.5483917715199284e-3 -6.548391771519924e-3 6.548391771519929e-3c -3.6165769113279097e-3,1.1795127878718526e-18 -6.5483917715199284e-3,-2.9318148601920153e-3 -6.548391771519929e-3 -6.548391771519923e-3c -1.40096425478825e-18,-3.6165769113279097e-3 2.931814860192015e-3,-6.5483917715199284e-3 6.548391771519923e-3 -6.548391771519929e-3c 3.6165769113279097e-3,-1.622415721704647e-18 6.5483917715199284e-3,2.9318148601920144e-3 6.54839177151993e-3 6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.881698597721212,0.8149230049845767 c 3.4395690382010083e-3,1.1175837270643802e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.11758372706438e-3,3.4395690382010083e-3 -4.8118859705813056e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332869e-3c -3.4395690382010083e-3,-1.1175837270643797e-3 -5.321910049397249e-3,-4.811885970581305e-3 -4.204326322332869e-3 -8.251455008782313e-3c 1.1175837270643795e-3,-3.4395690382010083e-3 4.811885970581305e-3,-5.321910049397249e-3 8.251455008782313e-3 -4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8683065801193284,0.7986181755439288 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8486614048047685,0.8063162717629944 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8429755390926796,0.896732981041337 l -1.589328068695406e-2,-1.1547144328598385e-2 l 6.070693029674175e-3,-1.8683671996672768e-2 l 1.9645175314559775e-2,8.673617379884035e-19 l 6.070693029674174e-3,1.8683671996672768e-2 l -1.5893280686954066e-2,1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8495239308641995,0.896732981041337 c 8.383036558360235e-19,3.6165769113279092e-3 -2.9318148601920153e-3,6.548391771519928e-3 -6.548391771519923e-3 6.5483917715199284e-3c -3.6165769113279092e-3,1.0597551227524208e-18 -6.548391771519928e-3,-2.9318148601920153e-3 -6.5483917715199284e-3 -6.548391771519922e-3c -1.281206589668818e-18,-3.6165769113279092e-3 2.9318148601920144e-3,-6.548391771519928e-3 6.548391771519922e-3 -6.5483917715199284e-3c 3.6165769113279092e-3,-1.5026580565852152e-18 6.548391771519928e-3,2.9318148601920144e-3 6.548391771519929e-3 6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8608923841228584,0.878957946047181 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8475003665209748,0.8626531166065331 c 2.1257705722600075e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.5744826917119034e-3 9.146808338517482e-3 -1.4487121194518959e-3c 2.9258721827283363e-3,2.1257705722600075e-3 3.5744826917119034e-3,6.220936155789146e-3 1.4487121194518963e-3 9.14680833851748e-3c -2.125770572260007e-3,2.9258721827283367e-3 -6.220936155789146e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518967e-3c -2.9258721827283367e-3,-2.125770572260007e-3 -3.574482691711904e-3,-6.220936155789145e-3 -1.4487121194518976e-3 -9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.827855191206415,0.8703512128255987 c -2.1257705722600084e-3,-2.925872182728335e-3 -1.477160063276444e-3,-7.021037766257474e-3 1.448712119451891e-3 -9.146808338517482e-3c 2.925872182728335e-3,-2.1257705722600084e-3 7.021037766257474e-3,-1.477160063276444e-3 9.14680833851748e-3 1.4487121194518902e-3c 2.125770572260009e-3,2.9258721827283346e-3 1.4771600632764443e-3,7.021037766257473e-3 -1.4487121194518894e-3 9.14680833851748e-3c -2.9258721827283346e-3,2.125770572260009e-3 -7.021037766257473e-3,1.4771600632764448e-3 -9.146808338517482e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8291058227489503,0.8914137273782963 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9133401941573134,0.9247616067570245 l -1.5893280686954062e-2,1.1547144328598378e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l 6.070693029674175e-3,-1.8683671996672764e-2 l 1.964517531455978e-2,7.27017531900734e-19 l 6.0706930296741644e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.915363758500538,0.9185337160914668 c 3.4395690382010083e-3,1.1175837270643806e-3 5.3219100493972485e-3,4.811885970581306e-3 4.204326322332868e-3 8.251455008782313e-3c -1.1175837270643804e-3,3.4395690382010083e-3 -4.811885970581306e-3,5.3219100493972485e-3 -8.251455008782313e-3 4.204326322332868e-3c -3.4395690382010083e-3,-1.1175837270643802e-3 -5.3219100493972485e-3,-4.811885970581306e-3 -4.204326322332868e-3 -8.251455008782313e-3c 1.11758372706438e-3,-3.4395690382010083e-3 4.8118859705813056e-3,-5.3219100493972485e-3 8.251455008782313e-3 -4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9019717408986545,0.9022288866508189 c 2.125770572260008e-3,-2.9258721827283363e-3 6.220936155789147e-3,-3.574482691711903e-3 9.146808338517482e-3 -1.4487121194518954e-3c 2.9258721827283363e-3,2.125770572260008e-3 3.5744826917119034e-3,6.220936155789147e-3 1.4487121194518959e-3 9.146808338517482e-3c -2.1257705722600075e-3,2.9258721827283367e-3 -6.220936155789147e-3,3.5744826917119034e-3 -9.14680833851748e-3 1.4487121194518963e-3c -2.9258721827283367e-3,-2.1257705722600075e-3 -3.5744826917119034e-3,-6.220936155789146e-3 -1.4487121194518976e-3 -9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8823265655840946,0.9099269828698845 c -2.125770572260009e-3,-2.9258721827283354e-3 -1.477160063276444e-3,-7.021037766257475e-3 1.4487121194518915e-3 -9.146808338517484e-3c 2.9258721827283354e-3,-2.125770572260009e-3 7.021037766257475e-3,-1.477160063276444e-3 9.146808338517482e-3 1.4487121194518907e-3c 2.1257705722600093e-3,2.925872182728335e-3 1.4771600632764443e-3,7.021037766257475e-3 -1.4487121194518898e-3 9.146808338517482e-3c -2.925872182728335e-3,2.1257705722600093e-3 -7.021037766257475e-3,1.4771600632764448e-3 -9.146808338517484e-3 -1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.88357719712663,0.9309894974225821 c -3.439569038201008e-3,1.1175837270643813e-3 -7.1338712817179345e-3,-7.64757284131857e-4 -8.251455008782316e-3 -4.204326322332863e-3c -1.1175837270643815e-3,-3.439569038201008e-3 7.647572841318565e-4,-7.1338712817179345e-3 4.204326322332863e-3 -8.251455008782315e-3c 3.439569038201008e-3,-1.1175837270643817e-3 7.1338712817179345e-3,7.647572841318561e-4 8.251455008782315e-3 4.204326322332863e-3c 1.117583727064382e-3,3.439569038201008e-3 -7.647572841318557e-4,7.133871281717934e-3 -4.204326322332861e-3 8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9039953052418792,0.9363087510856228 c 0.0,3.6165769113279092e-3 -2.931814860192017e-3,6.548391771519927e-3 -6.548391771519925e-3 6.548391771519927e-3c -3.6165769113279092e-3,2.2145146691639725e-19 -6.548391771519927e-3,-2.9318148601920166e-3 -6.548391771519927e-3 -6.548391771519924e-3c -4.429029338327945e-19,-3.6165769113279092e-3 2.931814860192016e-3,-6.548391771519927e-3 6.548391771519924e-3 -6.548391771519927e-3c 3.6165769113279092e-3,-6.643544007491917e-19 6.548391771519927e-3,2.9318148601920157e-3 6.548391771519928e-3 6.548391771519924e-3Z" /></g></g></g><g></g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.951918287848039,0.6628353460773534 l -5.447137437767964e-2,-3.9575770044285793e-2 l -5.447137437767964e-2,3.957577004428581e-2 l 2.0806213598353468e-2,6.403494106260435e-2 h 6.733032155865233e-2 l 2.0806213598353482e-2,-6.403494106260436e-2 Z" /></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.961740875505319,0.6763549781410767 l 6.070693029674173e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598385e-2 l -1.5893280686954062e-2,1.154714432859838e-2 l 6.070693029674172e-3,1.868367199667277e-2 h 1.964517531455978e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9564431152763342,0.6802040262506095 c 2.125770572260007e-3,2.925872182728337e-3 6.220936155789147e-3,3.574482691711905e-3 9.146808338517484e-3 1.4487121194518985e-3c 2.925872182728337e-3,-2.125770572260007e-3 3.5744826917119056e-3,-6.220936155789146e-3 1.448712119451899e-3 -9.146808338517482e-3c -2.1257705722600067e-3,-2.9258721827283376e-3 -6.220936155789146e-3,-3.574482691711906e-3 -9.14680833851748e-3 -1.4487121194518993e-3c -2.9258721827283376e-3,2.1257705722600067e-3 -3.574482691711906e-3,6.220936155789145e-3 -1.4487121194519028e-3 9.146808338517484e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9367979399617743,0.6725059300315439 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9380485715043096,0.6514434154788463 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.958466679619559,0.6461241618158056 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9698351328782178,0.6638991968099616 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9212894865924055,0.740389919203681 l 1.9645175314559775e-2,-1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672768e-2 l -1.589328068695406e-2,-1.1547144328598383e-2 l -1.5893280686954066e-2,1.1547144328598382e-2 l 6.070693029674175e-3,1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9159917263634207,0.7365408710941482 c -2.1257705722600093e-3,2.925872182728335e-3 -1.4771600632764456e-3,7.021037766257475e-3 1.4487121194518894e-3 9.146808338517484e-3c 2.925872182728335e-3,2.1257705722600093e-3 7.021037766257475e-3,1.4771600632764456e-3 9.146808338517484e-3 -1.4487121194518885e-3c 2.1257705722600097e-3,-2.9258721827283346e-3 1.477160063276446e-3,-7.021037766257474e-3 -1.4487121194518876e-3 -9.146808338517482e-3c -2.9258721827283346e-3,-2.1257705722600097e-3 -7.021037766257474e-3,-1.4771600632764465e-3 -9.146808338517486e-3 1.4487121194518872e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.917242357905956,0.7154783565414506 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9376604660212053,0.7101591028784099 c 9.580613209554553e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.1795127878718526e-18 -6.548391771519928e-3,2.931814860192015e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.40096425478825e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.622415721704647e-18 6.548391771519928e-3,-2.931814860192014e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9490289192798642,0.7279341378725659 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9356369016779806,0.7442389673132138 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8478884720040791,0.7217062472070083 l 6.070693029674176e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,1.734723475976807e-18 l 6.070693029674175e-3,-1.8683671996672764e-2 l -1.5893280686954062e-2,-1.1547144328598387e-2 l -1.5893280686954062e-2,1.154714432859838e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8499120363473038,0.7154783565414506 c -3.439569038201008e-3,-1.1175837270643826e-3 -7.133871281717935e-3,7.647572841318548e-4 -8.251455008782318e-3 4.204326322332861e-3c -1.1175837270643828e-3,3.439569038201008e-3 7.647572841318544e-4,7.133871281717935e-3 4.204326322332861e-3 8.251455008782316e-3c 3.439569038201008e-3,1.117583727064383e-3 7.133871281717935e-3,-7.647572841318539e-4 8.251455008782316e-3 -4.2043263223328605e-3c 1.1175837270643832e-3,-3.439569038201008e-3 -7.647572841318535e-4,-7.133871281717935e-3 -4.20432632233286e-3 -8.251455008782316e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.870330144462553,0.7101591028784099 c 9.580613209554553e-19,-3.6165769113279097e-3 -2.9318148601920157e-3,-6.5483917715199284e-3 -6.548391771519924e-3 -6.548391771519929e-3c -3.6165769113279097e-3,-1.1795127878718526e-18 -6.5483917715199284e-3,2.9318148601920153e-3 -6.548391771519929e-3 6.548391771519923e-3c -1.40096425478825e-18,3.6165769113279097e-3 2.931814860192015e-3,6.5483917715199284e-3 6.548391771519923e-3 6.548391771519929e-3c 3.6165769113279097e-3,1.622415721704647e-18 6.5483917715199284e-3,-2.9318148601920144e-3 6.54839177151993e-3 -6.548391771519923e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.881698597721212,0.7279341378725659 c 3.4395690382010083e-3,-1.1175837270643802e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.11758372706438e-3,-3.4395690382010083e-3 -4.8118859705813056e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332869e-3c -3.4395690382010083e-3,1.1175837270643797e-3 -5.321910049397249e-3,4.811885970581305e-3 -4.204326322332869e-3 8.251455008782313e-3c 1.1175837270643795e-3,3.4395690382010083e-3 4.811885970581305e-3,5.321910049397249e-3 8.251455008782313e-3 4.20432632233287e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8683065801193284,0.7442389673132138 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8486614048047685,0.7365408710941482 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.8429755390926796,0.6461241618158056 l -1.589328068695406e-2,1.1547144328598385e-2 l 6.070693029674175e-3,1.8683671996672768e-2 l 1.9645175314559775e-2,-8.673617379884035e-19 l 6.070693029674174e-3,-1.8683671996672768e-2 l -1.5893280686954066e-2,-1.1547144328598383e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8495239308641995,0.6461241618158056 c 8.383036558360235e-19,-3.6165769113279092e-3 -2.9318148601920153e-3,-6.548391771519928e-3 -6.548391771519923e-3 -6.5483917715199284e-3c -3.6165769113279092e-3,-1.0597551227524208e-18 -6.548391771519928e-3,2.9318148601920153e-3 -6.5483917715199284e-3 6.548391771519922e-3c -1.281206589668818e-18,3.6165769113279092e-3 2.9318148601920144e-3,6.548391771519928e-3 6.548391771519922e-3 6.5483917715199284e-3c 3.6165769113279092e-3,1.5026580565852152e-18 6.548391771519928e-3,-2.9318148601920144e-3 6.548391771519929e-3 -6.548391771519922e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8608923841228584,0.6638991968099616 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8475003665209748,0.6802040262506095 c 2.1257705722600075e-3,2.9258721827283363e-3 6.220936155789147e-3,3.5744826917119034e-3 9.146808338517482e-3 1.4487121194518959e-3c 2.9258721827283363e-3,-2.1257705722600075e-3 3.5744826917119034e-3,-6.220936155789146e-3 1.4487121194518963e-3 -9.14680833851748e-3c -2.125770572260007e-3,-2.9258721827283367e-3 -6.220936155789146e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518967e-3c -2.9258721827283367e-3,2.125770572260007e-3 -3.574482691711904e-3,6.220936155789145e-3 -1.4487121194518976e-3 9.14680833851748e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.827855191206415,0.6725059300315439 c -2.1257705722600084e-3,2.925872182728335e-3 -1.477160063276444e-3,7.021037766257474e-3 1.448712119451891e-3 9.146808338517482e-3c 2.925872182728335e-3,2.1257705722600084e-3 7.021037766257474e-3,1.477160063276444e-3 9.14680833851748e-3 -1.4487121194518902e-3c 2.125770572260009e-3,-2.9258721827283346e-3 1.4771600632764443e-3,-7.021037766257473e-3 -1.4487121194518894e-3 -9.14680833851748e-3c -2.9258721827283346e-3,-2.125770572260009e-3 -7.021037766257473e-3,-1.4771600632764448e-3 -9.146808338517482e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8291058227489503,0.6514434154788463 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.9133401941573134,0.6180955361001181 l -1.5893280686954062e-2,-1.1547144328598378e-2 l -1.589328068695406e-2,1.1547144328598383e-2 l 6.070693029674175e-3,1.8683671996672764e-2 l 1.964517531455978e-2,-7.27017531900734e-19 l 6.0706930296741644e-3,-1.868367199667277e-2 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.915363758500538,0.6243234267656758 c 3.4395690382010083e-3,-1.1175837270643806e-3 5.3219100493972485e-3,-4.811885970581306e-3 4.204326322332868e-3 -8.251455008782313e-3c -1.1175837270643804e-3,-3.4395690382010083e-3 -4.811885970581306e-3,-5.3219100493972485e-3 -8.251455008782313e-3 -4.204326322332868e-3c -3.4395690382010083e-3,1.1175837270643802e-3 -5.3219100493972485e-3,4.811885970581306e-3 -4.204326322332868e-3 8.251455008782313e-3c 1.11758372706438e-3,3.4395690382010083e-3 4.8118859705813056e-3,5.3219100493972485e-3 8.251455008782313e-3 4.204326322332868e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9019717408986545,0.6406282562063237 c 2.125770572260008e-3,2.9258721827283363e-3 6.220936155789147e-3,3.574482691711903e-3 9.146808338517482e-3 1.4487121194518954e-3c 2.9258721827283363e-3,-2.125770572260008e-3 3.5744826917119034e-3,-6.220936155789147e-3 1.4487121194518959e-3 -9.146808338517482e-3c -2.1257705722600075e-3,-2.9258721827283367e-3 -6.220936155789147e-3,-3.5744826917119034e-3 -9.14680833851748e-3 -1.4487121194518963e-3c -2.9258721827283367e-3,2.1257705722600075e-3 -3.5744826917119034e-3,6.220936155789146e-3 -1.4487121194518976e-3 9.146808338517482e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8823265655840946,0.6329301599872581 c -2.125770572260009e-3,2.9258721827283354e-3 -1.477160063276444e-3,7.021037766257475e-3 1.4487121194518915e-3 9.146808338517484e-3c 2.9258721827283354e-3,2.125770572260009e-3 7.021037766257475e-3,1.477160063276444e-3 9.146808338517482e-3 -1.4487121194518907e-3c 2.1257705722600093e-3,-2.925872182728335e-3 1.4771600632764443e-3,-7.021037766257475e-3 -1.4487121194518898e-3 -9.146808338517482e-3c -2.925872182728335e-3,-2.1257705722600093e-3 -7.021037766257475e-3,-1.4771600632764448e-3 -9.146808338517484e-3 1.448712119451889e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.88357719712663,0.6118676454345605 c -3.439569038201008e-3,-1.1175837270643813e-3 -7.1338712817179345e-3,7.64757284131857e-4 -8.251455008782316e-3 4.204326322332863e-3c -1.1175837270643815e-3,3.439569038201008e-3 7.647572841318565e-4,7.1338712817179345e-3 4.204326322332863e-3 8.251455008782315e-3c 3.439569038201008e-3,1.1175837270643817e-3 7.1338712817179345e-3,-7.647572841318561e-4 8.251455008782315e-3 -4.204326322332863e-3c 1.117583727064382e-3,-3.439569038201008e-3 -7.647572841318557e-4,-7.133871281717934e-3 -4.204326322332861e-3 -8.251455008782315e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.9039953052418792,0.6065483917715198 c 0.0,-3.6165769113279092e-3 -2.931814860192017e-3,-6.548391771519927e-3 -6.548391771519925e-3 -6.548391771519927e-3c -3.6165769113279092e-3,-2.2145146691639725e-19 -6.548391771519927e-3,2.9318148601920166e-3 -6.548391771519927e-3 6.548391771519924e-3c -4.429029338327945e-19,3.6165769113279092e-3 2.931814860192016e-3,6.548391771519927e-3 6.548391771519924e-3 6.548391771519927e-3c 3.6165769113279092e-3,6.643544007491917e-19 6.548391771519927e-3,-2.9318148601920157e-3 6.548391771519928e-3 -6.548391771519924e-3Z" /></g></g></g></g></g></g><g><path d="M 1.5,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M 1.3603240504292664,1.0323197983663237 l -9.828700801013893e-3,-0.11861477889739917 l -4.781031042893223e-2,-0.10899652906860789 l -8.061093106847349e-2,-8.756681405982833e-2 l -0.10467610651927518,-5.66478760085505e-2 l -0.1173980016115717,-1.9590261609385182e-2 l -0.11739800161157163,1.9590261609385283e-2 l -0.1046761065192751,5.6647876008550535e-2 l -8.061093106847352e-2,8.756681405982841e-2 l -4.781031042893212e-2,0.10899652906860793 l -9.828700801013874e-3,0.11861477889739921 l 2.921800106670073e-2,0.1153792769347296 l 6.509847915483986e-2,9.964064002223987e-2 l 9.39245269195732e-2,7.310439367951231e-2 l 0.11257239480337561,3.8646151950067126e-2 h 0.11902129696955394 l 0.11257239480337561,-3.864615195006716e-2 l 9.392452691957322e-2,-7.31043936795123e-2 l 6.509847915483996e-2,-9.964064002224003e-2 l 2.921800106670068e-2,-0.1153792769347297 Z" /></clipPath><g stroke="rgb(177,98,98)" stroke-opacity="1.0" fill="rgb(177,98,98)" fill-opacity="1.0"><path d="M 1.3603240504292666,1.3615558574150857 l -4.000400571127676e-17,-0.7181867222303202 h -0.3603240504292664 l -4.000400571127676e-17,0.7181867222303202 h 0.3603240504292665 Z" /></g><g stroke="rgb(255,89,89)" stroke-opacity="1.0" fill="rgb(255,89,89)" fill-opacity="1.0"><path d="M 1.0,1.3615558574150857 l -4.000400571127676e-17,-0.7181867222303202 h -0.3603240504292664 l -4.000400571127676e-17,0.7181867222303202 h 0.3603240504292665 Z" /></g></g></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.154922133212697,0.6733758509819602 c 7.114560120555232e-3,-2.0724005633945206e-2 -3.918075317157597e-3,-4.329162213059237e-2 -2.4642080951102797e-2 -5.0406182251147603e-2c -2.0724005633945206e-2,-7.114560120555233e-3 -4.329162213059237e-2,3.918075317157594e-3 -5.0406182251147603e-2 2.464208095110279e-2c -7.114560120555235e-3,2.0724005633945206e-2 3.91807531715759e-3,4.329162213059237e-2 2.464208095110279e-2 5.0406182251147603e-2c 2.0724005633945206e-2,7.114560120555236e-3 4.329162213059237e-2,-3.91807531715759e-3 5.040618225114761e-2 -2.464208095110279e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2533822837707045,0.7415098075669925 c 1.3458147258273764e-2,-1.7291027950917373e-2 1.035098353756374e-2,-4.221815960808807e-2 -6.9400444133536285e-3 -5.567630686636183e-2c -1.7291027950917373e-2,-1.3458147258273765e-2 -4.221815960808807e-2,-1.0350983537563741e-2 -5.567630686636183e-2 6.9400444133536215e-3c -1.3458147258273765e-2,1.7291027950917373e-2 -1.0350983537563743e-2,4.221815960808807e-2 6.9400444133536215e-3 5.5676306866361824e-2c 1.729102795091737e-2,1.3458147258273767e-2 4.221815960808807e-2,1.0350983537563745e-2 5.567630686636184e-2 -6.940044413353615e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3243845322509338,0.8379220370743968 c 1.834333531588767e-2,-1.198429909146529e-2 2.3498352713932018e-2,-3.656970440980565e-2 1.151405362246673e-2 -5.4913039725693315e-2c -1.1984299091465289e-2,-1.834333531588767e-2 -3.656970440980565e-2,-2.349835271393202e-2 -5.491303972569331e-2 -1.1514053622466734e-2c -1.834333531588767e-2,1.1984299091465289e-2 -2.3498352713932025e-2,3.656970440980564e-2 -1.1514053622466738e-2 5.491303972569331e-2c 1.1984299091465287e-2,1.8343335315887672e-2 3.656970440980564e-2,2.3498352713932025e-2 5.491303972569332e-2 1.1514053622466741e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3602346833171528,0.9521647784471678 c 2.1240738365851664e-2,-5.378885469892872e-3 3.4099310759235876e-2,-2.6958354301291752e-2 2.8720425289343002e-2 -4.8199092667143416e-2c -5.378885469892871e-3,-2.1240738365851664e-2 -2.6958354301291752e-2,-3.4099310759235876e-2 -4.819909266714341e-2 -2.8720425289343005e-2c -2.1240738365851664e-2,5.378885469892869e-3 -3.4099310759235876e-2,2.695835430129175e-2 -2.8720425289343005e-2 4.819909266714341e-2c 5.3788854698928685e-3,2.1240738365851664e-2 2.695835430129175e-2,3.4099310759235876e-2 4.819909266714341e-2 2.8720425289343016e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3570478168289284,1.0718580579987904 c 2.183637782986167e-2,1.8094138543498946e-3 4.1005079378454476e-2,-1.4425648202266763e-2 4.2814493232804375e-2 -3.626202603212843e-2c 1.809413854349896e-3,-2.183637782986167e-2 -1.4425648202266763e-2,-4.1005079378454476e-2 -3.626202603212842e-2 -4.2814493232804375e-2c -2.183637782986167e-2,-1.8094138543498972e-3 -4.1005079378454476e-2,1.442564820226676e-2 -4.2814493232804375e-2 3.6262026032128414e-2c -1.8094138543498985e-3,2.183637782986167e-2 1.4425648202266756e-2,4.1005079378454476e-2 3.626202603212842e-2 4.2814493232804396e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3151692792195884,1.1840312516572562 c 2.0065706929693644e-2,8.801635111525133e-3 4.34673113876549e-2,-3.2969928353158637e-4 5.226894649918004e-2 -2.0395406213225227e-2c 8.801635111525135e-3,-2.0065706929693644e-2 -3.2969928353158637e-4,-4.34673113876549e-2 -2.039540621322522e-2 -5.2268946499180034e-2c -2.0065706929693644e-2,-8.801635111525135e-3 -4.34673113876549e-2,3.296992835315829e-4 -5.2268946499180034e-2 2.039540621322522e-2c -8.801635111525137e-3,2.0065706929693644e-2 3.296992835315829e-4,4.34673113876549e-2 2.0395406213225213e-2 5.226894649918004e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2391372598515678,1.2765286533432363 c 1.6120605332170634e-2,1.4840062632926424e-2 4.121918574317422e-2,1.3801977668385722e-2 5.605924837610064e-2 -2.318627663784909e-3c 1.4840062632926426e-2,-1.6120605332170634e-2 1.3801977668385723e-2,-4.1219185743174215e-2 -2.3186276637849057e-3 -5.6059248376100636e-2c -1.612060533217063e-2,-1.4840062632926426e-2 -4.1219185743174215e-2,-1.3801977668385725e-2 -5.6059248376100636e-2 2.3186276637849022e-3c -1.4840062632926428e-2,1.612060533217063e-2 -1.3801977668385727e-2,4.1219185743174215e-2 2.3186276637848988e-3 5.605924837610064e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1371910077817275,1.3393267343389892 c 1.0428586009942715e-2,1.9270339100753122e-2 3.450432174185544e-2,2.643799618018425e-2 5.3774660842608554e-2 1.6009410170241538e-2c 1.9270339100753122e-2,-1.0428586009942713e-2 2.6437996180184255e-2,-3.4504321741855436e-2 1.600941017024154e-2 -5.3774660842608554e-2c -1.0428586009942713e-2,-1.9270339100753122e-2 -3.4504321741855436e-2,-2.6437996180184255e-2 -5.3774660842608554e-2 -1.600941017024154e-2c -1.9270339100753126e-2,1.0428586009942712e-2 -2.6437996180184255e-2,3.4504321741855436e-2 -1.6009410170241545e-2 5.3774660842608554e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0203779812809197,1.3656203481560012 c 3.606467577353048e-3,2.1612375316893993e-2 2.405037909009167e-2,3.620904757808187e-2 4.566275440698567e-2 3.2602580000728826e-2c 2.1612375316893993e-2,-3.606467577353047e-3 3.620904757808187e-2,-2.405037909009167e-2 3.2602580000728826e-2 -4.566275440698566e-2c -3.6064675773530455e-3,-2.1612375316893993e-2 -2.4050379090091667e-2,-3.620904757808187e-2 -4.566275440698565e-2 -3.2602580000728826e-2c -2.1612375316893993e-2,3.606467577353044e-3 -3.620904757808187e-2,2.4050379090091663e-2 -3.260258000072884e-2 4.566275440698566e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9013566843113657,1.3525601737497444 c -3.6064675773530533e-3,2.161237531689399e-2 1.0990204683834808e-2,4.205628682963262e-2 3.26025800007288e-2 4.5662754406985674e-2c 2.161237531689399e-2,3.6064675773530546e-3 4.205628682963262e-2,-1.0990204683834808e-2 4.5662754406985674e-2 -3.260258000072879e-2c 3.606467577353056e-3,-2.161237531689399e-2 -1.0990204683834805e-2,-4.205628682963262e-2 -3.2602580000728784e-2 -4.5662754406985674e-2c -2.161237531689399e-2,-3.606467577353057e-3 -4.205628682963262e-2,1.0990204683834805e-2 -4.566275440698568e-2 3.260258000072879e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7930249212054223,1.301561483666622 c -1.0428586009942719e-2,1.927033910075312e-2 -3.2609289305116e-3,4.3346074832665844e-2 1.6009410170241514e-2 5.377466084260856e-2c 1.927033910075312e-2,1.042858600994272e-2 4.3346074832665844e-2,3.2609289305116033e-3 5.3774660842608554e-2 -1.6009410170241507e-2c 1.042858600994272e-2,-1.927033910075312e-2 3.260928930511605e-3,-4.3346074832665844e-2 -1.6009410170241507e-2 -5.3774660842608554e-2c -1.9270339100753115e-2,-1.0428586009942722e-2 -4.334607483266584e-2,-3.2609289305116067e-3 -5.377466084260857e-2 1.6009410170241503e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7071221194361164,1.2181507773033506 c -1.6120605332170645e-2,1.4840062632926414e-2 -1.7158690296711375e-2,3.9938643043929994e-2 -2.3186276637849647e-3 5.605924837610064e-2c 1.4840062632926412e-2,1.6120605332170645e-2 3.9938643043929994e-2,1.7158690296711375e-2 5.6059248376100636e-2 2.318627663784968e-3c 1.612060533217065e-2,-1.4840062632926412e-2 1.7158690296711375e-2,-3.9938643043929994e-2 2.318627663784968e-3 -5.605924837610063e-2c -1.484006263292641e-2,-1.612060533217065e-2 -3.9938643043929994e-2,-1.715869029671138e-2 -5.6059248376100636e-2 -2.318627663784982e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.652957180494457,1.1113668989448509 c -2.0065706929693648e-2,8.801635111525121e-3 -2.9197041324750386e-2,3.220323956948637e-2 -2.039540621322527e-2 5.226894649918001e-2c 8.80163511152512e-3,2.0065706929693648e-2 3.220323956948637e-2,2.9197041324750386e-2 5.226894649918001e-2 2.0395406213225272e-2c 2.0065706929693648e-2,-8.80163511152512e-3 2.919704132475039e-2,-3.220323956948637e-2 2.0395406213225272e-2 -5.226894649918001e-2c -8.801635111525118e-3,-2.0065706929693648e-2 -3.220323956948637e-2,-2.919704132475039e-2 -5.226894649918001e-2 -2.0395406213225276e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6363997159703957,0.9927815387338573 c -2.183637782986167e-2,1.8094138543498844e-3 -3.807143988647834e-2,2.097811540294268e-2 -3.6262026032128455e-2 4.281449323280435e-2c 1.809413854349883e-3,2.183637782986167e-2 2.097811540294268e-2,3.807143988647834e-2 4.281449323280434e-2 3.6262026032128455e-2c 2.183637782986167e-2,-1.8094138543498818e-3 3.807143988647834e-2,-2.0978115402942678e-2 3.6262026032128455e-2 -4.281449323280433e-2c -1.8094138543498805e-3,-2.183637782986167e-2 -2.0978115402942674e-2,-3.807143988647834e-2 -4.281449323280434e-2 -3.6262026032128476e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6592439840606477,0.8752452604906814 c -2.124073836585166e-2,-5.3788854698928815e-3 -4.282020719725055e-2,7.4796869234913105e-3 -4.819909266714343e-2 2.872042528934297e-2c -5.378885469892882e-3,2.124073836585166e-2 7.4796869234913105e-3,4.282020719725055e-2 2.8720425289342964e-2 4.819909266714343e-2c 2.124073836585166e-2,5.378885469892884e-3 4.282020719725055e-2,-7.479686923491307e-3 4.819909266714343e-2 -2.8720425289342964e-2c 5.378885469892885e-3,-2.124073836585166e-2 -7.479686923491307e-3,-4.282020719725055e-2 -2.8720425289342964e-2 -4.819909266714344e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.719014453852293,0.7714949437262366 c -1.8343335315887666e-2,-1.1984299091465301e-2 -4.292874063422803e-2,-6.829281693420964e-3 -5.491303972569333e-2 1.1514053622466696e-2c -1.1984299091465303e-2,1.8343335315887666e-2 -6.829281693420968e-3,4.2928740634228024e-2 1.1514053622466689e-2 5.491303972569332e-2c 1.8343335315887666e-2,1.1984299091465303e-2 4.2928740634228024e-2,6.8292816934209695e-3 5.491303972569332e-2 -1.1514053622466689e-2c 1.1984299091465304e-2,-1.8343335315887662e-2 6.829281693420971e-3,-4.2928740634228024e-2 -1.1514053622466686e-2 -5.4913039725693336e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.809234067509011,0.6927735451139843 c -1.3458147258273758e-2,-1.729102795091738e-2 -3.838527891544446e-2,-2.039819167162742e-2 -5.567630686636184e-2 -6.940044413353667e-3c -1.729102795091738e-2,1.3458147258273757e-2 -2.0398191671627423e-2,3.838527891544446e-2 -6.940044413353667e-3 5.5676306866361824e-2c 1.3458147258273757e-2,1.729102795091738e-2 3.838527891544445e-2,2.0398191671627423e-2 5.5676306866361824e-2 6.94004441335367e-3c 1.7291027950917384e-2,-1.3458147258273755e-2 2.0398191671627423e-2,-3.838527891544445e-2 6.940044413353677e-3 -5.567630686636183e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9201261299895536,0.6476117496819155 c -7.114560120555225e-3,-2.0724005633945206e-2 -2.9682176617202388e-2,-3.175664107165804e-2 -5.040618225114759e-2 -2.464208095110282e-2c -2.0724005633945206e-2,7.1145601205552245e-3 -3.175664107165804e-2,2.9682176617202384e-2 -2.464208095110282e-2 5.040618225114758e-2c 7.114560120555223e-3,2.0724005633945206e-2 2.968217661720238e-2,3.175664107165804e-2 5.040618225114758e-2 2.4642080951102825e-2c 2.0724005633945206e-2,-7.114560120555222e-3 3.175664107165805e-2,-2.968217661720238e-2 2.4642080951102832e-2 -5.040618225114758e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.039673765656518,0.6409035387225526 c 0.0,-2.191121574045556e-2 -1.776254991606242e-2,-3.9673765656517986e-2 -3.967376565651798e-2 -3.9673765656517986e-2c -2.191121574045556e-2,-1.3416750110988001e-18 -3.9673765656517986e-2,1.776254991606242e-2 -3.9673765656517986e-2 3.967376565651797e-2c -2.6833500221976003e-18,2.191121574045556e-2 1.7762549916062416e-2,3.9673765656517986e-2 3.9673765656517965e-2 3.9673765656517986e-2c 2.191121574045556e-2,4.0250250332964004e-18 3.9673765656517986e-2,-1.7762549916062412e-2 3.967376565651799e-2 -3.967376565651797e-2Z" /></g></g></g><path d="M 0.5000000000000001,1.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4,1.2285714285714286 c 0.0,9.467738568527889e-2 -7.675118574329254e-2,0.17142857142857146 -0.17142857142857143 0.17142857142857146c -9.467738568527889e-2,5.797317866555811e-18 -0.17142857142857146,-7.675118574329254e-2 -0.17142857142857146 -0.1714285714285714c -1.1594635733111623e-17,-9.467738568527889e-2 7.675118574329252e-2,-0.17142857142857146 0.17142857142857137 -0.17142857142857146c 9.467738568527889e-2,-1.7391953599667434e-17 0.17142857142857146,7.675118574329251e-2 0.17142857142857149 0.1714285714285714Z" /></g><g></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4,0.7714285714285715 c 0.0,-9.467738568527889e-2 -7.675118574329254e-2,-0.17142857142857146 -0.17142857142857143 -0.17142857142857146c -9.467738568527889e-2,-5.797317866555811e-18 -0.17142857142857146,7.675118574329254e-2 -0.17142857142857146 0.1714285714285714c -1.1594635733111623e-17,9.467738568527889e-2 7.675118574329252e-2,0.17142857142857146 0.17142857142857137 0.17142857142857146c 9.467738568527889e-2,1.7391953599667434e-17 0.17142857142857146,-7.675118574329251e-2 0.17142857142857149 -0.1714285714285714Z" /></g></g><g></g><g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -5.7142857142857134e-2,1.2285714285714286 c 0.0,9.467738568527889e-2 -7.675118574329254e-2,0.17142857142857146 -0.17142857142857143 0.17142857142857146c -9.467738568527889e-2,5.797317866555811e-18 -0.17142857142857146,-7.675118574329254e-2 -0.17142857142857146 -0.1714285714285714c -1.1594635733111623e-17,-9.467738568527889e-2 7.675118574329252e-2,-0.17142857142857146 0.17142857142857137 -0.17142857142857146c 9.467738568527889e-2,-1.7391953599667434e-17 0.17142857142857146,7.675118574329251e-2 0.17142857142857149 0.1714285714285714Z" /></g><g></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -5.7142857142857134e-2,0.7714285714285715 c 0.0,-9.467738568527889e-2 -7.675118574329254e-2,-0.17142857142857146 -0.17142857142857143 -0.17142857142857146c -9.467738568527889e-2,-5.797317866555811e-18 -0.17142857142857146,7.675118574329254e-2 -0.17142857142857146 0.1714285714285714c -1.1594635733111623e-17,9.467738568527889e-2 7.675118574329252e-2,0.17142857142857146 0.17142857142857137 0.17142857142857146c 9.467738568527889e-2,1.7391953599667434e-17 0.17142857142857146,-7.675118574329251e-2 0.17142857142857149 -0.1714285714285714Z" /></g></g></g></g><g><path d="M 2.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.2832592564960654,-6.359980500191303e-2 l -0.2832592564960656,-0.20579989629557036 l -0.28325925649606554,0.20579989629557044 l 0.10819540835347262,0.3329912270874365 l 0.350127696285186,-1.2957327665825914e-17 l 0.10819540835347247,-0.33299122708743656 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.31932439261389,4.739727069389929e-2 c 6.1301992182611294e-2,-1.9918224678446044e-2 9.485016425643408e-2,-8.576021963102509e-2 7.493193957798804e-2 -0.14706221181363638c -1.991822467844604e-2,-6.1301992182611294e-2 -8.576021963102509e-2,-9.485016425643408e-2 -0.14706221181363635 -7.493193957798805e-2c -6.1301992182611294e-2,1.9918224678446037e-2 -9.485016425643408e-2,8.576021963102509e-2 -7.493193957798805e-2 0.14706221181363635c 1.9918224678446034e-2,6.13019921826113e-2 8.576021963102508e-2,9.485016425643408e-2 0.14706221181363638 7.493193957798808e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.0806440959772377,0.3379913875173804 c 3.788671474693412e-2,5.214658920372873e-2 0.11087312839348329,6.370650148043254e-2 0.163019717597212 2.5819786733498426e-2c 5.214658920372873e-2,-3.788671474693412e-2 6.370650148043254e-2,-0.11087312839348329 2.581978673349844e-2 -0.163019717597212c -3.7886714746934114e-2,-5.2146589203728735e-2 -0.11087312839348329,-6.370650148043255e-2 -0.163019717597212 -2.581978673349844e-2c -5.2146589203728735e-2,3.7886714746934114e-2 -6.370650148043255e-2,0.11087312839348329 -2.581978673349844e-2 0.163019717597212Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7305163996920516,0.20079145665366668 c -3.7886714746934134e-2,5.214658920372872e-2 -2.6326802470230358e-2,0.1251330028502779 2.5819786733498343e-2 0.16301971759721204c 5.214658920372872e-2,3.7886714746934134e-2 0.1251330028502779,2.6326802470230365e-2 0.163019717597212 -2.5819786733498343e-2c 3.788671474693414e-2,-5.2146589203728715e-2 2.6326802470230372e-2,-0.1251330028502779 -2.581978673349833e-2 -0.163019717597212c -5.2146589203728715e-2,-3.788671474693414e-2 -0.1251330028502779,-2.632680247023038e-2 -0.163019717597212 2.581978673349833e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7528058796217583,-0.1745968806977252 c -6.130199218261129e-2,-1.9918224678446058e-2 -0.12714398713519035,1.3629947395376686e-2 -0.1470622118136364 7.493193957798797e-2c -1.991822467844606e-2,6.130199218261129e-2 1.3629947395376686e-2,0.12714398713519035 7.493193957798794e-2 0.1470622118136364c 6.130199218261129e-2,1.9918224678446065e-2 0.12714398713519035,-1.362994739537668e-2 0.1470622118136364 -7.493193957798794e-2c 1.991822467844607e-2,-6.130199218261128e-2 -1.3629947395376672e-2,-0.12714398713519035 -7.493193957798794e-2 -0.14706221181363643Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 2.1167092320950616,-0.2693997012974834 c 0.0,-6.445672905056533e-2 -5.225250304449666e-2,-0.11670923209506201 -0.11670923209506198 -0.11670923209506201c -6.445672905056533e-2,-3.9468363457641525e-18 -0.11670923209506201,5.2252503044496655e-2 -0.11670923209506201 0.11670923209506197c -7.893672691528305e-18,6.445672905056533e-2 5.2252503044496655e-2,0.11670923209506201 0.11670923209506195 0.11670923209506201c 6.445672905056533e-2,1.1840509037292458e-17 0.11670923209506201,-5.225250304449665e-2 0.11670923209506204 -0.11670923209506197Z" /></g></g></g><g><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g><g fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1118439572277492,0.131717945410145 l -0.11184395722774931,0.1937194164380221 l -0.1118439572277493,-0.1937194164380221 h 0.22368791445549863 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0745626381518327,6.71448065974709e-2 c 3.566275981494677e-2,-2.0589903979204516e-2 8.126455390938597e-2,-8.370940078189223e-3 0.10185445788859049 2.7291819736757546e-2c 2.058990397920452e-2,3.566275981494677e-2 8.370940078189226e-3,8.126455390938597e-2 -2.7291819736757532e-2 0.10185445788859049c -3.566275981494677e-2,2.058990397920452e-2 -8.126455390938597e-2,8.37094007818923e-3 -0.10185445788859049 -2.7291819736757532e-2c -2.0589903979204523e-2,-3.5662759814946765e-2 -8.370940078189233e-3,-8.126455390938597e-2 2.729181973675754e-2 -0.10185445788859049Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8508747236963343,0.19629108422281905 c -3.566275981494679e-2,-2.0589903979204488e-2 -4.7881723715962124e-2,-6.619169807364368e-2 -2.7291819736757643e-2 -0.10185445788859046c 2.0589903979204485e-2,-3.566275981494679e-2 6.619169807364367e-2,-4.788172371596213e-2 0.10185445788859045 -2.729181973675765e-2c 3.566275981494679e-2,2.0589903979204485e-2 4.788172371596213e-2,6.619169807364367e-2 2.729181973675765e-2 0.10185445788859045c -2.058990397920448e-2,3.56627598149468e-2 -6.619169807364367e-2,4.788172371596214e-2 -0.10185445788859046 2.7291819736757664e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.074562638151833,0.3254373618481671 c 0.0,4.117980795840899e-2 -3.338283019342387e-2,7.456263815183287e-2 -7.456263815183285e-2 7.456263815183287e-2c -4.117980795840899e-2,2.5215360002884136e-18 -7.456263815183287e-2,-3.338283019342386e-2 -7.456263815183287e-2 -7.456263815183284e-2c -5.043072000576827e-18,-4.117980795840899e-2 3.338283019342386e-2,-7.456263815183287e-2 7.456263815183284e-2 -7.456263815183287e-2c 4.117980795840899e-2,-7.56460800086524e-18 7.456263815183287e-2,3.3382830193423856e-2 7.45626381518329e-2 7.456263815183284e-2Z" /></g></g><g></g><g fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.1118439572277492,-0.13171794541014506 l -0.11184395722774931,-0.1937194164380221 l -0.1118439572277493,0.1937194164380221 h 0.22368791445549863 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0745626381518327,-6.714480659747095e-2 c 3.566275981494677e-2,2.0589903979204516e-2 8.126455390938597e-2,8.370940078189223e-3 0.10185445788859049 -2.7291819736757546e-2c 2.058990397920452e-2,-3.566275981494677e-2 8.370940078189226e-3,-8.126455390938597e-2 -2.7291819736757532e-2 -0.10185445788859049c -3.566275981494677e-2,-2.058990397920452e-2 -8.126455390938597e-2,-8.37094007818923e-3 -0.10185445788859049 2.7291819736757532e-2c -2.0589903979204523e-2,3.5662759814946765e-2 -8.370940078189233e-3,8.126455390938597e-2 2.729181973675754e-2 0.10185445788859049Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8508747236963343,-0.1962910842228191 c -3.566275981494679e-2,2.0589903979204488e-2 -4.7881723715962124e-2,6.619169807364368e-2 -2.7291819736757643e-2 0.10185445788859046c 2.0589903979204485e-2,3.566275981494679e-2 6.619169807364367e-2,4.788172371596213e-2 0.10185445788859045 2.729181973675765e-2c 3.566275981494679e-2,-2.0589903979204485e-2 4.788172371596213e-2,-6.619169807364367e-2 2.729181973675765e-2 -0.10185445788859045c -2.058990397920448e-2,-3.56627598149468e-2 -6.619169807364367e-2,-4.788172371596214e-2 -0.10185445788859046 -2.7291819736757664e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.074562638151833,-0.3254373618481672 c 0.0,-4.117980795840899e-2 -3.338283019342387e-2,-7.456263815183287e-2 -7.456263815183285e-2 -7.456263815183287e-2c -4.117980795840899e-2,-2.5215360002884136e-18 -7.456263815183287e-2,3.338283019342386e-2 -7.456263815183287e-2 7.456263815183284e-2c -5.043072000576827e-18,4.117980795840899e-2 3.338283019342386e-2,7.456263815183287e-2 7.456263815183284e-2 7.456263815183287e-2c 4.117980795840899e-2,7.56460800086524e-18 7.456263815183287e-2,-3.3382830193423856e-2 7.45626381518329e-2 -7.456263815183284e-2Z" /></g></g></g><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.30846115979107186,8.606013521095937e-2 l -6.109451572448524e-2,-0.2676725627653776 l -0.24736664406658654,-0.11912549732206407 l -0.24736664406658646,0.11912549732206403 l -6.109451572448529e-2,0.2676725627653776 l 0.17118302905915728,0.21465672892114537 l 0.27455626146382894,1.016062276773825e-17 l 0.17118302905915733,-0.2146567289211453 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.30442765375297237,-0.11006018458070303 c 3.951721261057042e-2,-3.1513925459738044e-2 4.6005158747067426e-2,-8.909604004953048e-2 1.4491233287329382e-2 -0.1286132526601009c -3.1513925459738044e-2,-3.951721261057042e-2 -8.909604004953048e-2,-4.6005158747067426e-2 -0.12861325266010087 -1.4491233287329389e-2c -3.9517212610570424e-2,3.151392545973804e-2 -4.6005158747067426e-2,8.909604004953048e-2 -1.4491233287329396e-2 0.12861325266010087c 3.151392545973804e-2,3.9517212610570424e-2 8.909604004953048e-2,4.6005158747067426e-2 0.1286132526601009 1.449123328732943e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.2880963212162434,0.17528432279941863 c 4.927715812114798e-2,1.1247189777643617e-2 9.834183638564403e-2,-1.9582190892482778e-2 0.10958902616328764 -6.885934901363075e-2c 1.124718977764362e-2,-4.927715812114798e-2 -1.958219089248277e-2,-9.834183638564403e-2 -6.885934901363074e-2 -0.10958902616328764c -4.927715812114798e-2,-1.1247189777643623e-2 -9.834183638564403e-2,1.9582190892482764e-2 -0.10958902616328764 6.885934901363072e-2c -1.1247189777643626e-2,4.927715812114798e-2 1.9582190892482764e-2,9.834183638564403e-2 6.885934901363074e-2 0.10958902616328767Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 5.482258270971897e-2,0.3404253632394594 c 2.1930398495661658e-2,4.553894171159923e-2 7.662510541795095e-2,6.467744741050252e-2 0.12216404712955017 4.2747048914840866e-2c 4.553894171159923e-2,-2.1930398495661654e-2 6.467744741050252e-2,-7.662510541795095e-2 4.274704891484087e-2 -0.12216404712955017c -2.193039849566165e-2,-4.553894171159923e-2 -7.662510541795095e-2,-6.467744741050252e-2 -0.12216404712955015 -4.274704891484088e-2c -4.553894171159924e-2,2.193039849566165e-2 -6.467744741050252e-2,7.662510541795094e-2 -4.274704891484091e-2 0.12216404712955019Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2197336787541099,0.26100836502475 c -2.1930398495661668e-2,4.553894171159922e-2 -2.7918927967584134e-3,0.10023364863388853 4.274704891484081e-2 0.1221640471295502c 4.553894171159922e-2,2.193039849566167e-2 0.10023364863388853,2.7918927967584134e-3 0.12216404712955019 -4.2747048914840796e-2c 2.1930398495661675e-2,-4.553894171159922e-2 2.7918927967584203e-3,-0.10023364863388852 -4.274704891484078e-2 -0.12216404712955017c -4.5538941711599216e-2,-2.1930398495661675e-2 -0.10023364863388852,-2.7918927967584203e-3 -0.12216404712955022 4.274704891484077e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.32882599836590015,-3.1640523774998652e-3 c -4.927715812114798e-2,1.1247189777643605e-2 -8.01065387912744e-2,6.031186804213964e-2 -6.885934901363079e-2 0.10958902616328761c 1.1247189777643602e-2,4.927715812114798e-2 6.031186804213963e-2,8.01065387912744e-2 0.1095890261632876 6.88593490136308e-2c 4.927715812114798e-2,-1.12471897776436e-2 8.01065387912744e-2,-6.031186804213962e-2 6.88593490136308e-2 -0.10958902616328758c -1.1247189777643597e-2,-4.927715812114798e-2 -6.031186804213962e-2,-8.01065387912744e-2 -0.10958902616328761 -6.885934901363083e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.1903056343802006,-0.2531646705281334 c -3.951721261057042e-2,-3.151392545973806e-2 -9.709932720036286e-2,-2.5025979323241077e-2 -0.12861325266010093 1.4491233287329333e-2c -3.151392545973806e-2,3.951721261057042e-2 -2.5025979323241077e-2,9.709932720036286e-2 1.449123328732932e-2 0.1286132526601009c 3.951721261057041e-2,3.1513925459738065e-2 9.709932720036285e-2,2.5025979323241083e-2 0.1286132526601009 -1.449123328732932e-2c 3.1513925459738065e-2,-3.951721261057041e-2 2.5025979323241083e-2,-9.709932720036285e-2 -1.4491233287329292e-2 -0.12861325266010093Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 9.15187538212764e-2,-0.3007379248764822 c 0.0,-5.0544412059009565e-2 -4.097434176226675e-2,-9.151875382127632e-2 -9.15187538212763e-2 -9.151875382127632e-2c -5.0544412059009565e-2,-3.094952622142547e-18 -9.151875382127632e-2,4.097434176226674e-2 -9.151875382127632e-2 9.151875382127629e-2c -6.189905244285094e-18,5.0544412059009565e-2 4.097434176226673e-2,9.151875382127632e-2 9.151875382127628e-2 9.151875382127632e-2c 5.0544412059009565e-2,9.284857866427641e-18 9.151875382127632e-2,-4.0974341762266726e-2 9.151875382127633e-2 -9.151875382127629e-2Z" /></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_fdMultTableEx.svg view

file too large to diff

+ diagrams/src_Diagrams_TwoD_Factorization_grid100.svg view

file too large to diff

+ diagrams/src_Diagrams_TwoD_Factorization_grid100Big.svg view

file too large to diff

+ diagrams/src_Diagrams_TwoD_Factorization_plExample.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="101.81595354555577" font-size="1" viewBox="0 0 400 102"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(90.9090909090909,0.0,0.0,90.9090909090909,200.00000000000003,50.90797677277788)"><g><g><g><g clip-path="url(#myClip1)"><clipPath id="myClip1"><path d="M 1.9307627368790132,-4.32017835797613e-2 l -7.364818725667792e-2,-0.19419430990828557 l -0.15545882687829046,-0.13772450265866143 l -0.2016557227440451,-4.970367161012122e-2 l -0.201655722744045,4.9703671610121236e-2 l -0.15545882687829046,0.13772450265866146 l -7.364818725667784e-2,0.19419430990828568 l 2.5034364508567712e-2,0.2061765410530551 l 0.11798184506169807,0.17092621133924238 l 0.18390110674656063,9.651874649175761e-2 l 0.20769084112437378,1.1529157691002266e-17 l 0.1839011067465603,-9.651874649175723e-2 l 0.11798184506169833,-0.17092621133924218 l 2.5034364508567844e-2,-0.20617654105305588 Z" /></clipPath><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.9307627368790132,0.4367242737608991 l -4.7824270863362866e-17,-0.8552439830611234 h -0.43076273687901334 l -4.7824270863362866e-17,0.8552439830611234 h 0.43076273687901345 Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.4999999999999998,0.4367242737608991 l -4.7824270863362866e-17,-0.8552439830611234 h -0.43076273687901334 l -4.7824270863362866e-17,0.8552439830611234 h 0.43076273687901345 Z" /></g></g></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.7629560916595648,-0.34294768064945585 c 1.7768610586727338e-2,-3.385525891104339e-2 4.727805492775721e-3,-7.570467382604529e-2 -2.9127453418267668e-2 -9.347328441277261e-2c -3.385525891104339e-2,-1.776861058672734e-2 -7.570467382604529e-2,-4.727805492775725e-3 -9.347328441277261e-2 2.912745341826766e-2c -1.776861058672734e-2,3.385525891104339e-2 -4.727805492775728e-3,7.570467382604527e-2 2.9127453418267654e-2 9.347328441277261e-2c 3.385525891104339e-2,1.7768610586727344e-2 7.570467382604527e-2,4.7278054927757315e-3 9.347328441277263e-2 -2.9127453418267668e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.8964418313095681,-0.18042068970829916 c 3.14666466230063e-2,-2.1719857928158472e-2 3.936798002067326e-2,-6.483603884397393e-2 1.764812209251479e-2 -9.630268546698023e-2c -2.171985792815847e-2,-3.14666466230063e-2 -6.483603884397393e-2,-3.9367980020673266e-2 -9.630268546698022e-2 -1.7648122092514797e-2c -3.14666466230063e-2,2.171985792815847e-2 -3.9367980020673266e-2,6.483603884397393e-2 -1.7648122092514804e-2 9.63026854669802e-2c 2.1719857928158465e-2,3.146664662300631e-2 6.483603884397393e-2,3.9367980020673266e-2 9.630268546698023e-2 1.7648122092514817e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.939107525048536,2.5523730104590477e-2 c 3.795605313215495e-2,-4.608699246595754e-3 6.498942476142486e-2,-3.911424872171934e-2 6.0380725514829106e-2 -7.707030185387428e-2c -4.608699246595752e-3,-3.795605313215495e-2 -3.911424872171934e-2,-6.498942476142486e-2 -7.707030185387427e-2 -6.0380725514829106e-2c -3.795605313215495e-2,4.60869924659575e-3 -6.498942476142486e-2,3.9114248721719334e-2 -6.0380725514829106e-2 7.707030185387427e-2c 4.608699246595747e-3,3.795605313215495e-2 3.911424872171933e-2,6.498942476142486e-2 7.707030185387427e-2 6.0380725514829134e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.8811789766182194,0.22770619410938925 c 3.575018528875369e-2,1.3558256891515262e-2 7.57225754968059e-2,-4.431855595115528e-3 8.928083238832116e-2 -4.0182040883869216e-2c 1.3558256891515264e-2,-3.575018528875369e-2 -4.431855595115525e-3,-7.572257549680589e-2 -4.01820408838692e-2 -8.928083238832116e-2c -3.575018528875369e-2,-1.3558256891515267e-2 -7.572257549680589e-2,4.431855595115521e-3 -8.928083238832116e-2 4.01820408838692e-2c -1.3558256891515269e-2,3.575018528875369e-2 4.431855595115518e-3,7.572257549680589e-2 4.01820408838692e-2 8.928083238832116e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.7359269183493171,0.37980913636542357 c 2.535438083213645e-2,2.8619179770488418e-2 6.91085967418289e-2,3.126582223867941e-2 9.772777651231732e-2 5.911441406542962e-3c 2.8619179770488418e-2,-2.5354380832136446e-2 3.126582223867941e-2,-6.91085967418289e-2 5.911441406542969e-3 -9.772777651231732e-2c -2.5354380832136446e-2,-2.861917977048842e-2 -6.91085967418289e-2,-3.1265822238679415e-2 -9.772777651231732e-2 -5.911441406542976e-3c -2.861917977048842e-2,2.5354380832136442e-2 -3.126582223867942e-2,6.91085967418289e-2 -5.911441406542969e-3 9.772777651231734e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.5366268463141715,0.44698760584100095 c 9.150193280289216e-3,3.71237934625476e-2 4.666267132217447e-2,5.9800876991597224e-2 8.378646478472207e-2 5.065068371130801e-2c 3.71237934625476e-2,-9.150193280289215e-3 5.9800876991597224e-2,-4.666267132217447e-2 5.0650683711308014e-2 -8.378646478472206e-2c -9.150193280289211e-3,-3.71237934625476e-2 -4.6662671322174464e-2,-5.9800876991597224e-2 -8.378646478472206e-2 -5.0650683711308014e-2c -3.71237934625476e-2,9.15019328028921e-3 -5.9800876991597224e-2,4.666267132217446e-2 -5.065068371130803e-2 8.378646478472207e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.3289360051897976,0.4138518247675868 c -9.150193280289227e-3,3.712379346254759e-2 1.352689024876037e-2,7.463627150443286e-2 5.065068371130796e-2 8.378646478472208e-2c 3.712379346254759e-2,9.150193280289229e-3 7.463627150443286e-2,-1.3526890248760366e-2 8.378646478472207e-2 -5.0650683711307945e-2c 9.150193280289232e-3,-3.712379346254759e-2 -1.3526890248760363e-2,-7.463627150443286e-2 -5.0650683711307945e-2 -8.378646478472207e-2c -3.712379346254759e-2,-9.150193280289234e-3 -7.463627150443285e-2,1.352689024876036e-2 -8.378646478472208e-2 5.065068371130793e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.1604338637318223,0.2879928012596493 c -2.5354380832136446e-2,2.861917977048843e-2 -2.2707738363945452e-2,7.237339568018089e-2 5.911441406542969e-3 9.772777651231734e-2c 2.861917977048843e-2,2.535438083213645e-2 7.237339568018089e-2,2.2707738363945455e-2 9.772777651231733e-2 -5.911441406542969e-3c 2.535438083213645e-2,-2.8619179770488428e-2 2.270773836394546e-2,-7.237339568018089e-2 -5.911441406542962e-3 -9.772777651231732e-2c -2.8619179770488428e-2,-2.5354380832136453e-2 -7.237339568018089e-2,-2.2707738363945462e-2 -9.772777651231734e-2 5.911441406542942e-3Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.069722231877328,9.824332083719876e-2 c -3.575018528875369e-2,1.3558256891515253e-2 -5.37402977753845e-2,5.353064709956745e-2 -4.0182040883869244e-2 8.928083238832113e-2c 1.3558256891515252e-2,3.575018528875369e-2 5.3530647099567445e-2,5.37402977753845e-2 8.928083238832112e-2 4.0182040883869244e-2c 3.575018528875369e-2,-1.3558256891515248e-2 5.37402977753845e-2,-5.353064709956744e-2 4.018204088386925e-2 -8.928083238832112e-2c -1.3558256891515246e-2,-3.575018528875369e-2 -5.353064709956744e-2,-5.37402977753845e-2 -8.928083238832113e-2 -4.0182040883869244e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.077582051290509,-0.11192729726411285 c -3.795605313215495e-2,-4.608699246595746e-3 -7.246160260727855e-2,2.2424672382674156e-2 -7.707030185387428e-2 6.0380725514829106e-2c -4.608699246595749e-3,3.795605313215495e-2 2.2424672382674152e-2,7.246160260727855e-2 6.038072551482909e-2 7.707030185387428e-2c 3.795605313215495e-2,4.608699246595751e-3 7.246160260727855e-2,-2.242467238267415e-2 7.707030185387428e-2 -6.038072551482909e-2c 4.608699246595753e-3,-3.795605313215495e-2 -2.2424672382674146e-2,-7.246160260727853e-2 -6.038072551482909e-2 -7.707030185387431e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.182212732064897,-0.29437149726779427 c -3.146664662300629e-2,-2.171985792815848e-2 -7.458282753882176e-2,-1.3818524530491538e-2 -9.630268546698023e-2 1.7648122092514748e-2c -2.1719857928158483e-2,3.146664662300629e-2 -1.3818524530491542e-2,7.458282753882176e-2 1.764812209251474e-2 9.630268546698023e-2c 3.146664662300629e-2,2.1719857928158483e-2 7.458282753882176e-2,1.3818524530491545e-2 9.630268546698023e-2 -1.7648122092514734e-2c 2.1719857928158486e-2,-3.1466646623006286e-2 1.3818524530491549e-2,-7.458282753882176e-2 -1.7648122092514734e-2 -9.630268546698025e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.3596446461714746,-0.40729351164396077 c -1.7768610586727348e-2,-3.385525891104339e-2 -5.961802550172923e-2,-4.689606400499501e-2 -9.347328441277261e-2 -2.9127453418267668e-2c -3.385525891104339e-2,1.7768610586727344e-2 -4.689606400499501e-2,5.961802550172923e-2 -2.9127453418267675e-2 9.347328441277261e-2c 1.7768610586727344e-2,3.385525891104339e-2 5.9618025501729226e-2,4.689606400499501e-2 9.347328441277261e-2 2.9127453418267675e-2c 3.385525891104339e-2,-1.776861058672734e-2 4.689606400499502e-2,-5.961802550172922e-2 2.9127453418267668e-2 -9.347328441277261e-2Z" /></g><g stroke="rgb(255,165,0)" stroke-opacity="1.0"><path d="M 1.569230280374791,-0.42482426775682947 c 0.0,-3.823482807750732e-2 -3.0995452297284003e-2,-6.923028037479133e-2 -6.923028037479131e-2 -6.923028037479133e-2c -3.823482807750732e-2,-2.3412079910534343e-18 -6.923028037479133e-2,3.0995452297284e-2 -6.923028037479133e-2 6.92302803747913e-2c -4.682415982106869e-18,3.823482807750732e-2 3.0995452297283996e-2,6.923028037479133e-2 6.92302803747913e-2 6.923028037479133e-2c 3.823482807750732e-2,7.023623973160303e-18 6.923028037479133e-2,-3.0995452297283992e-2 6.923028037479133e-2 -6.92302803747913e-2Z" /></g></g><g><g><g clip-path="url(#myClip2)"><clipPath id="myClip2"><path d="M 0.4898882854777038,1.6573878170719807e-2 l -4.5571012860804935e-4,-2.9879433438282095e-2 l -2.276431454942239e-3,-2.9796074811038378e-2 l -4.088684306747305e-3,-2.9601872828485098e-2 l -5.885726984385897e-3,-2.9297549934752525e-2 l -7.660874371066547e-3,-2.8884238230993425e-2 l -9.407522801919135e-3,-2.8363475263892046e-2 l -1.1119174630060428e-2,-2.773719830589001e-2 l -1.2789462398268165e-2,-2.700773714840491e-2 l -1.4412172526339667e-2,-2.61778054348539e-2 l -1.598126842601873e-2,-2.525049056572136e-2 l -1.7490912957499757e-2,-2.4229242213226834e-2 l -1.8935490143972302e-2,-2.311785948831719e-2 l -2.030962606342194e-2,-2.1920476807725207e-2 l -2.16082088399752e-2,-2.064154851366686e-2 l -2.2826407660412065e-2,-1.9285832303396484e-2 l -2.3959690745108904e-2,-1.785837153025974e-2 l -2.500384220655615e-2,-1.6364476442088816e-2 l -2.595497773273763e-2,-1.4809704426731235e-2 l -2.680955903702474e-2,-1.3199839338201496e-2 l -2.7564407020836592e-2,-1.154086998036541e-2 l -2.821671360009485e-2,-9.838967828195672e-3 l -2.8764052151481003e-2,-8.100464069479466e-3 l -2.9204386539634603e-2,-6.33182605238467e-3 l -2.953607869171043e-2,-4.539633226499203e-3 l -2.975789469111719e-2,-2.7305526668471615e-3 l -2.9869009367768148e-2,-9.113142719312454e-4 l -2.9869009367768023e-2,9.113142719316653e-4 l -2.9757894691117146e-2,2.730552666847743e-3 l -2.953607869171056e-2,4.5396332264997594e-3 l -2.9204386539634388e-2,6.331826052385067e-3 l -2.8764052151480864e-2,8.100464069479979e-3 l -2.8216713600094687e-2,9.838967828196148e-3 l -2.7564407020836314e-2,1.1540869980365886e-2 l -2.6809559037024425e-2,1.3199839338201878e-2 l -2.5954977732737288e-2,1.4809704426731492e-2 l -2.5003842206555913e-2,1.636447644208931e-2 l -2.3959690745108477e-2,1.785837153026004e-2 l -2.2826407660411666e-2,1.928583230339667e-2 l -2.160820883997486e-2,2.0641548513667136e-2 l -2.0309626063421553e-2,2.192047680772546e-2 l -1.8935490143971757e-2,2.3117859488317464e-2 l -1.7490912957499393e-2,2.422924221322694e-2 l -1.5981268426018318e-2,2.5250490565721512e-2 l -1.4412172526339289e-2,2.6177805434853985e-2 l -1.2789462398267707e-2,2.7007737148405046e-2 l -1.1119174630059982e-2,2.7737198305890068e-2 l -9.407522801918682e-3,2.836347526389209e-2 l -7.6608743710662045e-3,2.888423823099344e-2 l -5.885726984385414e-3,2.9297549934752514e-2 l -4.088684306747004e-3,2.960187282848505e-2 l -2.2764314549417585e-3,2.9796074811038315e-2 l -4.5571012860765156e-4,2.9879433438281793e-2 l 1.3667064693359328e-3,2.9851638610647976e-2 l 3.1840388294481227e-3,2.9712793726719925e-2 l 4.989526355986333e-3,2.9463415298586097e-2 l 6.776452516767216e-3,2.9104431030377968e-2 l 8.538169829106854e-3,2.8637176367152236e-2 l 1.0268124588893405e-2,2.8063389526944246e-2 l 1.1959881250796658e-2,2.7385205034486822e-2 l 1.3607146368919498e-2,2.6605145780635286e-2 l 1.520379200882919e-2,2.5726113637047333e-2 l 1.674387854387866e-2,2.4751378661034176e-2 l 1.822167675100263e-2,2.368456693072528e-2 l 1.963168912380978e-2,2.252964705582724e-2 l 2.096867032366221e-2,2.1290915414128683e-2 l 2.2227646692684858e-2,1.9972980168698966e-2 l 2.3403934756093366e-2,1.858074412521107e-2 l 2.4493158645033982e-2,1.7119386493190558e-2 l 2.5491266375099342e-2,1.5594343619010426e-2 l 2.6394544919977433e-2,1.4011288762327805e-2 l 2.7199634024153974e-2,1.2376110991184821e-2 l 2.7903538703282937e-2,1.0694893274289038e-2 l 2.8503640385725254e-2,8.973889851970136e-3 l 2.8997706653807555e-2,7.219502969994834e-3 l 2.9383899548562204e-2,5.438259062792756e-3 l 2.9660782407055396e-2,3.636784474690946e-3 l 2.982732520686788e-2,1.8217808094785437e-3 l 2.988290839784576e-2,2.8338425224753528e-18 l 2.982732520686788e-2,-1.8217808094785845e-3 l 2.9660782407055393e-2,-3.6367844746909646e-3 l 2.9383899548562194e-2,-5.438259062792724e-3 l 2.8997706653807572e-2,-7.219502969994834e-3 l 2.8503640385725258e-2,-8.97388985197015e-3 l 2.7903538703282882e-2,-1.069489327428913e-2 l 2.719963402415395e-2,-1.2376110991184845e-2 l 2.6394544919977468e-2,-1.4011288762327772e-2 l 2.549126637509931e-2,-1.5594343619010442e-2 l 2.4493158645034017e-2,-1.711938649319058e-2 l 2.3403934756093373e-2,-1.8580744125211126e-2 l 2.222764669268455e-2,-1.9972980168698643e-2 l 2.096867032366245e-2,-2.1290915414129044e-2 l 1.963168912380957e-2,-2.252964705582702e-2 l 1.8221676751002717e-2,-2.36845669307253e-2 l 1.6743878543878474e-2,-2.475137866103399e-2 l 1.5203792008829504e-2,-2.5726113637047705e-2 l 1.360714636891936e-2,-2.660514578063508e-2 l 1.195988125079664e-2,-2.7385205034486833e-2 l 1.0268124588893372e-2,-2.806338952694425e-2 l 8.538169829106825e-3,-2.8637176367152014e-2 l 6.776452516767215e-3,-2.910443103037818e-2 l 4.989526355986373e-3,-2.9463415298586097e-2 l 3.184038829448112e-3,-2.9712793726719925e-2 l 1.3667064693361755e-3,-2.985163861065394e-2 Z" /></clipPath><g stroke="rgb(255,255,89)" stroke-opacity="1.0" fill="rgb(255,255,89)" fill-opacity="1.0"><path d="M 0.4898882854777039,0.4989336006297323 l -3.6259016935432546e-17,-0.9796626367987897 h -0.32659219031846903 l -3.6259016935432546e-17,0.9796626367987897 h 0.32659219031846914 Z" /></g><g stroke="rgb(89,89,89)" stroke-opacity="1.0" fill="rgb(89,89,89)" fill-opacity="1.0"><path d="M 0.16329609515923477,0.4989336006297323 l -3.6259016935432546e-17,-0.9796626367987897 h -0.32659219031846903 l -3.6259016935432546e-17,0.9796626367987897 h 0.32659219031846914 Z" /></g><g stroke="rgb(255,89,89)" stroke-opacity="1.0" fill="rgb(255,89,89)" fill-opacity="1.0"><path d="M -0.16329609515923438,0.4989336006297323 l -3.6259016935432546e-17,-0.9796626367987897 h -0.32659219031846903 l -3.6259016935432546e-17,0.9796626367987897 h 0.32659219031846914 Z" /></g></g></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 3.9204190833564835e-2,-0.46938196067353033 l 1.214520539652396e-3,-1.9884883471245316e-2 l -1.9884883471245316e-2,-1.2145205396523983e-3 l -1.2145205396524004e-3,1.9884883471245316e-2 l 1.988488347124532e-2,1.2145205396523993e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 6.830157003634027e-2,-0.4661019210515495 l 2.424522983127316e-3,-1.9773854938036996e-2 l -1.9773854938036996e-2,-2.424522983127318e-3 l -2.42452298312732e-3,1.9773854938036996e-2 l 1.9773854938037003e-2,2.4245229831273175e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.714486291251932e-2,-0.4610540905818472 l 3.625506041861835e-3,-1.9589266365708187e-2 l -1.9589266365708187e-2,-3.625506041861837e-3 l -3.625506041861839e-3,1.9589266365708187e-2 l 1.9589266365708194e-2,3.6255060418618375e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.12562677051816817,-0.4542572475253131 l 4.813001979996605e-3,-1.933180443587177e-2 l -1.933180443587177e-2,-4.813001979996606e-3 l -4.813001979996608e-3,1.933180443587177e-2 l 1.9331804435871774e-2,4.8130019799966055e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.15364133828629645,-0.44573667658453575 l 5.982593234646794e-3,-1.900242692381689e-2 l -1.900242692381689e-2,-5.9825932346467955e-3 l -5.982593234646797e-3,1.900242692381689e-2 l 1.9002426923816894e-2,5.982593234646796e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.18108435018480404,-0.4355240748430477 l 7.129928849526104e-3,-1.8602359135521978e-2 l -1.8602359135521978e-2,-7.1299288495261055e-3 l -7.129928849526107e-3,1.8602359135521978e-2 l 1.860235913552198e-2,7.129928849526106e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.20785371640696554,-0.42365743385009313 l 8.250740660789936e-3,-1.8133089349436027e-2 l -1.8133089349436027e-2,-8.250740660789938e-3 l -8.25074066078994e-3,1.8133089349436027e-2 l 1.813308934943603e-2,8.250740660789936e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.23384985315221693,-0.4101808982895693 l 9.340859174885231e-3,-1.7596363279985015e-2 l -1.7596363279985015e-2,-9.340859174885233e-3 l -9.340859174885235e-3,1.7596363279985015e-2 l 1.7596363279985018e-2,9.340859174885235e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.2589760530844344,-0.3951446017589029 l 1.0396229079340354e-2,-1.6994177583399574e-2 l -1.6994177583399574e-2,-1.0396229079340355e-2 l -1.0396229079340357e-2,1.6994177583399574e-2 l 1.6994177583399578e-2,1.0396229079340357e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.2831388450895753,-0.3786044802687756 l 1.1412924328793784e-2,-1.6328772430022703e-2 l -1.6328772430022703e-2,-1.1412924328793785e-2 l -1.1412924328793787e-2,1.6328772430022703e-2 l 1.6328772430022707e-2,1.1412924328793785e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.3062483419943635,-0.36062206415748915 l 1.2387162750140807e-2,-1.5602623170728911e-2 l -1.560262317072891e-2,-1.2387162750140809e-2 l -1.238716275014081e-2,1.5602623170728908e-2 l 1.5602623170728913e-2,1.2387162750140812e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.3282185749524765,-0.34126424919406634 l 1.3315320112465827e-2,-1.4818431128456402e-2 l -1.48184311284564e-2,-1.3315320112465829e-2 l -1.331532011246583e-2,1.4818431128456398e-2 l 1.4818431128456403e-2,1.3315320112465834e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.34896781325430104,-0.3206030477215963 l 1.4193943609419436e-2,-1.3979113549108321e-2 l -1.397911354910832e-2,-1.4193943609419437e-2 l -1.4193943609419439e-2,1.3979113549108317e-2 l 1.3979113549108323e-2,1.419394360941944e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.36841886837053917,-0.29871532076658924 l 1.501976470388476e-2,-1.3087792749206422e-2 l -1.308779274920642e-2,-1.5019764703884761e-2 l -1.5019764703884763e-2,1.3087792749206418e-2 l 1.3087792749206423e-2,1.5019764703884763e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.38649938109860954,-0.27568249211090784 l 1.5789711287150312e-2,-1.2147784500668455e-2 l -1.2147784500668453e-2,-1.5789711287150312e-2 l -1.5789711287150312e-2,1.2147784500668451e-2 l 1.2147784500668453e-2,1.5789711287150315e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.40314209074363144,-0.25159024538995284 l 1.650091910735606e-2,-1.1162585695918952e-2 l -1.116258569591895e-2,-1.650091910735606e-2 l -1.650091910735606e-2,1.1162585695918948e-2 l 1.116258569591895e-2,1.6500919107356064e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.418285085332629,-0.22652820534390986 l 1.7150742424698575e-2,-1.013586133921963e-2 l -1.0135861339219628e-2,-1.7150742424698575e-2 l -1.7150742424698575e-2,1.0135861339219626e-2 l 1.0135861339219628e-2,1.715074242469858e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.431872031931136,-0.2005896044078302 l 1.7736763853756807e-2,-9.071430912612886e-3 l -9.071430912612885e-3,-1.7736763853756807e-2 l -1.7736763853756807e-2,9.071430912612883e-3 l 9.071430912612885e-3,1.773676385375681e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.44385238620541234,-0.17387093588084893 l 1.825680335632465e-2,-7.973254167197715e-3 l -7.973254167197713e-3,-1.825680335632465e-2 l -1.825680335632465e-2,7.973254167197711e-3 l 7.973254167197713e-3,1.8256803356324652e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.45418158045068563,-0.14647159496477422 l 1.8708926351296243e-2,-6.845416392595541e-3 l -6.845416392595539e-3,-1.8708926351296243e-2 l -1.8708926351296243e-2,6.845416392595538e-3 l 6.845416392595539e-3,1.8708926351296243e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4628211893859398,-0.11849350900740799 l 1.9091450911434764e-2,-5.692113219404493e-3 l -5.6921132194044915e-3,-1.9091450911434764e-2 l -1.9091450911434764e-2,5.69211321940449e-3 l 5.6921132194044915e-3,1.9091450911434767e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4697390730984842,-9.00407583261191e-2 l 1.9402954020252196e-2,-4.517635011178072e-3 l -4.5176350111780705e-3,-1.9402954020252196e-2 l -1.9402954020252196e-2,4.517635011178069e-3 l 4.517635011178071e-3,1.94029540202522e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.47490949660654025,-6.121918902222424e-2 l 1.9642276865724145e-2,-3.3263509039908427e-3 l -3.3263509039908406e-3,-1.9642276865724145e-2 l -1.9642276865724145e-2,3.3263509039908384e-3 l 3.3263509039908393e-3,1.964227686572415e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4783132255950633,-3.2136019226540705e-2 l 1.9808529151146687e-2,-2.1226925529653335e-3 l -2.1226925529653313e-3,-1.9808529151146687e-2 l -1.9808529151146687e-2,2.122692552965329e-3 l 2.122692552965332e-3,1.980852915114669e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4799375979686585,-2.899440240897177e-3 l 1.990109240709857e-2,-9.111376462238958e-4 l -9.111376462238936e-4,-1.990109240709857e-2 l -1.990109240709857e-2,9.111376462238915e-4 l 9.111376462238932e-4,1.9901092407098572e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4797765709554071,2.6381785940615445e-2 l 1.9919622292188063e-2,3.0380675240522645e-4 l 3.0380675240522867e-4,-1.9919622292188063e-2 l -1.9919622292188063e-2,-3.038067524052309e-4 l -3.038067524052286e-4,1.991962229218807e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.47783074358637445,5.5598731233403934e-2 l 1.98640498740256e-2,1.5176209699612917e-3 l 1.517620969961294e-3,-1.98640498740256e-2 l -1.98640498740256e-2,-1.517620969961296e-3 l -1.5176209699612926e-3,1.9864049874025604e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4741073544671757,8.464270668200438e-2 l 1.9734581885656743e-2,2.7257895378314336e-3 l 2.725789537831436e-3,-1.9734581885656743e-2 l -1.9734581885656743e-2,-2.725789537831438e-3 l -2.725789537831435e-3,1.9734581885656747e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.46862025484988756,0.11340566679013352 l 1.953169995650172e-2,3.923817989590407e-3 l 3.923817989590409e-3,-1.953169995650172e-2 l -1.953169995650172e-2,-3.923817989590412e-3 l -3.923817989590409e-3,1.9531699956501728e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4613898571054799,0.14178061145703175 l 1.925615882066231e-2,5.107249580710906e-3 l 5.107249580710908e-3,-1.925615882066231e-2 l -1.925615882066231e-2,-5.107249580710909e-3 l -5.107249580710908e-3,1.9256158820662315e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.45244305878845614,0.16966198402486585 l 1.8908983509261436e-2,6.271681867945923e-3 l 6.271681867945925e-3,-1.8908983509261436e-2 l -1.8908983509261436e-2,-6.271681867945926e-3 l -6.271681867945925e-3,1.890898350926144e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4418131425761829,0.19694606395642944 l 1.8491465537260054e-2,7.4127830867068015e-3 l 7.412783086706803e-3,-1.8491465537260054e-2 l -1.8491465537260054e-2,-7.412783086706805e-3 l -7.412783086706804e-3,1.8491465537260058e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.4295396524551455,0.22353135268235202 l 1.8005158098936686e-2,8.526308265511946e-3 l 8.526308265511947e-3,-1.8005158098936686e-2 l -1.8005158098936686e-2,-8.526308265511949e-3 l -8.526308265511949e-3,1.800515809893669e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.41566824661471935,0.2493189511824463 l 1.7451870289902666e-2,9.60811501755965e-3 l 9.608115017559652e-3,-1.7451870289902666e-2 l -1.7451870289902666e-2,-9.608115017559654e-3 l -9.608115017559652e-3,1.745187028990267e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.40025052759570784,0.2742129278965569 l 1.6833660377147664e-2,1.0654178950678996e-2 l 1.0654178950678998e-2,-1.6833660377147664e-2 l -1.6833660377147664e-2,-1.0654178950679e-2 l -1.0654178950678998e-2,1.6833660377147668e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.38334385032550056,0.29812067559626565 l 1.6152828142151285e-2,1.1660608638333084e-2 l 1.1660608638333085e-2,-1.6152828142151285e-2 l -1.6152828142151285e-2,-1.1660608638333087e-2 l -1.1660608638333084e-2,1.615282814215129e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.36501110875397674,0.32095325588986406 l 1.5411906325544912e-2,1.2623660095981334e-2 l 1.2623660095981336e-2,-1.541190632554491e-2 l -1.5411906325544908e-2,-1.2623660095981338e-2 l -1.2623660095981341e-2,1.5411906325544913e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.34532050188388136,0.34262573007901037 l 1.4613651205150246e-2,1.3539750708947836e-2 l 1.3539750708947838e-2,-1.4613651205150244e-2 l -1.4613651205150242e-2,-1.353975070894784e-2 l -1.3539750708947841e-2,1.4613651205150248e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.3243452800660536,0.3630574751362693 l 1.376103234244469e-2,1.4405472559983373e-2 l 1.4405472559983375e-2,-1.3761032342444688e-2 l -1.3761032342444687e-2,-1.4405472559983376e-2 l -1.4405472559983378e-2,1.3761032342444692e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.3021634725033135,0.38217248362806566 l 1.285722153559772e-2,1.5217605106941265e-2 l 1.5217605106941267e-2,-1.2857221535597717e-2 l -1.2857221535597716e-2,-1.5217605106941269e-2 l -1.5217605106941269e-2,1.2857221535597721e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.27885759697670015,0.3998996464673323 l 1.190558102017329e-2,1.59731271634058e-2 l 1.59731271634058e-2,-1.1905581020173289e-2 l -1.1905581020173287e-2,-1.59731271634058e-2 l -1.5973127163405806e-2,1.1905581020173289e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.2545143528739071,0.4161730174439836 l 1.0909650961392722e-2,1.6669228137704085e-2 l 1.6669228137704085e-2,-1.090965096139272e-2 l -1.0909650961392719e-2,-1.6669228137704085e-2 l -1.666922813770409e-2,1.090965096139272e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.2292242986618666,0.43093205854914773 l 9.873136284487589e-3,1.730331848849166e-2 l 1.730331848849166e-2,-9.873136284487587e-3 l -9.873136284487586e-3,-1.730331848849166e-2 l -1.7303318488491662e-2,9.873136284487587e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.20308151500330338,0.4441218651805366 l 8.799892892134472e-3,1.787303935801642e-2 l 1.787303935801642e-2,-8.79989289213447e-3 l -8.799892892134469e-3,-1.787303935801642e-2 l -1.7873039358016422e-2,8.79989289213447e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.17618325477049057,0.4556933703911723 l 7.693913320243775e-3,1.8376271347224336e-2 l 1.8376271347224336e-2,-7.6939133202437735e-3 l -7.693913320243772e-3,-1.8376271347224336e-2 l -1.837627134722434e-2,7.693913320243773e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.1486295812581782,0.46560352742165206 l 6.559311885463919e-3,1.8811142400063173e-2 l 1.8811142400063173e-2,-6.559311885463917e-3 l -6.559311885463916e-3,-1.8811142400063173e-2 l -1.8811142400063176e-2,6.559311885463917e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.12052299594156299,0.4738154698369214 l 5.40030937965314e-3,1.917603476765395e-2 l 1.917603476765395e-2,-5.400309379653139e-3 l -5.400309379653137e-3,-1.917603476765395e-2 l -1.9176034767653952e-2,5.400309379653138e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.196805716406893e-2,0.4802986486718335 l 4.2212173682565765e-3,1.9469591026423018e-2 l 1.9469591026423018e-2,-4.221217368256575e-3 l -4.221217368256573e-3,-1.9469591026423018e-2 l -1.946959102642302e-2,4.221217368256574e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 6.307099117344324e-2,0.4850289460753058 l 3.0264221509996537e-3,1.969071912780692e-2 l 1.969071912780692e-2,-3.0264221509996516e-3 l -3.0264221509996494e-3,-1.969071912780692e-2 l -1.9690719127806927e-2,3.026422150999651e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 3.393929695313627e-2,0.4879887650303105 l 1.8203684445649631e-3,1.9838596460744765e-2 l 1.9838596460744765e-2,-1.820368444564961e-3 l -1.8203684445649588e-3,-1.9838596460744765e-2 l -1.983859646074477e-2,1.8203684445649605e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 4.681346319023182e-3,0.48916709481593346 l 6.075428479542956e-4,1.9912672911845418e-2 l 1.9912672911845418e-2,-6.075428479542935e-4 l -6.075428479542913e-4,-1.9912672911845418e-2 l -1.991267291184542e-2,6.075428479542927e-4 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -2.4594019230868278e-2,0.4885595519679792 l -6.075428479542962e-4,1.9912672911845418e-2 l 1.9912672911845418e-2,6.075428479542983e-4 l 6.075428479543005e-4,-1.9912672911845418e-2 l -1.991267291184542e-2,-6.075428479542996e-4 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -5.3777893413880715e-2,0.48616839658574557 l -1.8203684445649633e-3,1.9838596460744765e-2 l 1.9838596460744765e-2,1.8203684445649655e-3 l 1.8203684445649677e-3,-1.9838596460744765e-2 l -1.983859646074477e-2,-1.820368444564964e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -8.276171030124985e-2,0.48200252392430615 l -3.026422150999654e-3,1.969071912780692e-2 l 1.969071912780692e-2,3.0264221509996563e-3 l 3.0264221509996585e-3,-1.969071912780692e-2 l -1.9690719127806924e-2,-3.026422150999658e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.11143764819049162,0.4760774313035769 l -4.221217368256577e-3,1.9469591026423018e-2 l 1.9469591026423018e-2,4.221217368256579e-3 l 4.221217368256581e-3,-1.9469591026423018e-2 l -1.946959102642302e-2,-4.221217368256577e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.13969903070921658,0.46841516045726816 l -5.400309379653141e-3,1.9176034767653945e-2 l 1.9176034767653945e-2,5.400309379653143e-3 l 5.400309379653145e-3,-1.9176034767653945e-2 l -1.917603476765395e-2,-5.400309379653145e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.16744072365824106,0.45904421553618807 l -6.55931188546392e-3,1.881114240006317e-2 l 1.881114240006317e-2,6.559311885463922e-3 l 6.5593118854639235e-3,-1.881114240006317e-2 l -1.8811142400063173e-2,-6.559311885463923e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.1945595261177148,0.4479994570709283 l -7.693913320243786e-3,1.837627134722433e-2 l 1.837627134722433e-2,7.693913320243787e-3 l 7.693913320243789e-3,-1.837627134722433e-2 l -1.8376271347224332e-2,-7.6939133202437865e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.2209545543613196,0.435321972288402 l -8.799892892134481e-3,1.7873039358016412e-2 l 1.7873039358016412e-2,8.799892892134483e-3 l 8.799892892134484e-3,-1.7873039358016412e-2 l -1.7873039358016415e-2,-8.799892892134484e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.2465276171503581,0.4210589222646599 l -9.873136284487596e-3,1.7303318488491655e-2 l 1.7303318488491655e-2,9.873136284487598e-3 l 9.8731362844876e-3,-1.7303318488491655e-2 l -1.730331848849166e-2,-9.873136284487598e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.27118358101161105,0.40526336648259076 l -1.090965096139273e-2,1.666922813770408e-2 l 1.666922813770408e-2,1.0909650961392731e-2 l 1.0909650961392733e-2,-1.666922813770408e-2 l -1.6669228137704082e-2,-1.090965096139273e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.29483072414010575,0.3879940654471588 l -1.1905581020173299e-2,1.597312716340579e-2 l 1.597312716340579e-2,1.19055810201733e-2 l 1.1905581020173302e-2,-1.597312716340579e-2 l -1.5973127163405793e-2,-1.1905581020173302e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3173810776102546,0.36931526209246773 l -1.2857221535597726e-2,1.521760510694126e-2 l 1.5217605106941258e-2,1.2857221535597728e-2 l 1.285722153559773e-2,-1.5217605106941257e-2 l -1.5217605106941262e-2,-1.2857221535597731e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3387507526260367,0.34929644279382444 l -1.376103234244469e-2,1.4405472559983371e-2 l 1.440547255998337e-2,1.3761032342444692e-2 l 1.3761032342444694e-2,-1.4405472559983368e-2 l -1.4405472559983373e-2,-1.3761032342444697e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.35886025259282867,0.32801207887386025 l -1.4613651205150239e-2,1.3539750708947843e-2 l 1.3539750708947841e-2,1.461365120515024e-2 l 1.4613651205150242e-2,-1.353975070894784e-2 l -1.3539750708947845e-2,-1.4613651205150244e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3776347688499577,0.30554134956431905 l -1.541190632554491e-2,1.2623660095981332e-2 l 1.262366009598133e-2,1.5411906325544912e-2 l 1.5411906325544913e-2,-1.2623660095981329e-2 l -1.2623660095981334e-2,-1.5411906325544913e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.39500445896383307,0.2819678474541146 l -1.6152828142151278e-2,1.1660608638333096e-2 l 1.1660608638333094e-2,1.6152828142151278e-2 l 1.6152828142151278e-2,-1.1660608638333092e-2 l -1.1660608638333094e-2,-1.6152828142151285e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4109047065463864,0.2573792675194093 l -1.683366037714766e-2,1.0654178950679005e-2 l 1.0654178950679003e-2,1.683366037714766e-2 l 1.683366037714766e-2,-1.0654178950679001e-2 l -1.0654178950679003e-2,-1.6833660377147664e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4252763616322785,0.2318670808925437 l -1.7451870289902666e-2,9.608115017559656e-3 l 9.608115017559654e-3,1.7451870289902666e-2 l 1.7451870289902666e-2,-9.608115017559652e-3 l -9.608115017559654e-3,-1.745187028990267e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.43806596072065707,0.20552619458341523 l -1.800515809893669e-2,8.526308265511944e-3 l 8.526308265511942e-3,1.800515809893669e-2 l 1.800515809893669e-2,-8.52630826551194e-3 l -8.526308265511942e-3,-1.8005158098936692e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.44922592566288944,0.17845459841916916 l -1.8491465537260058e-2,7.4127830867067954e-3 l 7.412783086706794e-3,1.8491465537260058e-2 l 1.8491465537260058e-2,-7.412783086706792e-3 l -7.412783086706794e-3,-1.849146553726006e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4587147406564016,0.1507530005156045 l -1.8908983509261436e-2,6.27168186794593e-3 l 6.271681867945928e-3,1.8908983509261436e-2 l 1.8908983509261436e-2,-6.271681867945926e-3 l -6.271681867945928e-3,-1.8908983509261443e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4664971066861904,0.12252445263636942 l -1.925615882066231e-2,5.1072495807109085e-3 l 5.107249580710907e-3,1.925615882066231e-2 l 1.925615882066231e-2,-5.107249580710905e-3 l -5.107249580710908e-3,-1.9256158820662315e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4725440728394775,9.387396683363167e-2 l -1.953169995650172e-2,3.923817989590407e-3 l 3.923817989590404e-3,1.953169995650172e-2 l 1.953169995650172e-2,-3.923817989590401e-3 l -3.923817989590404e-3,-1.9531699956501725e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4768331440050068,6.49081247963475e-2 l -1.9734581885656747e-2,2.7257895378314328e-3 l 2.7257895378314306e-3,1.9734581885656747e-2 l 1.9734581885656747e-2,-2.7257895378314284e-3 l -2.7257895378314315e-3,-1.973458188565675e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4793483645563353,3.5734681359378115e-2 l -1.98640498740256e-2,1.5176209699612868e-3 l 1.5176209699612846e-3,1.98640498740256e-2 l 1.98640498740256e-2,-1.5176209699612824e-3 l -1.5176209699612857e-3,-1.9864049874025604e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.48008037770781187,6.462163648427048e-3 l -1.9919622292188063e-2,3.038067524052172e-4 l 3.0380675240521495e-4,1.9919622292188063e-2 l 1.9919622292188063e-2,-3.0380675240521273e-4 l -3.0380675240521474e-4,-1.991962229218807e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4790264603224342,-2.2800532647995763e-2 l -1.990109240709857e-2,-9.11137646223892e-4 l -9.111376462238942e-4,1.990109240709857e-2 l 1.990109240709857e-2,9.111376462238963e-4 l 9.111376462238932e-4,-1.9901092407098572e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4761905330420975,-5.19445483776874e-2 l -1.9808529151146687e-2,-2.1226925529653296e-3 l -2.1226925529653318e-3,1.9808529151146687e-2 l 1.9808529151146687e-2,2.122692552965334e-3 l 2.122692552965332e-3,-1.980852915114669e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.47158314570254883,-8.086146588794851e-2 l -1.9642276865724145e-2,-3.326350903990843e-3 l -3.3263509039908453e-3,1.9642276865724145e-2 l 1.9642276865724145e-2,3.3263509039908475e-3 l 3.326350903990846e-3,-1.964227686572415e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4652214380873056,-0.10944371234637161 l -1.940295402025219e-2,-4.517635011178082e-3 l -4.5176350111780835e-3,1.940295402025219e-2 l 1.940295402025219e-2,4.517635011178085e-3 l 4.517635011178085e-3,-1.9402954020252192e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4571290761665348,-0.1375849599188431 l -1.909145091143476e-2,-5.692113219404503e-3 l -5.6921132194045045e-3,1.909145091143476e-2 l 1.909145091143476e-2,5.692113219404506e-3 l 5.692113219404504e-3,-1.9091450911434764e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4473361640580896,-0.16518052131607047 l -1.8708926351296243e-2,-6.845416392595538e-3 l -6.845416392595539e-3,1.8708926351296243e-2 l 1.8708926351296243e-2,6.845416392595541e-3 l 6.845416392595539e-3,-1.8708926351296246e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4358791320382141,-0.19212773923717366 l -1.825680335632465e-2,-7.973254167197715e-3 l -7.973254167197717e-3,1.825680335632465e-2 l 1.825680335632465e-2,7.973254167197718e-3 l 7.973254167197717e-3,-1.8256803356324652e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.42280060101852257,-0.2183263682615871 l -1.7736763853756807e-2,-9.071430912612886e-3 l -9.071430912612888e-3,1.7736763853756807e-2 l 1.7736763853756807e-2,9.07143091261289e-3 l 9.07143091261289e-3,-1.773676385375681e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.4081492239934088,-0.24367894776860863 l -1.715074242469857e-2,-1.0135861339219635e-2 l -1.0135861339219636e-2,1.715074242469857e-2 l 1.715074242469857e-2,1.0135861339219638e-2 l 1.0135861339219635e-2,-1.7150742424698575e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3919795050477118,-0.2680911644973093 l -1.650091910735605e-2,-1.116258569591896e-2 l -1.1162585695918962e-2,1.650091910735605e-2 l 1.650091910735605e-2,1.1162585695918964e-2 l 1.1162585695918964e-2,-1.6500919107356054e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3743515965979403,-0.2914722033980585 l -1.5789711287150298e-2,-1.2147784500668469e-2 l -1.214778450066847e-2,1.5789711287150298e-2 l 1.5789711287150298e-2,1.2147784500668472e-2 l 1.214778450066847e-2,-1.57897112871503e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.35533107562133215,-0.3137350854704742 l -1.5019764703884761e-2,-1.3087792749206423e-2 l -1.3087792749206425e-2,1.501976470388476e-2 l 1.5019764703884757e-2,1.3087792749206427e-2 l 1.308779274920643e-2,-1.5019764703884763e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.33498869970519213,-0.33479699133101587 l -1.4193943609419432e-2,-1.3979113549108324e-2 l -1.3979113549108326e-2,1.419394360941943e-2 l 1.4193943609419429e-2,1.3979113549108328e-2 l 1.397911354910833e-2,-1.4193943609419434e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.3134001438240199,-0.354579569306532 l -1.3315320112465836e-2,-1.4818431128456395e-2 l -1.4818431128456397e-2,1.3315320112465834e-2 l 1.3315320112465832e-2,1.4818431128456398e-2 l 1.48184311284564e-2,-1.3315320112465837e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.29064571882363416,-0.37300922690763 l -1.238716275014081e-2,-1.5602623170728908e-2 l -1.560262317072891e-2,1.2387162750140809e-2 l 1.2387162750140807e-2,1.5602623170728911e-2 l 1.5602623170728913e-2,-1.2387162750140812e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.26681007265955214,-0.3900174045975694 l -1.1412924328793785e-2,-1.6328772430022707e-2 l -1.6328772430022707e-2,1.1412924328793784e-2 l 1.1412924328793782e-2,1.6328772430022707e-2 l 1.632877243002271e-2,-1.1412924328793784e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.24198187550103434,-0.40554083083824327 l -1.0396229079340355e-2,-1.6994177583399578e-2 l -1.6994177583399578e-2,1.0396229079340354e-2 l 1.0396229079340352e-2,1.6994177583399578e-2 l 1.6994177583399578e-2,-1.0396229079340354e-2 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.2162534898722316,-0.41952175746445447 l -9.340859174885242e-3,-1.7596363279985015e-2 l -1.7596363279985015e-2,9.34085917488524e-3 l 9.340859174885238e-3,1.7596363279985015e-2 l 1.7596363279985018e-2,-9.34085917488524e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.18972062705752912,-0.43190817451088304 l -8.250740660789943e-3,-1.8133089349436027e-2 l -1.8133089349436027e-2,8.250740660789941e-3 l 8.25074066078994e-3,1.8133089349436027e-2 l 1.813308934943603e-2,-8.250740660789941e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.16248199104928163,-0.44265400369257385 l -7.129928849526107e-3,-1.8602359135521978e-2 l -1.8602359135521978e-2,7.1299288495261055e-3 l 7.129928849526104e-3,1.8602359135521978e-2 l 1.860235913552198e-2,-7.129928849526106e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.13463891136247902,-0.4517192698191826 l -5.982593234646794e-3,-1.9002426923816894e-2 l -1.9002426923816894e-2,5.982593234646792e-3 l 5.98259323464679e-3,1.9002426923816894e-2 l 1.9002426923816897e-2,-5.982593234646793e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -0.10629496608229577,-0.4590702495053097 l -4.8130019799966e-3,-1.933180443587177e-2 l -1.933180443587177e-2,4.8130019799965985e-3 l 4.813001979996597e-3,1.933180443587177e-2 l 1.9331804435871777e-2,-4.8130019799965985e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -7.755559654681042e-2,-0.46467959662370906 l -3.625506041861828e-3,-1.9589266365708187e-2 l -1.9589266365708187e-2,3.6255060418618258e-3 l 3.6255060418618236e-3,1.9589266365708187e-2 l 1.958926636570819e-2,-3.625506041861827e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -4.8527715098302886e-2,-0.4685264440346768 l -2.4245229831273227e-3,-1.9773854938036996e-2 l -1.9773854938036996e-2,2.4245229831273206e-3 l 2.4245229831273184e-3,1.9773854938036996e-2 l 1.9773854938037e-2,-2.424522983127321e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M -1.9319307362319047e-2,-0.4705964812131827 l -1.2145205396523993e-3,-1.9884883471245316e-2 l -1.9884883471245316e-2,1.2145205396523972e-3 l 1.214520539652395e-3,1.9884883471245316e-2 l 1.988488347124532e-2,-1.2145205396523959e-3 Z" /></g><g fill="rgb(0,128,0)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.96096946594884e-3,-0.470882007484962 l -2.2117795297368607e-18,-1.9921938931897233e-2 h -1.9921938931897233e-2 l -2.2117795297368607e-18,1.9921938931897233e-2 h 1.992193893189724e-2 Z" /></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M -1.1459259293799182,-0.10594335723948829 l -0.354074070620082,-0.25724987036946295 l -0.35407407062008195,0.25724987036946306 l 0.13524426044184076,0.4162390338592956 l 0.4376596203564825,-1.6196659582282392e-17 l 0.13524426044184074,-0.4162390338592957 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.100844509232638,3.280298738027711e-2 c 7.662749022826411e-2,-2.4897780848057556e-2 0.11856270532054258,-0.10720027453878136 9.366492447248503e-2 -0.18382776476704546c -2.4897780848057553e-2,-7.662749022826411e-2 -0.10720027453878136,-0.11856270532054258 -0.18382776476704543 -9.366492447248503e-2c -7.662749022826411e-2,2.4897780848057546e-2 -0.1185627053205426,0.10720027453878135 -9.366492447248505e-2 0.18382776476704543c 2.4897780848057542e-2,7.662749022826411e-2 0.10720027453878134,0.1185627053205426 0.18382776476704543 9.366492447248509e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3991948800284533,0.39604563340962845 c 4.735839343366765e-2,6.518323650466092e-2 0.13859141049185414,7.963312685054068e-2 0.20377464699651504 3.2274733416873036e-2c 6.518323650466092e-2,-4.735839343366764e-2 7.963312685054069e-2,-0.1385914104918541 3.227473341687305e-2 -0.203774646996515c -4.735839343366764e-2,-6.518323650466092e-2 -0.1385914104918541,-7.963312685054069e-2 -0.20377464699651499 -3.2274733416873064e-2c -6.518323650466093e-2,4.7358393433667635e-2 -7.963312685054069e-2,0.1385914104918541 -3.227473341687309e-2 0.20377464699651504Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.8368545003849355,0.22454571982998633 c -4.735839343366766e-2,6.51832365046609e-2 -3.290850308778795e-2,0.15641625356284738 3.227473341687294e-2 0.20377464699651504c 6.51832365046609e-2,4.735839343366767e-2 0.15641625356284738,3.2908503087787956e-2 0.20377464699651504 -3.2274733416872925e-2c 4.735839343366767e-2,-6.51832365046609e-2 3.2908503087787956e-2,-0.15641625356284738 -3.227473341687291e-2 -0.203774646996515c -6.518323650466089e-2,-4.735839343366768e-2 -0.15641625356284736,-3.290850308778796e-2 -0.20377464699651504 3.22747334168729e-2Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.808992650472802,-0.24468970185925348 c -7.662749022826411e-2,-2.4897780848057573e-2 -0.15892998391898794,1.7037434244220863e-2 -0.18382776476704552 9.366492447248496e-2c -2.4897780848057577e-2,7.662749022826411e-2 1.7037434244220856e-2,0.15892998391898794 9.366492447248494e-2 0.18382776476704552c 7.662749022826411e-2,2.4897780848057584e-2 0.15892998391898794,-1.703743424422085e-2 0.18382776476704552 -9.366492447248494e-2c 2.4897780848057587e-2,-7.662749022826411e-2 -1.7037434244220842e-2,-0.15892998391898794 -9.366492447248494e-2 -0.18382776476704554Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3541134598811726,-0.3631932276089513 c 0.0,-8.057091131320666e-2 -6.531562880562083e-2,-0.1458865401188275 -0.14588654011882748 -0.1458865401188275c -8.057091131320666e-2,-4.933545432205191e-18 -0.1458865401188275,6.531562880562082e-2 -0.1458865401188275 0.14588654011882746c -9.867090864410381e-18,8.057091131320666e-2 6.531562880562082e-2,0.1458865401188275 0.14588654011882746 0.1458865401188275c 8.057091131320666e-2,1.480063629661557e-17 0.1458865401188275,-6.53156288056208e-2 0.14588654011882757 -0.14588654011882746Z" /></g></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Factorization_showDefaultColors.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="500.0" height="50.0" font-size="1" viewBox="0 0 500 50"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(50.0,0.0,0.0,50.0,25.0,25.0)"><g><g><g fill="rgb(177,98,98)" fill-opacity="1.0" stroke-width="0.0"><path d="M 9.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,9.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">9</text></g></g><g fill="rgb(255,255,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 8.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,8.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">8</text></g></g><g><g><g><g fill="rgb(148,89,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 7.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,7.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">7</text></g></g><g fill="rgb(148,148,148)" fill-opacity="1.0" stroke-width="0.0"><path d="M 6.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,6.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">6</text></g></g><g><g fill="rgb(89,89,255)" fill-opacity="1.0" stroke-width="0.0"><path d="M 5.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,5.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">5</text></g></g><g fill="rgb(89,148,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 4.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">4</text></g></g><g><g><g fill="rgb(255,255,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 3.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,3.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><g fill="rgb(255,177,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 2.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,2.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g><g fill="rgb(255,89,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 1.5,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,1.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g fill="rgb(89,89,89)" fill-opacity="1.0" stroke-width="0.0"><path d="M 0.5000000000000001,0.5 l -1.1102230246251565e-16,-1.0 h -1.0 l -1.1102230246251565e-16,1.0 h 1.0 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">0</text></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Layout_CirclePacking_circlePackingExample.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="413.5969112431447" font-size="1" viewBox="0 0 400 414"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(42.26068207736615,0.0,0.0,42.26068207736615,193.52383413392164,202.60690940135464)"><g fill="rgb(75,0,130)" fill-opacity="1.0"><path d="M 0.4283021878736293,0.37790272040203 c 0.0,-0.8836555997292698 -0.7163444002707305,-1.6000000000000005 -1.6 -1.6000000000000005c -0.8836555997292698,-5.410830008785425e-17 -1.6000000000000005,0.7163444002707304 -1.6000000000000005 1.6c -1.082166001757085e-16,0.8836555997292698 0.7163444002707303,1.6000000000000005 1.5999999999999999 1.6000000000000005c 0.8836555997292698,1.6232490026356274e-16 1.6000000000000005,-0.7163444002707303 1.6000000000000008 -1.6Z" /></g><g fill="rgb(178,34,34)" fill-opacity="1.0"><path d="M 3.429139185647939,0.37790272040203 c 0.0,-0.8284271247461904 -0.6715728752538098,-1.5000000000000004 -1.5 -1.5000000000000004c -0.8284271247461904,-5.0726531332363355e-17 -1.5000000000000004,0.6715728752538098 -1.5000000000000004 1.5c -1.0145306266472671e-16,0.8284271247461904 0.6715728752538097,1.5000000000000004 1.4999999999999998 1.5000000000000004c 0.8284271247461904,1.5217959399709008e-16 1.5000000000000004,-0.6715728752538096 1.5000000000000007 -1.5Z" /></g><g fill="rgb(255,228,196)" fill-opacity="1.0"><path d="M 1.8739076705634297,-2.1314484384664167 c 0.0,-0.773198649763111 -0.6268013502368892,-1.4000000000000004 -1.4000000000000001 -1.4000000000000004c -0.773198649763111,-4.734476257687246e-17 -1.4000000000000004,0.6268013502368891 -1.4000000000000004 1.4c -9.468952515374493e-17,0.773198649763111 0.626801350236889,1.4000000000000004 1.3999999999999997 1.4000000000000004c 0.773198649763111,1.420342877306174e-16 1.4000000000000004,-0.626801350236889 1.400000000000001 -1.4Z" /></g><g fill="rgb(0,255,255)" fill-opacity="1.0"><path d="M 1.77068099314639,2.7689555974836706 c 0.0,-0.7179701747800317 -0.5820298252199685,-1.3000000000000003 -1.3 -1.3000000000000003c -0.7179701747800317,-4.396299382138157e-17 -1.3000000000000003,0.5820298252199684 -1.3000000000000003 1.2999999999999998c -8.792598764276314e-17,0.7179701747800317 0.5820298252199684,1.3000000000000003 1.2999999999999996 1.3000000000000003c 0.7179701747800317,1.3188898146414472e-16 1.3000000000000003,-0.5820298252199683 1.300000000000001 -1.2999999999999998Z" /></g><g fill="rgb(255,0,255)" fill-opacity="1.0"><path d="M -0.9238076071085222,-2.2560526889726837 c 0.0,-0.6627416997969522 -0.5372583002030478,-1.2000000000000002 -1.2 -1.2000000000000002c -0.6627416997969522,-4.058122506589068e-17 -1.2000000000000002,0.5372583002030478 -1.2000000000000002 1.1999999999999997c -8.116245013178136e-17,0.6627416997969522 0.5372583002030477,1.2000000000000002 1.1999999999999997 1.2000000000000002c 0.6627416997969522,1.2174367519767204e-16 1.2000000000000002,-0.5372583002030477 1.2000000000000006 -1.1999999999999997Z" /></g><g fill="rgb(255,228,196)" fill-opacity="1.0"><path d="M 3.9210018913093156,-1.3596952039512602 l 0.21631189606246304,-0.6657395614066076 l -0.21631189606246343,-0.6657395614066075 l -0.5663118960624633,-0.4114496766047311 l -0.7000000000000001,3.0531133177191805e-16 l -0.5663118960624632,0.4114496766047313 l -0.21631189606246312,0.6657395614066076 l 0.2163118960624633,0.6657395614066075 l 0.5663118960624632,0.4114496766047312 l 0.7000000000000001,-5.551115123125783e-17 l 0.5663118960624635,-0.4114496766047315 Z" /></g><g fill="rgb(255,255,0)" fill-opacity="1.0"><path d="M -0.8213213609409005,2.972512836784251 c 0.0,-0.6075132248138728 -0.4924867751861271,-1.1 -1.0999999999999999 -1.1c -0.6075132248138728,-3.719945631039979e-17 -1.1,0.49248677518612705 -1.1 1.0999999999999996c -7.439891262079957e-17,0.6075132248138728 0.492486775186127,1.1 1.0999999999999996 1.1c 0.6075132248138728,1.1159836893119935e-16 1.1,-0.49248677518612693 1.1000000000000005 -1.0999999999999996Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0"><path d="M -2.5792879958643296,-0.6055404097601156 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,255,255)" fill-opacity="1.0"><path d="M -2.6628205291317135,2.1438343993747306 l 0.18541019662496847,-0.5706339097770922 l -0.1854101966249685,-0.5706339097770923 l -0.4854101966249685,-0.3526711513754839 l -0.6000000000000001,1.1102230246251565e-16 l -0.48541019662496854,0.3526711513754839 l -0.18541019662496855,0.5706339097770922 l 0.18541019662496844,0.5706339097770923 l 0.4854101966249684,0.352671151375484 l 0.6000000000000001,1.3877787807814457e-16 l 0.48541019662496865,-0.3526711513754842 Z" /></g><g fill="rgb(255,0,0)" fill-opacity="1.0"><path d="M 3.568664805253792,2.6618056670215644 c 0.0,-0.49705627484771414 -0.4029437251522858,-0.9 -0.8999999999999998 -0.9c -0.49705627484771414,-3.043591879941801e-17 -0.9,0.40294372515228577 -0.9 0.8999999999999997c -6.087183759883602e-17,0.49705627484771414 0.4029437251522857,0.9 0.8999999999999996 0.9c 0.49705627484771414,9.130775639825402e-17 0.9,-0.40294372515228566 0.9000000000000002 -0.8999999999999997Z" /></g><g fill="rgb(255,0,255)" fill-opacity="1.0"><path d="M -0.25317430046539124,-3.380053010138343 l 0.15450849718747361,-0.47552825814757693 l -0.15450849718747384,-0.4755282581475769 l -0.40450849718747384,-0.29389262614623657 l -0.5000000000000001,1.942890293094024e-16 l -0.4045084971874737,0.2938926261462367 l -0.15450849718747367,0.47552825814757693 l 0.15450849718747378,0.47552825814757693 l 0.40450849718747384,0.29389262614623657 l 0.5000000000000001,-2.7755575615628914e-17 l 0.40450849718747384,-0.2938926261462369 Z" /></g><g fill="rgb(75,0,130)" fill-opacity="1.0"><path d="M 4.885774571458284,-0.42320950064664675 c 0.0,-0.4418277998646348 -0.35817220013536516,-0.8 -0.7999999999999998 -0.8c -0.4418277998646348,-2.7054150043927117e-17 -0.8,0.3581722001353651 -0.8 0.7999999999999998c -5.4108300087854235e-17,0.4418277998646348 0.3581722001353651,0.8 0.7999999999999997 0.8c 0.4418277998646348,8.116245013178136e-17 0.8,-0.35817220013536505 0.8000000000000002 -0.7999999999999998Z" /></g><g fill="rgb(178,34,34)" fill-opacity="1.0"><path d="M 2.709627665967032,-3.5646078193003845 c 0.0,-0.38659932488155546 -0.31340067511844455,-0.7000000000000001 -0.7 -0.7000000000000001c -0.38659932488155546,-2.3672381288436228e-17 -0.7000000000000001,0.3134006751184445 -0.7000000000000001 0.6999999999999998c -4.7344762576872457e-17,0.38659932488155546 0.31340067511844444,0.7000000000000001 0.6999999999999997 0.7000000000000001c 0.38659932488155546,7.101714386530869e-17 0.7000000000000001,-0.31340067511844444 0.7000000000000002 -0.6999999999999998Z" /></g><g fill="rgb(178,34,34)" fill-opacity="1.0"><path d="M 4.152346261753313,2.1386236036594948 l 0.3500000000000002,-0.606217782649107 l -0.34999999999999976,-0.6062177826491072 l -0.7000000000000001,-3.3306690738754696e-16 l -0.35000000000000026,0.606217782649107 l 0.34999999999999953,0.6062177826491073 l 0.7000000000000003,3.3306690738754696e-16 Z" /></g><g fill="rgb(255,255,0)" fill-opacity="1.0"><path d="M 1.0358585438917434,-3.7982583711861024 l 0.12360679774997899,-0.3804226065180615 l -0.12360679774997901,-0.3804226065180615 l -0.323606797749979,-0.23511410091698928 l -0.4000000000000001,6.938893903907228e-17 l -0.323606797749979,0.23511410091698925 l -0.12360679774997903,0.3804226065180615 l 0.12360679774997894,0.3804226065180615 l 0.32360679774997897,0.2351141009169893 l 0.4000000000000001,6.938893903907228e-17 l 0.3236067977499792,-0.2351141009169893 Z" /></g><g fill="rgb(255,228,196)" fill-opacity="1.0"><path d="M -0.16142417423801636,4.215975471047451 c 0.0,-0.3313708498984761 -0.2686291501015239,-0.6000000000000001 -0.6 -0.6000000000000001c -0.3313708498984761,-2.029061253294534e-17 -0.6000000000000001,0.2686291501015239 -0.6000000000000001 0.5999999999999999c -4.058122506589068e-17,0.3313708498984761 0.26862915010152383,0.6000000000000001 0.5999999999999999 0.6000000000000001c 0.3313708498984761,6.087183759883602e-17 0.6000000000000001,-0.26862915010152383 0.6000000000000003 -0.5999999999999999Z" /></g><g fill="rgb(255,228,196)" fill-opacity="1.0"><path d="M 2.24051700265543,4.493110596177566 l 0.30000000000000016,-0.5196152422706631 l -0.2999999999999998,-0.5196152422706634 l -0.6,-2.220446049250313e-16 l -0.3000000000000002,0.5196152422706631 l 0.2999999999999996,0.5196152422706635 l 0.6000000000000003,1.1102230246251565e-16 Z" /></g><g fill="rgb(0,255,255)" fill-opacity="1.0"><path d="M -3.3158602094674583,-2.087177594952294 c 0.0,-0.2761423749153968 -0.22385762508460327,-0.5000000000000001 -0.5 -0.5000000000000001c -0.2761423749153968,-1.690884377745445e-17 -0.5000000000000001,0.22385762508460325 -0.5000000000000001 0.49999999999999994c -3.38176875549089e-17,0.2761423749153968 0.22385762508460322,0.5000000000000001 0.4999999999999999 0.5000000000000001c 0.2761423749153968,5.0726531332363355e-17 0.5000000000000001,-0.2238576250846032 0.5000000000000001 -0.49999999999999994Z" /></g><g fill="rgb(0,255,255)" fill-opacity="1.0"><path d="M 0.5337066247620417,4.992583921280141 l 0.24999999999999997,-0.43301270189221946 l -0.2500000000000001,-0.4330127018922194 l -0.5000000000000001,-2.7755575615628914e-17 l -0.25,0.4330127018922194 l 0.24999999999999992,0.4330127018922195 l 0.5000000000000003,-1.1102230246251565e-16 Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0"><path d="M -1.806643073214627,-3.654776529876637 l 9.270509831248423e-2,-0.2853169548885461 l -9.270509831248425e-2,-0.28531695488854614 l -0.24270509831248424,-0.17633557568774194 l -0.30000000000000004,5.551115123125783e-17 l -0.24270509831248427,0.17633557568774194 l -9.270509831248427e-2,0.2853169548885461 l 9.270509831248422e-2,0.28531695488854614 l 0.2427050983124842,0.176335575687742 l 0.30000000000000004,6.938893903907228e-17 l 0.24270509831248432,-0.1763355756877421 Z" /></g><g fill="rgb(255,0,255)" fill-opacity="1.0"><path d="M -3.0214528872156516,2.943867336790823 c 0.0,-0.22091389993231741 -0.1790861000676826,-0.4000000000000001 -0.39999999999999997 -0.4000000000000001c -0.22091389993231741,-1.352707502196356e-17 -0.4000000000000001,0.17908610006768258 -0.4000000000000001 0.39999999999999997c -2.705415004392712e-17,0.22091389993231741 0.17908610006768255,0.4000000000000001 0.3999999999999999 0.4000000000000001c 0.22091389993231741,4.058122506589068e-17 0.4000000000000001,-0.17908610006768255 0.40000000000000013 -0.39999999999999997Z" /></g><g fill="rgb(255,0,255)" fill-opacity="1.0"><path d="M -3.3650444491349507,-2.605252524083557 l 0.19999999999999998,-0.34641016151377557 l -0.2,-0.3464101615137755 l -0.4,-2.7755575615628914e-17 l -0.20000000000000004,0.34641016151377557 l 0.1999999999999999,0.34641016151377557 h 0.4000000000000002 Z" /></g><g fill="rgb(255,0,0)" fill-opacity="1.0"><path d="M 1.3306155545687088,4.468960939090743 l 6.180339887498944e-2,-0.19021130325903074 l -6.180339887498953e-2,-0.19021130325903074 l -0.1618033988749895,-0.1175570504584946 l -0.2,7.632783294297951e-17 l -0.16180339887498948,0.11755705045849466 l -6.180339887498946e-2,0.19021130325903074 l 6.1803398874989514e-2,0.19021130325903074 l 0.1618033988749895,0.1175570504584946 l 0.2,-1.3877787807814457e-17 l 0.1618033988749895,-0.11755705045849472 Z" /></g><g fill="rgb(255,255,0)" fill-opacity="1.0"><path d="M -2.5816870061259714,-3.5509789329488557 c 0.0,-0.16568542494923805 -0.13431457505076194,-0.30000000000000004 -0.3 -0.30000000000000004c -0.16568542494923805,-1.014530626647267e-17 -0.30000000000000004,0.13431457505076194 -0.30000000000000004 0.29999999999999993c -2.029061253294534e-17,0.16568542494923805 0.13431457505076191,0.30000000000000004 0.29999999999999993 0.30000000000000004c 0.16568542494923805,3.043591879941801e-17 0.30000000000000004,-0.13431457505076191 0.30000000000000016 -0.29999999999999993Z" /></g><g fill="rgb(255,255,0)" fill-opacity="1.0"><path d="M 3.1541251600783737,-3.1982508249997443 l 0.15000000000000008,-0.25980762113533157 l -0.1499999999999999,-0.2598076211353317 l -0.3,-1.1102230246251565e-16 l -0.1500000000000001,0.25980762113533157 l 0.1499999999999998,0.25980762113533173 l 0.30000000000000016,5.551115123125783e-17 Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0"><path d="M 0.635187541558963,-0.43429755764144096 c 0.0,-0.1104569499661587 -8.954305003384129e-2,-0.2 -0.19999999999999996 -0.2c -0.1104569499661587,-6.763537510981779e-18 -0.2,8.954305003384128e-2 -0.2 0.19999999999999996c -1.3527075021963559e-17,0.1104569499661587 8.954305003384128e-2,0.2 0.19999999999999993 0.2c 0.1104569499661587,2.029061253294534e-17 0.2,-8.954305003384126e-2 0.20000000000000004 -0.19999999999999996Z" /></g><g fill="rgb(0,0,255)" fill-opacity="1.0"><path d="M 0.5351857996281113,1.3631918120607462 l 9.999999999999998e-2,-0.17320508075688776 l -0.10000000000000002,-0.17320508075688773 l -0.19999999999999998,-1.3877787807814457e-17 l -0.1,0.17320508075688776 l 9.999999999999994e-2,0.17320508075688776 l 0.20000000000000012,-5.551115123125783e-17 Z" /></g><g fill="rgb(75,0,130)" fill-opacity="1.0"><path d="M -0.7540845878927575,-1.2657469582402172 l 3.090169943749472e-2,-9.510565162951537e-2 l -3.0901699437494764e-2,-9.510565162951537e-2 l -8.090169943749476e-2,-5.87785252292473e-2 l -0.1,3.8163916471489756e-17 l -8.090169943749474e-2,5.877852522924733e-2 l -3.090169943749473e-2,9.510565162951537e-2 l 3.0901699437494757e-2,9.510565162951537e-2 l 8.090169943749476e-2,5.87785252292473e-2 l 0.1,-6.938893903907228e-18 l 8.090169943749476e-2,-5.877852522924736e-2 Z" /></g><g fill="rgb(255,0,0)" fill-opacity="1.0"><path d="M 0.3024548627979472,-0.6237285653156157 c 0.0,-5.522847498307935e-2 -4.4771525016920645e-2,-0.1 -9.999999999999998e-2 -0.1c -5.522847498307935e-2,-3.3817687554908897e-18 -0.1,4.477152501692064e-2 -0.1 9.999999999999998e-2c -6.763537510981779e-18,5.522847498307935e-2 4.477152501692064e-2,0.1 9.999999999999996e-2 0.1c 5.522847498307935e-2,1.014530626647267e-17 0.1,-4.477152501692063e-2 0.10000000000000002 -9.999999999999998e-2Z" /></g><g fill="rgb(255,0,0)" fill-opacity="1.0"><path d="M 0.7243588453404477,-0.5288841181418678 l 4.999999999999999e-2,-8.660254037844388e-2 l -5.000000000000001e-2,-8.660254037844387e-2 l -9.999999999999999e-2,-6.938893903907228e-18 l -5.0e-2,8.660254037844388e-2 l 4.999999999999997e-2,8.660254037844388e-2 l 0.10000000000000006,-2.7755575615628914e-17 Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Layout_Tree_exampleSymmTree.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="233.33333333333331" font-size="1" viewBox="0 0 300 233"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(15.15151515151515,0.0,0.0,15.15151515151515,150.0,116.66666666666666)"><g stroke-width="3.0e-2"><path d="M 0.0,-6.0 l 4.0,4.0 " /><path d="M 0.0,-6.0 l -4.0,4.0 " /><path d="M 4.0,-2.0 v 4.0 " /><path d="M 4.0,2.0 l 4.0,4.0 " /><path d="M 4.0,2.0 v 4.0 " /><path d="M 4.0,2.0 l -4.0,4.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 9.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,8.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">J</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 5.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">I</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.0,6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">H</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 5.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">G</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 5.0,-2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,4.0,-2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">F</text></g></g><path d="M -4.0,-2.0 l 4.0,4.0 " /><path d="M -4.0,-2.0 v 4.0 " /><path d="M -4.0,-2.0 l -4.0,4.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">E</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -3.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,-4.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">D</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -7.0,2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,-8.0,2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">C</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -3.0,-2.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,-4.0,-2.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">B</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.0,-6.0 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><text transform="matrix(1.0,0.0,0.0,1.0,0.0,-6.0)" dominant-baseline="middle" text-anchor="middle" stroke="none">A</text></g></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Layout_Tree_exampleSymmTreeWithDs.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="186.49538102064614" font-size="1" viewBox="0 0 300 186"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(20.3527815468114,0.0,0.0,20.3527815468114,150.0,93.24769051032307)"><g stroke-width="3.0e-2"><path d="M -1.1499999999999995,-2.6650635094610964 l 5.35,5.386751345948129 " /><path d="M -1.1499999999999995,-2.6650635094610964 l -3.1500000000000004,5.386751345948129 " /><path d="M -1.1499999999999995,-2.6650635094610964 l -5.35,5.386751345948129 " /><g><path d="M 6.7,4.165063509461096 l -2.500000000000001,-4.330127018922193 l -2.4999999999999996,4.330127018922193 h 5.0 Z" /></g><g><g><path d="M 0.7000000000000002,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g><path d="M -1.2999999999999998,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g><g><path d="M -3.3,2.7216878364870327 c 0.0,-0.5522847498307935 -0.44771525016920644,-1.0 -0.9999999999999998 -1.0c -0.5522847498307935,-3.3817687554908895e-17 -1.0,0.4477152501692064 -1.0 0.9999999999999997c -6.763537510981779e-17,0.5522847498307935 0.4477152501692063,1.0 0.9999999999999996 1.0c 0.5522847498307935,1.0145306266472669e-16 1.0,-0.44771525016920627 1.0000000000000002 -0.9999999999999997Z" /></g></g><g><path d="M -6.299999999999999,2.7216878364870327 c 0.0,-0.1104569499661587 -8.954305003384129e-2,-0.2 -0.19999999999999996 -0.2c -0.1104569499661587,-6.763537510981779e-18 -0.2,8.954305003384128e-2 -0.2 0.19999999999999996c -1.3527075021963559e-17,0.1104569499661587 8.954305003384128e-2,0.2 0.19999999999999993 0.2c 0.1104569499661587,2.029061253294534e-17 0.2,-8.954305003384126e-2 0.20000000000000004 -0.19999999999999996Z" /></g><g><path d="M -0.6499999999999994,-1.1650635094610964 l -1.1102230246251565e-16,-3.0 h -1.0 l -1.1102230246251565e-16,3.0 h 1.0 Z" /></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Layout_Tree_fblEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="79.0306071821609" font-size="1" viewBox="0 0 300 79"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(19.95722403589922,0.0,0.0,19.95722403589922,150.0,39.51530359108046)"><g><path d="M -8.881784197001252e-16,-1.5 l 2.385702750691742,1.0 " /><path d="M -8.881784197001252e-16,-1.5 l -2.38570275069174,1.0 " /><path d="M 2.385702750691741,-0.5 l 2.1761764278035116,1.0 " /><path d="M 2.385702750691741,-0.5 l -0.6973767756037734,1.0 " /><path d="M 4.561879178495253,0.5 l 1.9709166110566567,1.0 " /><path d="M 4.561879178495253,0.5 l 0.20919146855312398,1.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 6.832795789551909,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,6.532795789551909,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 5.071070647048376,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,4.771070647048377,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 4.861879178495252,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,4.561879178495253,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><path d="M 1.6883259750879676,0.5 l 1.1193750372769244,1.0 " /><path d="M 1.6883259750879676,0.5 l -0.7861025719737418,1.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 3.107701012364892,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,2.807701012364892,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.2022234031142258,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,0.9022234031142258,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 1.9883259750879676,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,1.6883259750879676,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 2.685702750691741,-0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,2.385702750691741,-0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><path d="M -2.385702750691741,-0.5 l 0.697376775603769,1.0 " /><path d="M -2.385702750691741,-0.5 l -2.176176427803512,1.0 " /><path d="M -1.688325975087972,0.5 l 0.7861025719737453,1.0 " /><path d="M -1.688325975087972,0.5 l -1.1193750372769218,1.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -0.6022234031142266,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-0.9022234031142267,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -2.507701012364894,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-2.8077010123648938,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -1.388325975087972,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-1.688325975087972,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><path d="M -4.5618791784952535,0.5 l -0.20919146855312398,1.0 " /><path d="M -4.5618791784952535,0.5 l -1.9709166110566567,1.0 " /><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -4.471070647048378,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.7710706470483775,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -6.23279578955191,1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-6.53279578955191,1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">1</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -4.261879178495254,0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-4.5618791784952535,0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">2</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M -2.085702750691741,-0.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-2.385702750691741,-0.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">3</text></g></g><g><g fill="rgb(255,255,255)" fill-opacity="1.0"><path d="M 0.2999999999999991,-1.5 c 0.0,-0.16568542494923802 -0.13431457505076191,-0.3 -0.29999999999999993 -0.3c -0.16568542494923802,-1.0145306266472668e-17 -0.3,0.13431457505076191 -0.3 0.2999999999999999c -2.0290612532945336e-17,0.16568542494923802 0.1343145750507619,0.3 0.2999999999999999 0.3c 0.16568542494923802,3.0435918799418003e-17 0.3,-0.1343145750507619 0.3 -0.2999999999999999Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0" font-size="0.5em"><text transform="matrix(1.0,0.0,0.0,1.0,-8.881784197001252e-16,-1.5)" dominant-baseline="middle" text-anchor="middle" stroke="none">4</text></g></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Layout_Tree_tree500.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="233.40678713089463" font-size="1" viewBox="0 0 400 233"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g><path d="M -0.4010796456188147,-1.0577346848832085 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3690270794102326,-1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.33697451320165056,-0.9936295524660443 l 1.1915322378701072,3.205256620858208e-2 " /><path d="M -0.33697451320165056,-0.9936295524660443 l -1.1915322378701072,3.205256620858208e-2 " /><path d="M 0.8545577246684567,-0.9615769862574624 l 0.6378898894186467,3.205256620858208e-2 " /><path d="M 0.8545577246684567,-0.9615769862574624 l -0.6378898894186467,3.205256620858208e-2 " /><path d="M 1.4924476140871032,-0.9295244200488803 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5245001802956852,-0.8974718538402982 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4956528707079615,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.5277054369165435,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4956528707079615,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.21666783524980993,-0.9295244200488803 l 1.1796220802115471,3.205256620858208e-2 " /><path d="M 0.21666783524980993,-0.9295244200488803 l -1.1796220802115471,3.205256620858208e-2 " /><path d="M 1.3962899154613573,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.4283424816699393,-0.865419287631716 l 0.21435153651989267,3.205256620858208e-2 " /><path d="M 1.4283424816699393,-0.865419287631716 l -0.21435153651989267,3.205256620858208e-2 " /><path d="M 1.642694018189832,-0.833366721423134 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.642694018189832,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6779518410192722,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.61064145198125,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5785888857726675,-0.7692615890059697 l 0.20433510957971077,3.205256620858208e-2 " /><path d="M 1.5785888857726675,-0.7692615890059697 l -0.20433510957971077,3.205256620858208e-2 " /><path d="M 1.7829239953523786,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7508714291437966,-0.7051564565888057 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 1.7508714291437966,-0.7051564565888057 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 1.8149765615609605,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7829239953523786,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7508714291437966,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7829239953523786,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7540766857646548,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7861292519732368,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7540766857646548,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7861292519732368,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.8181818181818188,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.6867662967266321,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7188188629352146,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6867662967266321,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6867662967266321,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.7188188629352146,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6867662967266321,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7220241195560728,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6899715533474904,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7220241195560728,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.6547137305180502,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6226611643094682,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6547137305180502,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6226611643094682,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6579189871389084,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6258664209303264,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6579189871389084,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6258664209303264,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6579189871389084,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6899715533474904,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7220241195560728,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6899715533474904,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7540766857646548,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.7861292519732368,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.374253776192957,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.342201209984375,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.3101486437757925,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.342201209984375,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.342201209984375,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.374253776192957,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.374253776192957,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.406306342401539,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.438358908610121,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.470411474818703,-0.5128410593373132 l 7.211827396930968e-2,3.205256620858208e-2 " /><path d="M 1.470411474818703,-0.5128410593373132 l -7.211827396930968e-2,3.205256620858208e-2 " /><path d="M 1.542529748788013,-0.48078849312873106 l 4.807884931287312e-2,3.205256620858208e-2 " /><path d="M 1.542529748788013,-0.48078849312873106 l -4.807884931287312e-2,3.205256620858208e-2 " /><path d="M 1.5906085981008857,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5585560318923037,-0.416683360711567 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 1.5585560318923037,-0.416683360711567 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 1.6226611643094682,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.6547137305180502,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6258664209303264,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6579189871389084,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6258664209303264,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.4944508994751398,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5265034656837217,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5585560318923037,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5585560318923037,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.5906085981008857,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6258664209303264,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.593813854721744,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.52970872230458,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.561761288513162,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.52970872230458,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.497656156095998,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.561761288513162,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.593813854721744,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.4944508994751398,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.4623983332665578,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4335510236788336,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.465603589887416,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.497656156095998,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.5457350054088712,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.3982932008493933,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4335510236788336,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4014984574702516,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4736167314395612,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4415641652309792,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4095115990223972,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3454064666052332,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3774590328138152,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3133539003966508,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3454064666052332,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3133539003966508,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3454064666052332,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3774590328138152,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.5817941423935258,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6138467086021082,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.6458992748106902,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.2139909451500466,-0.833366721423134 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2139909451500466,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2460435113586286,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2139909451500466,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2492487679794868,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2171962017709048,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2492487679794868,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.1819383789414646,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.1498858127328822,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.1819383789414646,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2139909451500466,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2139909451500466,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2460435113586286,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.2460435113586286,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2813013341880688,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 1.2139909451500466,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.1819383789414646,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.1498858127328822,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.1498858127328822,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1851436355623228,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1210385031451584,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1530910693537404,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1851436355623228,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2171962017709048,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2492487679794868,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1851436355623228,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2171962017709048,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1851436355623228,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1530910693537404,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.1851436355623228,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.2171962017709048,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.4315477382907975,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.3994951720822155,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.9629542449617372,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9309016787531551,-0.865419287631716 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9629542449617372,-0.833366721423134 l 0.5014473736928564,3.205256620858208e-2 " /><path d="M -0.9629542449617372,-0.833366721423134 l -0.5014473736928564,3.205256620858208e-2 " /><path d="M -0.46150687126888085,-0.801314155214552 l 0.6312853079049643,3.205256620858208e-2 " /><path d="M -0.46150687126888085,-0.801314155214552 l -0.6312853079049643,3.205256620858208e-2 " /><path d="M 0.16977843663608339,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.13772587042750128,-0.7372090227973878 l 0.5784486557955048,3.205256620858208e-2 " /><path d="M 0.13772587042750128,-0.7372090227973878 l -0.5784486557955048,3.205256620858208e-2 " /><path d="M 0.716174526223006,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.7482270924315882,-0.6731038903802236 l 0.20934332304980172,3.205256620858208e-2 " /><path d="M 0.7482270924315882,-0.6731038903802236 l -0.20934332304980172,3.205256620858208e-2 " /><path d="M 0.9575704154813899,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.9575704154813899,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.9896229816899719,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.0216755478985542,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 1.0216755478985542,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0569333707279944,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.9896229816899719,-0.5448936255458953 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9607756721022481,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9928282383108301,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 1.0248808045194124,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9928282383108301,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9287231058936659,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9607756721022481,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.5388837693817864,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5068312031732044,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5388837693817864,-0.5769461917544774 l 0.2904763812652751,3.205256620858208e-2 " /><path d="M 0.5388837693817864,-0.5769461917544774 l -0.2904763812652751,3.205256620858208e-2 " /><path d="M 0.8293601506470615,-0.5448936255458953 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.8293601506470615,-0.5448936255458953 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.8934652830642257,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.9255178492728077,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8966705396850839,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.9287231058936659,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8966705396850839,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.7652550182298973,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.7652550182298973,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.7973075844384795,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.8293601506470615,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.8614127168556437,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8325654072679197,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8646179734765019,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8325654072679197,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8005128410593377,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.7332024520213153,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.7332024520213153,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7684602748507555,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.7011498858127333,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.6690973196041511,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7043551424335915,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6723025762250093,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7043551424335915,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7364077086421735,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7684602748507555,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8325654072679197,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.2484073881165113,-0.5448936255458953 l 0.15625626026683764,3.205256620858208e-2 " /><path d="M 0.2484073881165113,-0.5448936255458953 l -0.15625626026683764,3.205256620858208e-2 " /><path d="M 0.404663648383349,-0.5128410593373132 l 8.814455707360072e-2,3.205256620858208e-2 " /><path d="M 0.404663648383349,-0.5128410593373132 l -8.814455707360072e-2,3.205256620858208e-2 " /><path d="M 0.4928082054569497,-0.48078849312873106 l 4.807884931287312e-2,3.205256620858208e-2 " /><path d="M 0.4928082054569497,-0.48078849312873106 l -4.807884931287312e-2,3.205256620858208e-2 " /><path d="M 0.5408870547698228,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5729396209784049,-0.416683360711567 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.5729396209784049,-0.416683360711567 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.6370447533955691,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.6370447533955691,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6723025762250093,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6081974438078451,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.6402500100164273,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.5088344885612407,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.544092311390681,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5120397451820989,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5761448775992631,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.544092311390681,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.4447293561440766,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4126767899354945,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4447293561440766,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4767819223526587,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4767819223526587,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5088344885612407,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4767819223526587,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4767819223526587,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5088344885612407,-0.2564205296686566 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.5408870547698228,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5761448775992631,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.544092311390681,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5120397451820989,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.4447293561440766,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4126767899354945,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4126767899354945,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4447293561440766,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.4767819223526587,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5120397451820989,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4799871789735169,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4479346127649348,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.3806242237269124,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4158820465563527,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3838294803477706,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4158820465563527,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4479346127649348,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4799871789735169,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5120397451820989,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4479346127649348,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4799871789735169,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4479346127649348,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4158820465563527,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4479346127649348,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4960134620778079,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.3165190913097482,-0.48078849312873106 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.3165190913097482,-0.48078849312873106 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.3806242237269124,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3517769141391885,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3838294803477706,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 0.2524139588925841,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.2524139588925841,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.2844665251011662,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.3165190913097482,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.3485716575183303,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3838294803477706,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3517769141391885,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3197243479306064,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.2876717817220244,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.22356664930486023,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.2556192155134423,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.3197243479306064,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.4078689050042072,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 9.215112784967372e-2,-0.5128410593373132 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 9.215112784967372e-2,-0.5128410593373132 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.1562562602668378,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1562562602668378,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1883088264754199,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1562562602668378,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1883088264754199,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1562562602668378,-0.3525782282944028 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.1562562602668378,-0.3525782282944028 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M 0.220361392684002,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 0.1883088264754199,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.15946151688769603,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.19151408309627813,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.22356664930486023,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 9.215112784967372e-2,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.12740895067911404,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 9.535638447053192e-2,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.15946151688769603,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.19151408309627813,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.15946151688769603,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.19151408309627813,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.12740895067911404,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.15946151688769603,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M 2.804599543250952e-2,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 2.804599543250952e-2,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.330381826194982e-2,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.013141552143184e-4,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.125125205336773e-2,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 9.535638447053192e-2,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.2516126447373695,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5420890260026446,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5100364597940626,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.5420890260026446,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7514323490524465,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.7193797828438643,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.44072278536800336,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.44072278536800336,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.4054649625385631,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.47277535157658546,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5048279177851676,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5048279177851676,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.47277535157658546,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.44072278536800336,-0.5769461917544774 l 0.10817741095396452,3.205256620858208e-2 " /><path d="M -0.44072278536800336,-0.5769461917544774 l -0.10817741095396452,3.205256620858208e-2 " /><path d="M -0.33254537441403886,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.30049280820545676,-0.5128410593373132 l 0.1201971232821828,3.205256620858208e-2 " /><path d="M -0.30049280820545676,-0.5128410593373132 l -0.1201971232821828,3.205256620858208e-2 " /><path d="M -0.180295684923274,-0.48078849312873106 l 0.11218398173003728,3.205256620858208e-2 " /><path d="M -0.180295684923274,-0.48078849312873106 l -0.11218398173003728,3.205256620858208e-2 " /><path d="M -6.811170319323673e-2,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -6.811170319323673e-2,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -3.605913698465463e-2,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -4.006570776072527e-3,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -4.006570776072527e-3,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.125125205336773e-2,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -3.605913698465463e-2,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -4.006570776072527e-3,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M 2.804599543250952e-2,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 6.330381826194982e-2,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 3.125125205336773e-2,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.013141552143184e-4,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.285388036379642e-2,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -8.013141552143184e-4,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -3.285388036379642e-2,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.10016426940181877,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.13221683561040087,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.16106414519812473,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.12901157898954266,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -9.695901278096057e-2,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -6.490644657237853e-2,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.29247966665331127,-0.4487359269201491 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -0.29247966665331127,-0.4487359269201491 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -0.2283745342361471,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.2283745342361471,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.19632196802756502,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.22516927761528888,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.1931167114067068,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.257221843823871,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.22516927761528888,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.3565847990704754,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3565847990704754,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2892744100324531,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3213269762410352,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.3886373652790575,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3886373652790575,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3565847990704754,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.29247966665331127,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.257221843823871,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2892744100324531,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3213269762410352,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.42068993148763956,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.41748467486678137,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2892744100324531,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.17709042830241578,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.42068993148763956,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3886373652790575,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.41748467486678137,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.41748467486678137,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2972875515845986,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3293401177931807,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.548900196321968,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.548900196321968,-0.5448936255458953 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5168476301133859,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.48479506390480376,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5168476301133859,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.48479506390480376,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5168476301133859,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5456949397011097,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5136423734925276,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.48158980728394557,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5136423734925276,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.48158980728394557,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5136423734925276,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.58095276253055,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5777475059096917,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5456949397011097,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.43751752874714517,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.46957009495572727,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5336752273728914,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5016226611643093,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.46957009495572727,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.43751752874714517,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.1409311270483595,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.1729836932569416,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.092792179173845,-0.7692615890059697 l 0.10316919748387357,3.205256620858208e-2 " /><path d="M -1.092792179173845,-0.7692615890059697 l -0.10316919748387357,3.205256620858208e-2 " /><path d="M -0.9896229816899715,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9575704154813894,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9255178492728073,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8934652830642252,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9223125926519491,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.890260026443367,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9223125926519491,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9543651588605312,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9864177250691133,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1959613766577186,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1959613766577186,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1639088104491364,-0.7051564565888057 l 0.12220040867021918,3.205256620858208e-2 " /><path d="M -1.1639088104491364,-0.7051564565888057 l -0.12220040867021918,3.205256620858208e-2 " /><path d="M -1.0417084017789173,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0417084017789173,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.006450578949477,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.0737609679874995,-0.6410513241716416 l 8.413798629752796e-2,3.205256620858208e-2 " /><path d="M -1.0737609679874995,-0.6410513241716416 l -8.413798629752796e-2,3.205256620858208e-2 " /><path d="M -0.9896229816899715,-0.6089987579630594 l 0.13622340638647384,3.205256620858208e-2 " /><path d="M -0.9896229816899715,-0.6089987579630594 l -0.13622340638647384,3.205256620858208e-2 " /><path d="M -0.8533995753034976,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8213470090949155,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.7892944428863335,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8213470090949155,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.7892944428863335,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.7892944428863335,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7540366200568932,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.8213470090949155,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.7892944428863335,-0.3846307945029849 l 0.17628911414720144,3.205256620858208e-2 " /><path d="M -0.7892944428863335,-0.3846307945029849 l -0.17628911414720144,3.205256620858208e-2 " /><path d="M -0.613005328739132,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.613005328739132,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.58095276253055,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.548900196321968,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.548900196321968,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5168476301133859,-0.2564205296686566 l 0.1923153972514925,3.205256620858208e-2 " /><path d="M -0.5168476301133859,-0.2564205296686566 l -0.1923153972514925,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3565847990704754,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3886373652790575,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3565847990704754,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.32453223286189337,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.29247966665331127,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.29247966665331127,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.257221843823871,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.32453223286189337,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3565847990704754,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3886373652790575,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.41748467486678137,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3213269762410352,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.2892744100324531,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.3565847990704754,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.3886373652790575,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.42068993148763956,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.45274249769622166,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.48158980728394557,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.44953724107536347,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.41748467486678137,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3213269762410352,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3854321086581993,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3533795424496172,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3213269762410352,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.7091630273648784,-0.22436796346007448 l 9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -0.7091630273648784,-0.22436796346007448 l -9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -0.613005328739132,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.613005328739132,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.613005328739132,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.58095276253055,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.548900196321968,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.548900196321968,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.5168476301133859,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5456949397011097,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5136423734925276,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5777475059096917,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5456949397011097,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5777475059096917,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.6771104611562961,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6771104611562961,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.6771104611562961,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6771104611562961,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.6450578949477141,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6739052045354379,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6418526383268559,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7059577707440201,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6739052045354379,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6418526383268559,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7059577707440201,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6739052045354379,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6418526383268559,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6418526383268559,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.8053207259906245,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8373732921992066,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8053207259906245,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.7732681597820424,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8053207259906245,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8053207259906245,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7700629031611842,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.8373732921992066,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8021154693697663,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8341680355783484,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8021154693697663,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7700629031611842,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8021154693697663,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8341680355783484,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8021154693697663,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7059577707440201,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5136423734925276,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5777475059096917,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5456949397011097,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.5777475059096917,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6418526383268559,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.6098000721182738,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.9655835570335349,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9335309908249528,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,-6.410513241716409e-2 l 9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,-6.410513241716409e-2 l -9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -0.9014784246163707,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8694258584077887,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9014784246163707,3.205256620858221e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9014784246163707,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.8694258584077887,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8341680355783484,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8662206017869305,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.9335309908249528,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9655835570335349,9.615769862574641e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,0.1602628310429104 l 9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,0.1602628310429104 l -9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -0.9335309908249528,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.9335309908249528,0.1923153972514926 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8982731679955125,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -0.9655835570335349,0.2243679634600746 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9303257342040946,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1258463880764453,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,0.2243679634600746 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,0.2243679634600746 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,0.2884730958772388 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,0.2884730958772388 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,0.3205256620858208 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.0617412556592811,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1578989542850273,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1578989542850273,0.3205256620858208 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1899515204936095,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1578989542850273,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1258463880764453,0.4166833607115672 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,0.4487359269201492 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,0.4807884931287314 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,0.5128410593373134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,0.4807884931287314 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,0.4487359269201492 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.154693697664169,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.1867462638727513,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.154693697664169,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1258463880764453,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.154693697664169,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9303257342040946,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8982731679955125,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8662206017869305,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8982731679955125,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.0937938218678633,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,3.205256620858221e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -0.997636123242117,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9303257342040946,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9623783004126767,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7860891862654753,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8181417524740573,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7860891862654753,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8181417524740573,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.7860891862654753,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8181417524740573,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.8501943186826394,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1258463880764453,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0296886894506991,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9944308666212588,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.0617412556592811,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.0937938218678633,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0617412556592811,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.026483432829841,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0585359990384229,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9864177250691133,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.1578989542850273,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.1867462638727513,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.154693697664169,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0705557113666413,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.038503145158059,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.2861092191193557,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.2540566529107737,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.2540566529107737,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.2220040867021917,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2508513962899155,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2187988300813335,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2829039624984975,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2508513962899155,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2829039624984975,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.1607035538282782,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2248086862454426,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.1927561200368604,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.0895869225529868,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.45830161464802266,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4644016186545934,-0.801314155214552 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.4644016186545934,-0.801314155214552 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.4002964862374294,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4002964862374294,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3682439200288474,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3682439200288474,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3682439200288474,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3682439200288474,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.5128410593373132 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.5128410593373132 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.272086221403101,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.304138787611683,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.304138787611683,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2688809647822428,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.3361913538202652,-0.416683360711567 l 0.14623983332665574,3.205256620858208e-2 " /><path d="M -1.3361913538202652,-0.416683360711567 l -0.14623983332665574,3.205256620858208e-2 " /><path d="M -1.1899515204936095,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1899515204936095,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1578989542850273,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.1258463880764453,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.0937938218678633,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.090588565247005,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.122641131455587,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.154693697664169,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.2220040867021917,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.2540566529107737,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2187988300813335,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2508513962899155,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2187988300813335,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.1867462638727513,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4824311871469211,-0.3846307945029849 l 0.13221683561040107,3.205256620858208e-2 " /><path d="M -1.4824311871469211,-0.3846307945029849 l -0.13221683561040107,3.205256620858208e-2 " /><path d="M -1.35021435153652,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.35021435153652,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3149565287070795,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.3822669177451021,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4143194839536841,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3790616611242439,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3790616611242439,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3470090949156617,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.614648022757322,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5825954565487401,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5505428903401577,-0.2884730958772386 l 0.10417084017789176,3.205256620858208e-2 " /><path d="M -1.5505428903401577,-0.2884730958772386 l -0.10417084017789176,3.205256620858208e-2 " /><path d="M -1.446372050162266,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.478424616370848,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4143194839536841,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.478424616370848,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.478424616370848,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4143194839536841,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3822669177451021,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3822669177451021,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.35021435153652,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3822669177451021,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.35021435153652,9.615769862574641e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.35021435153652,9.615769862574641e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3149565287070795,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.3822669177451021,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.35021435153652,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3149565287070795,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3470090949156617,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3790616611242439,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3470090949156617,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3790616611242439,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3470090949156617,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4143194839536841,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.446372050162266,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4431667935414079,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3790616611242439,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.478424616370848,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.51047718257943,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.51047718257943,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4752193597499899,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5425297487880125,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6066348812051765,9.615769862574641e-2 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.6066348812051765,9.615769862574641e-2 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5425297487880125,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5425297487880125,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5072719259585718,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5745823149965945,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5393244921671543,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5713770583757363,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5393244921671543,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6707400136223405,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6707400136223405,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6386874474137585,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6066348812051765,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,0.2243679634600746 l 8.01314155214552e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,0.2243679634600746 l -8.01314155214552e-2,3.205256620858208e-2 " /><path d="M -1.4944508994751393,0.2564205296686568 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4944508994751393,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.459193076645699,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5265034656837213,0.2884730958772388 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5265034656837213,0.2884730958772388 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.491245642854281,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5585560318923033,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5265034656837213,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5265034656837213,0.352578228294403 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4944508994751393,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.459193076645699,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.491245642854281,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5585560318923033,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.523298209062863,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.523298209062863,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.523298209062863,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.491245642854281,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6547137305180497,0.2564205296686568 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6867662967266317,0.2884730958772388 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.2884730958772388 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.3205256620858208 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.3205256620858208 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.352578228294403 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6226611643094677,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6226611643094677,0.384630794502985 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6547137305180497,0.4166833607115672 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6226611643094677,0.4487359269201492 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.4807884931287314 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.5128410593373134 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.5128410593373134 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.5448936255458954 l 9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.5448936255458954 l -9.615769862574625e-2,3.205256620858208e-2 " /><path d="M -1.5585560318923033,0.5769461917544776 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.6089987579630596 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.6089987579630596 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6226611643094677,0.6410513241716418 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.6731038903802238 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.6731038903802238 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.7051564565888058 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.7051564565888058 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5585560318923033,0.737209022797388 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5265034656837213,0.76926158900597 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5265034656837213,0.76926158900597 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.4623983332665573,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4944508994751393,0.8333667214231342 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4623983332665573,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4944508994751393,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.523298209062863,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.491245642854281,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.459193076645699,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.491245642854281,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.459193076645699,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5906085981008853,0.8013141552145522 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6226611643094677,0.8333667214231342 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5906085981008853,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6226611643094677,0.8974718538402984 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6226611643094677,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6547137305180497,0.9295244200488804 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.9615769862574626 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.9936295524660446 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.9936295524660446 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.7508714291437957,1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7508714291437957,1.0256821186746266 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7797187387315199,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7476661725229374,1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.9936295524660446 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.9615769862574626 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.523298209062863,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6226611643094677,0.737209022797388 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.7051564565888058 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.7188188629352137,0.7051564565888058 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.737209022797388 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.76926158900597 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.8333667214231342 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.8333667214231342 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6867662967266317,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.782923995352378,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.81497656156096,0.8974718538402984 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7797187387315199,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.8117713049401019,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7797187387315199,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.7051564565888058 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.6731038903802238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.6089987579630596 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.555350775271445,0.5769461917544776 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.7508714291437957,0.5769461917544776 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.6089987579630596 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.7188188629352137,0.6089987579630596 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.7508714291437957,0.6410513241716418 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.6731038903802238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7476661725229374,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.6089987579630596 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7476661725229374,0.5769461917544776 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.5448936255458954 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.5448936255458954 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.5128410593373134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.4807884931287314 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.4487359269201492 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6194559076886095,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.587403341480027,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.7188188629352137,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7156136063143554,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6835610401057735,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5713770583757363,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6034296245843183,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6354821907929002,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6995873232100647,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6675347570014822,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6034296245843183,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5713770583757363,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5393244921671543,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5072719259585718,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4752193597499899,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4431667935414079,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5072719259585718,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4752193597499899,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4431667935414079,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4111142273328259,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4431667935414079,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4752193597499899,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4431667935414079,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6547137305180497,-0.2564205296686566 l 8.01314155214552e-2,3.205256620858208e-2 " /><path d="M -1.6547137305180497,-0.2564205296686566 l -8.01314155214552e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5425297487880125,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,-0.16026283104291028 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5745823149965945,-0.16026283104291028 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.51047718257943,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5393244921671543,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5072719259585718,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6386874474137585,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6034296245843183,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6354821907929002,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5713770583757363,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5393244921671543,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6034296245843183,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5713770583757363,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.734845146039505,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.734845146039505,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.702792579830923,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6675347570014822,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6995873232100647,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.766897712248087,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.734845146039505,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.734845146039505,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6995873232100647,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7636924556272287,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7316398894186467,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7636924556272287,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.7316398894186467,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6515084738971915,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5473376337192994,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5793901999278819,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6114427661364639,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4792259305260629,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.332986097199407,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3009335309908248,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.2688809647822428,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4002964862374294,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4002964862374294,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.3682439200288474,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3970912296165712,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3650386634079892,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4323490524460114,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4611963620337352,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4291437958251532,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3970912296165712,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.332986097199407,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3650386634079892,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.332986097199407,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3650386634079892,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.332986097199407,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3650386634079892,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.332986097199407,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3650386634079892,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.4323490524460114,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4611963620337352,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4291437958251532,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.3970912296165712,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5285067510717578,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5605593172803398,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5605593172803398,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5253014944508996,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5926118834889218,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6246644496975038,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.6246644496975038,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5894066268680636,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.6567170159060862,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6214591930766455,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.653511759285228,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.6214591930766455,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5894066268680636,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5573540606594816,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5253014944508996,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4611963620337352,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.959748988340879,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.9276964221322969,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.959748988340879,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.21987309187066814,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 0.8577629812893149,-0.9615769862574624 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5285067510717578,-0.9615769862574624 l 6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.5285067510717578,-0.9615769862574624 l -6.410513241716416e-2,3.205256620858208e-2 " /><path d="M -1.4644016186545934,-0.9295244200488803 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4932489282423176,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4611963620337352,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><path d="M -1.5926118834889218,-0.9295244200488803 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5605593172803398,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5605593172803398,-0.8974718538402982 l -3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.5285067510717578,-0.865419287631716 l 3.205256620858208e-2,3.205256620858208e-2 " /><path d="M -1.4964541848631758,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5253014944508996,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.4932489282423176,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5253014944508996,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5894066268680636,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5573540606594816,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5894066268680636,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -1.5253014944508996,-0.9615769862574624 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3337692565807924,-0.9936295524660443 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3658218227893744,-1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M -0.3978743889979565,-1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582087e-3 -3.2052566208582074e-3Z" /></g></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_Calligraphic_calligraphicEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="215.38461538461553" font-size="1" viewBox="0 0 400 215"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(6.153846153846155,0.0,0.0,6.153846153846155,98.46153846153848,107.69230769230776)"><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 25.999999999999996,17.500000000000007 c 0.466666666666667,-5.133333333333333 0.9333333333333333,-10.266666666666666 3.0 -12.0c 2.066666666666666,-1.7333333333333352 5.7333333333333325,-6.66666666666691e-2 9.0 -3.0c 3.2666666666666657,-2.9333333333333336 6.133333333333333,-10.466666666666667 8.999999999999995 -18.00000000000001l 2.0,-2.0 c -2.866666666666662,7.533333333333344 -5.733333333333329,15.066666666666677 -8.999999999999995 18.00000000000001c -3.2666666666666675,2.933333333333331 -6.933333333333334,1.2666666666666648 -9.0 3.0c -2.0666666666666664,1.7333333333333343 -2.533333333333333,6.866666666666667 -3.0 12.0l -2.0,2.0 h -1.7763568394002505e-15 Z" /></g><g fill="rgb(0,0,0)" fill-opacity="1.0"><path d="M 13.999999999999998,0.5000000000000018 c 0.0,-8.284271247461902 -6.715728752538096,-15.0 -14.999999999999996 -15.0c -8.284271247461902,-5.072653133236334e-16 -15.0,6.715728752538095 -15.0 14.999999999999995c -1.0145306266472668e-15,8.284271247461902 6.715728752538094,15.0 14.999999999999993 15.0c 8.284271247461902,1.5217959399709002e-15 15.0,-6.715728752538094 15.000000000000004 -14.999999999999995l 2.0,-1.0 c -3.552713678800501e-15,8.2842712474619 -6.7157287525381015,14.999999999999996 -15.000000000000004 14.999999999999995c -8.284271247461898,0.0 -14.999999999999995,-6.715728752538098 -14.999999999999993 -15.0c 0.0,-8.284271247461898 6.715728752538098,-14.999999999999995 15.0 -14.999999999999995c 8.2842712474619,0.0 14.999999999999996,6.715728752538098 14.999999999999996 15.0l -2.0,1.0 h -0.0 Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_iterTrailEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="200.0" height="470.9401076758498" font-size="1" viewBox="0 0 200 471"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(199.99999999999977,0.0,0.0,199.99999999999977,0.0,0.0)"><g fill-opacity="0.0"><path d="M 0.0,2.3547005383792516 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 " /></g><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 0.0,1.7660254037844387 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.8518518518518493e-2,-3.207501495497922e-2 l -3.7037037037037035e-2,-3.122502256758253e-17 l 1.8518518518518535e-2,-3.207501495497919e-2 l -1.8518518518518493e-2,-3.207501495497922e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.8518518518518493e-2,3.207501495497922e-2 l 1.8518518518518535e-2,3.207501495497919e-2 l -3.7037037037037035e-2,3.122502256758253e-17 l -1.8518518518518493e-2,3.207501495497922e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l -1.851851851851851e-2,-3.207501495497921e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l -1.851851851851851e-2,3.207501495497921e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 l 1.851851851851852e-2,-3.2075014954979206e-2 l 1.851851851851852e-2,3.2075014954979206e-2 h 3.7037037037037035e-2 " /></g><path d="M 0.0,1.1773502691896258 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l -5.5555555555555525e-2,-9.622504486493764e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l -5.5555555555555525e-2,9.622504486493764e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 l 5.5555555555555566e-2,-9.622504486493762e-2 l 5.5555555555555566e-2,9.622504486493762e-2 h 0.1111111111111111 " /></g><g fill-opacity="0.0"><path d="M 0.0,0.5886751345948129 h 0.3333333333333333 l 0.16666666666666669,-0.28867513459481287 l 0.16666666666666669,0.28867513459481287 h 0.3333333333333333 " /></g><path d="M 0.0,0.0 h 1.0 " /></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_kochD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="52.48638810814779" font-size="1" viewBox="0 0 400 52"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(165.28925619834703,0.0,0.0,165.28925619834703,200.0,26.243194054073896)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 9.999999999999942e-2,0.1443375672974065 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 " /></g><path d="M -1.1000000000000005,0.1443375672974065 h 0.3333333333333333 l 0.16666666666666669,-0.28867513459481287 l 0.16666666666666669,0.28867513459481287 h 0.3333333333333333 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_levyD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="151.394422310757" font-size="1" viewBox="0 0 400 151"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(115.9000362187613,0.0,0.0,115.9000362187613,200.0,75.6972111553785)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 9.999999999999942e-2,0.3750000000000002 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.1249999999999934e-2,3.125000000000003e-2 l -3.125000000000003e-2,-3.1249999999999934e-2 l -3.1250000000000014e-2,-3.124999999999995e-2 l 3.124999999999995e-2,-3.1250000000000014e-2 l -3.125000000000001e-2,-3.1249999999999965e-2 l 3.1249999999999965e-2,-3.125000000000001e-2 l 3.1249999999999962e-2,-3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999962e-2 l -3.125e-2,-3.1249999999999962e-2 l 3.1249999999999962e-2,-3.125e-2 l 3.1249999999999955e-2,-3.125e-2 l 3.125e-2,3.1249999999999955e-2 l 3.1249999999999955e-2,-3.125e-2 l 3.125e-2,3.1249999999999955e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.125000000000001e-2,-3.1249999999999944e-2 l 3.1249999999999944e-2,-3.125000000000001e-2 l 3.124999999999994e-2,-3.125000000000002e-2 l 3.125000000000002e-2,3.124999999999994e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l 3.1250000000000035e-2,3.124999999999992e-2 l -3.124999999999992e-2,3.1250000000000035e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.125000000000001e-2,-3.1249999999999944e-2 l 3.1249999999999944e-2,-3.125000000000001e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.124999999999994e-2,-3.1250000000000014e-2 l 3.1250000000000014e-2,3.124999999999994e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.124999999999993e-2,3.125000000000002e-2 l -3.125000000000002e-2,-3.124999999999993e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999962e-2,-3.1249999999999993e-2 l 3.1249999999999993e-2,3.1249999999999962e-2 l 3.125000000000001e-2,3.1249999999999944e-2 l -3.1249999999999944e-2,3.125000000000001e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999986e-2,-3.124999999999997e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.124999999999997e-2,-3.1249999999999986e-2 l 3.1249999999999986e-2,3.124999999999997e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,3.124999999999998e-2 l -3.1249999999999976e-2,3.1249999999999986e-2 l -3.1249999999999986e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.124999999999998e-2,3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l -3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,-3.1249999999999976e-2 l 3.1249999999999976e-2,-3.124999999999998e-2 l 3.124999999999998e-2,3.1249999999999976e-2 " /></g><path d="M -1.56875,0.3750000000000002 l 0.4999999999999999,-0.5 l 0.5,0.4999999999999999 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_snowflake4.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="346.4101615137754" font-size="1" viewBox="0 0 300 346"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(272.7272727272725,0.0,0.0,272.7272727272725,150.0,173.2050807568877)"><g><path d="M -0.5000000000000001,-0.2886751345948131 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l -6.172839506172851e-3,1.0691671651659728e-2 l -6.1728395061728305e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.2477075303887167e-17 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.1728395061728305e-3,-1.0691671651659738e-2 l 1.2345679012345677e-2,3.469446951953614e-18 l 6.1728395061728435e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 l -1.2345679012345677e-2,-1.0408340855860843e-17 l 6.172839506172844e-3,-1.0691671651659731e-2 l -6.172839506172831e-3,-1.069167165165974e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l 1.2345679012345677e-2,-3.469446951953614e-18 l -6.1728395061728305e-3,1.0691671651659738e-2 l 6.1728395061728435e-3,1.0691671651659731e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.1728395061728305e-3,1.0691671651659742e-2 l -6.172839506172851e-3,-1.0691671651659728e-2 l -1.2345679012345678e-2,1.2477075303887167e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172844e-3,1.0691671651659731e-2 l -1.2345679012345677e-2,1.0408340855860843e-17 l -6.172839506172831e-3,1.069167165165974e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 l -1.2345679012345678e-2,-1.0408340855860843e-17 l 6.172839506172845e-3,-1.0691671651659733e-2 l -6.172839506172832e-3,-1.0691671651659742e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172845e-3,1.0691671651659733e-2 l -1.2345679012345678e-2,1.0408340855860843e-17 l -6.172839506172832e-3,1.0691671651659742e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l -6.172839506172836e-3,-1.0691671651659736e-2 l 1.2345679012345678e-2,-8.673617379884035e-19 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,8.673617379884035e-19 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l 6.172839506172841e-3,-1.0691671651659735e-2 l 6.172839506172841e-3,1.0691671651659735e-2 h 1.2345679012345678e-2 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172844e-3,-1.069167165165973e-2 l 6.172839506172834e-3,1.0691671651659736e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172847e-3,-1.069167165165973e-2 l -6.172839506172827e-3,-1.069167165165974e-2 l 1.2345679012345678e-2,7.806255641895632e-18 l 6.172839506172847e-3,-1.069167165165973e-2 l 6.172839506172835e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l -6.172839506172838e-3,1.0691671651659733e-2 l 6.172839506172835e-3,1.0691671651659735e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l 6.172839506172844e-3,-1.069167165165973e-2 l 6.172839506172834e-3,1.0691671651659736e-2 l 1.2345679012345677e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345677e-2,9.540979117872439e-18 l 6.172839506172827e-3,-1.069167165165974e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345675e-2,8.673617379884035e-18 l -6.172839506172833e-3,1.0691671651659736e-2 l -6.172839506172848e-3,-1.0691671651659726e-2 l -1.2345679012345675e-2,8.673617379884035e-18 l 6.172839506172826e-3,-1.0691671651659743e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l 1.2345679012345677e-2,-1.734723475976807e-17 l 6.172839506172826e-3,-1.0691671651659743e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345677e-2,9.540979117872439e-18 l 6.172839506172827e-3,-1.069167165165974e-2 l -6.172839506172848e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l 6.172839506172845e-3,-1.0691671651659731e-2 l 6.172839506172836e-3,1.0691671651659736e-2 l 1.2345679012345678e-2,6.071532165918825e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,9.540979117872439e-18 l 6.172839506172828e-3,-1.0691671651659742e-2 l -6.17283950617285e-3,-1.069167165165973e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 h 1.2345679012345677e-2 l -6.172839506172836e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.172839506172837e-3,1.0691671651659736e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l 6.172839506172839e-3,1.0691671651659735e-2 l -1.2345679012345678e-2,5.204170427930421e-18 l -6.1728395061728366e-3,1.0691671651659736e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172832e-3,1.0691671651659735e-2 l -1.2345679012345677e-2,-1.734723475976807e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172831e-3,1.0691671651659736e-2 l 1.2345679012345675e-2,9.540979117872439e-18 l -6.1728395061728435e-3,1.0691671651659733e-2 l 6.172839506172831e-3,1.0691671651659736e-2 h -1.2345679012345675e-2 l -6.172839506172841e-3,1.0691671651659731e-2 l -6.172839506172839e-3,-1.0691671651659731e-2 h -1.2345679012345675e-2 l -6.172839506172841e-3,1.0691671651659731e-2 l 6.172839506172832e-3,1.0691671651659735e-2 l -1.2345679012345677e-2,-1.734723475976807e-18 l -6.172839506172841e-3,1.0691671651659731e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.069167165165974e-2 l 6.17283950617285e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.0691671651659736e-2 l -6.172839506172845e-3,-1.069167165165973e-2 l 1.2345679012345673e-2,-1.5612511283791264e-17 l 6.172839506172827e-3,-1.0691671651659736e-2 l 6.172839506172854e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l -6.172839506172821e-3,1.0691671651659743e-2 l 6.172839506172854e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172827e-3,-1.069167165165974e-2 l 6.17283950617285e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.3877787807814457e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172842e-3,1.0691671651659733e-2 l 6.172839506172834e-3,1.0691671651659736e-2 h -1.2345679012345677e-2 l -6.172839506172842e-3,1.0691671651659733e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172828e-3,-1.0691671651659742e-2 l 6.172839506172851e-3,1.0691671651659726e-2 l 1.2345679012345677e-2,-1.474514954580286e-17 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l -6.172839506172836e-3,1.0691671651659735e-2 l -6.172839506172844e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.172839506172843e-3,-1.0691671651659733e-2 l 1.2345679012345677e-2,-9.540979117872439e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061728435e-3,-1.0691671651659731e-2 l -1.2345679012345677e-2,3.469446951953614e-18 l 6.172839506172832e-3,-1.0691671651659738e-2 l -6.1728395061727195e-3,-1.0691671651660148e-2 Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="87.54208754208756" font-size="1" viewBox="0 0 400 88"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(165.28925619834712,0.0,0.0,165.28925619834712,200.0,43.77104377104378)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 0.10000000000000009,0.24074074074074073 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l -4.535728885730937e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l 4.535728885730937e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-4.535728885730937e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l -2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l -2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l 4.535728885730937e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l -4.535728885730937e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,4.535728885730937e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,-3.7037037037037035e-2 l -3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 l 3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,-3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 l 2.2678644428654687e-18,3.7037037037037035e-2 l 3.7037037037037035e-2,-2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 l -3.7037037037037035e-2,2.2678644428654687e-18 l 2.2678644428654687e-18,3.7037037037037035e-2 h 3.7037037037037035e-2 v -3.7037037037037035e-2 h 3.7037037037037035e-2 v 3.7037037037037035e-2 h 3.7037037037037035e-2 " /></g><path d="M -1.0999999999999999,0.24074074074074073 h 0.3333333333333333 v -0.3333333333333333 h 0.3333333333333333 v 0.3333333333333333 h 0.3333333333333333 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="119.31818181818181" font-size="1" viewBox="0 0 400 119"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,59.65909090909091)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 9.999999999999987e-2,0.0 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l -3.827021247335479e-18,6.25e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,6.25e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,7.654042494670958e-18 l 7.654042494670958e-18,6.25e-2 l -6.25e-2,7.654042494670958e-18 l -1.5308084989341915e-17,-0.125 l -6.25e-2,7.654042494670958e-18 l 7.654042494670958e-18,6.25e-2 l -6.25e-2,7.654042494670958e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,6.25e-2 l 3.125e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,-3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l -3.827021247335479e-18,6.25e-2 l 3.125e-2,1.9135106236677394e-18 l 1.9135106236677394e-18,-3.125e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 3.827021247335479e-18,-3.125e-2 l -1.5625e-2,-1.9135106236677394e-18 l -1.9135106236677394e-18,1.5625e-2 l -1.5625e-2,-1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 l -6.25e-2,3.827021247335479e-18 l 1.9135106236677394e-18,3.125e-2 l 3.125e-2,-1.9135106236677394e-18 l 1.9135106236677394e-18,3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 l 3.125e-2,1.9135106236677394e-18 l 9.567553118338697e-19,-1.5625e-2 l -1.5625e-2,-9.567553118338697e-19 l 9.567553118338697e-19,-1.5625e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 v 3.125e-2 h 1.5625e-2 v -1.5625e-2 h 1.5625e-2 " /></g><path d="M -1.1,0.0 h 0.25 v -0.25 h 0.25 v 0.5 h 0.25 v -0.25 h 0.25 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownD2.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="120.99552168627056" font-size="1" viewBox="0 0 400 121"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(165.2892561983471,0.0,0.0,165.2892561983471,200.0,60.497760843135275)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 9.999999999999987e-2,0.0 c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0" /></g><path d="M -1.1,0.0 c 0.11382113821138212,2.4390243902439022e-2 0.22764227642276424,4.8780487804878044e-2 0.25 0.0c 2.2357723577235755e-2,-4.8780487804878044e-2 -4.67479674796748e-2,-0.17073170731707318 0.0 -0.25c 4.67479674796748e-2,-7.926829268292684e-2 0.2093495934959349,-0.11585365853658541 0.25 0.0c 4.065040650406504e-2,0.11585365853658536 -4.0650406504064984e-2,0.38414634146341464 0.0 0.5c 4.065040650406504e-2,0.11585365853658541 0.2032520325203252,7.926829268292684e-2 0.25 0.0c 4.67479674796748e-2,-7.926829268292682e-2 -2.2357723577235866e-2,-0.20121951219512194 0.0 -0.25c 2.2357723577235755e-2,-4.878048780487806e-2 0.13617886178861793,-2.439024390243903e-2 0.25 0.0" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownOverlayD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="266.5475369274488" font-size="1" viewBox="0 0 400 267"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(100.0,0.0,0.0,100.0,0.0,133.2737684637244)"><g stroke="rgb(158,158,255)" stroke-opacity="1.0" fill-opacity="0.0"><path d="M 0.0,0.0 c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c 1.2195121951219514e-2,-5.691056910569106e-2 2.439024390243903e-2,-0.11382113821138212 7.654042494670958e-18 -0.125c -2.4390243902439022e-2,-1.117886178861788e-2 -8.536585365853659e-2,2.3373983739837394e-2 -0.125 -7.654042494670958e-18c -3.963414634146342e-2,-2.3373983739837404e-2 -5.79268292682927e-2,-0.10467479674796745 7.654042494670958e-18 -0.125c 5.792682926829268e-2,-2.0325203252032516e-2 0.19207317073170732,2.0325203252032503e-2 0.25 1.5308084989341915e-17c 5.792682926829271e-2,-2.0325203252032516e-2 3.963414634146343e-2,-0.1016260162601626 7.654042494670958e-18 -0.125c -3.963414634146341e-2,-2.3373983739837404e-2 -0.10060975609756097,1.1178861788617926e-2 -0.125 -7.654042494670958e-18c -2.439024390243903e-2,-1.117886178861788e-2 -1.2195121951219511e-2,-6.808943089430897e-2 7.654042494670958e-18 -0.125c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c -6.097560975609754e-3,2.845528455284553e-2 -1.2195121951219507e-2,5.691056910569106e-2 3.827021247335479e-18 6.25e-2c 1.2195121951219511e-2,5.589430894308938e-3 4.2682926829268296e-2,-1.1686991869918704e-2 6.25e-2 -3.827021247335479e-18c 1.981707317073171e-2,1.1686991869918699e-2 2.8963414634146357e-2,5.2337398373983726e-2 3.827021247335479e-18 6.25e-2c -2.896341463414634e-2,1.0162601626016262e-2 -9.603658536585366e-2,-1.016260162601624e-2 -0.125 7.654042494670958e-18c -2.8963414634146353e-2,1.0162601626016262e-2 -1.9817073170731708e-2,5.08130081300813e-2 3.827021247335479e-18 6.25e-2c 1.9817073170731704e-2,1.1686991869918699e-2 5.0304878048780484e-2,-5.58943089430897e-3 6.25e-2 -3.827021247335479e-18c 1.2195121951219514e-2,5.589430894308938e-3 6.097560975609759e-3,3.404471544715448e-2 3.827021247335479e-18 6.25e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 3.0487804878048786e-3,-1.4227642276422765e-2 6.097560975609757e-3,-2.845528455284553e-2 1.9135106236677394e-18 -3.125e-2c -6.0975609756097554e-3,-2.79471544715447e-3 -2.1341463414634148e-2,5.843495934959348e-3 -3.125e-2 -1.9135106236677394e-18c -9.908536585365856e-3,-5.843495934959351e-3 -1.4481707317073175e-2,-2.6168699186991863e-2 1.9135106236677394e-18 -3.125e-2c 1.448170731707317e-2,-5.081300813008129e-3 4.801829268292683e-2,5.081300813008126e-3 6.25e-2 3.827021247335479e-18c 1.4481707317073177e-2,-5.081300813008129e-3 9.908536585365857e-3,-2.540650406504065e-2 1.9135106236677394e-18 -3.125e-2c -9.908536585365852e-3,-5.843495934959351e-3 -2.5152439024390242e-2,2.7947154471544815e-3 -3.125e-2 -1.9135106236677394e-18c -6.097560975609757e-3,-2.79471544715447e-3 -3.0487804878048777e-3,-1.702235772357724e-2 1.9135106236677394e-18 -3.125e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c -1.5243902439024384e-3,7.113821138211383e-3 -3.048780487804877e-3,1.4227642276422765e-2 9.567553118338697e-19 1.5625e-2c 3.0487804878048777e-3,1.3973577235772345e-3 1.0670731707317074e-2,-2.921747967479676e-3 1.5625e-2 -9.567553118338697e-19c 4.954268292682928e-3,2.9217479674796746e-3 7.240853658536589e-3,1.3084349593495932e-2 9.567553118338697e-19 1.5625e-2c -7.240853658536585e-3,2.5406504065040654e-3 -2.4009146341463415e-2,-2.54065040650406e-3 -3.125e-2 1.9135106236677394e-18c -7.240853658536588e-3,2.5406504065040654e-3 -4.954268292682927e-3,1.2703252032520325e-2 9.567553118338697e-19 1.5625e-2c 4.954268292682926e-3,2.9217479674796746e-3 1.2576219512195121e-2,-1.3973577235772425e-3 1.5625e-2 -9.567553118338697e-19c 3.0487804878048786e-3,1.3973577235772345e-3 1.5243902439024397e-3,8.51117886178862e-3 9.567553118338697e-19 1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c -2.845528455284553e-2,-6.097560975609752e-3 -5.691056910569106e-2,-1.2195121951219504e-2 -6.25e-2 7.654042494670958e-18c -5.589430894308937e-3,1.2195121951219511e-2 1.1686991869918706e-2,4.2682926829268296e-2 7.654042494670958e-18 6.25e-2c -1.1686991869918699e-2,1.981707317073171e-2 -5.233739837398372e-2,2.896341463414636e-2 -6.25e-2 7.654042494670958e-18c -1.0162601626016263e-2,-2.896341463414634e-2 1.0162601626016234e-2,-9.603658536585366e-2 -1.5308084989341915e-17 -0.125c -1.0162601626016263e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731704e-2 -6.25e-2 7.654042494670958e-18c -1.1686991869918699e-2,1.9817073170731704e-2 5.589430894308973e-3,5.0304878048780484e-2 7.654042494670958e-18 6.25e-2c -5.589430894308937e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.0975609756097615e-3 -6.25e-2 7.654042494670958e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 1.4227642276422765e-2,3.048780487804877e-3 2.845528455284553e-2,6.097560975609754e-3 3.125e-2 -1.9135106236677394e-18c 2.794715447154469e-3,-6.0975609756097554e-3 -5.843495934959352e-3,-2.1341463414634148e-2 -1.9135106236677394e-18 -3.125e-2c 5.843495934959349e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073178e-2 3.125e-2 -1.9135106236677394e-18c 5.081300813008131e-3,1.448170731707317e-2 -5.08130081300812e-3,4.801829268292683e-2 3.827021247335479e-18 6.25e-2c 5.081300813008131e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365854e-3 3.125e-2 -1.9135106236677394e-18c 5.843495934959349e-3,-9.908536585365852e-3 -2.794715447154485e-3,-2.5152439024390242e-2 -1.9135106236677394e-18 -3.125e-2c 2.794715447154469e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048795e-3 3.125e-2 -1.9135106236677394e-18c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 1.4227642276422765e-2,3.0487804878048786e-3 2.845528455284553e-2,6.097560975609757e-3 3.125e-2 1.9135106236677394e-18c 2.79471544715447e-3,-6.0975609756097554e-3 -5.843495934959348e-3,-2.1341463414634148e-2 1.9135106236677394e-18 -3.125e-2c 5.843495934959351e-3,-9.908536585365856e-3 2.6168699186991863e-2,-1.4481707317073175e-2 3.125e-2 1.9135106236677394e-18c 5.081300813008129e-3,1.448170731707317e-2 -5.081300813008126e-3,4.801829268292683e-2 -3.827021247335479e-18 6.25e-2c 5.081300813008129e-3,1.4481707317073177e-2 2.540650406504065e-2,9.908536585365857e-3 3.125e-2 1.9135106236677394e-18c 5.843495934959351e-3,-9.908536585365852e-3 -2.7947154471544815e-3,-2.5152439024390242e-2 1.9135106236677394e-18 -3.125e-2c 2.79471544715447e-3,-6.097560975609757e-3 1.702235772357724e-2,-3.0487804878048777e-3 3.125e-2 1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c -7.113821138211383e-3,-1.5243902439024397e-3 -1.4227642276422765e-2,-3.0487804878048795e-3 -1.5625e-2 -1.9135106236677394e-18c -1.3973577235772351e-3,3.0487804878048777e-3 2.9217479674796738e-3,1.0670731707317074e-2 -1.9135106236677394e-18 1.5625e-2c -2.9217479674796755e-3,4.954268292682928e-3 -1.3084349593495933e-2,7.240853658536587e-3 -1.5625e-2 -1.9135106236677394e-18c -2.540650406504064e-3,-7.240853658536585e-3 2.5406504065040646e-3,-2.4009146341463415e-2 3.827021247335479e-18 -3.125e-2c -2.540650406504064e-3,-7.240853658536588e-3 -1.2703252032520325e-2,-4.9542682926829295e-3 -1.5625e-2 -1.9135106236677394e-18c -2.9217479674796755e-3,4.954268292682926e-3 1.3973577235772401e-3,1.2576219512195121e-2 -1.9135106236677394e-18 1.5625e-2c -1.3973577235772351e-3,3.0487804878048786e-3 -8.51117886178862e-3,1.5243902439024382e-3 -1.5625e-2 -1.9135106236677394e-18c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c -3.048780487804877e-3,1.4227642276422765e-2 -6.097560975609754e-3,2.845528455284553e-2 1.9135106236677394e-18 3.125e-2c 6.0975609756097554e-3,2.794715447154469e-3 2.1341463414634148e-2,-5.843495934959352e-3 3.125e-2 -1.9135106236677394e-18c 9.908536585365856e-3,5.843495934959349e-3 1.4481707317073178e-2,2.6168699186991863e-2 1.9135106236677394e-18 3.125e-2c -1.448170731707317e-2,5.081300813008131e-3 -4.801829268292683e-2,-5.08130081300812e-3 -6.25e-2 3.827021247335479e-18c -1.4481707317073177e-2,5.081300813008131e-3 -9.908536585365854e-3,2.540650406504065e-2 1.9135106236677394e-18 3.125e-2c 9.908536585365852e-3,5.843495934959349e-3 2.5152439024390242e-2,-2.794715447154485e-3 3.125e-2 -1.9135106236677394e-18c 6.097560975609757e-3,2.794715447154469e-3 3.0487804878048795e-3,1.702235772357724e-2 1.9135106236677394e-18 3.125e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0c 1.5243902439024393e-3,-7.113821138211383e-3 3.0487804878048786e-3,-1.4227642276422765e-2 9.567553118338697e-19 -1.5625e-2c -3.0487804878048777e-3,-1.397357723577235e-3 -1.0670731707317074e-2,2.921747967479674e-3 -1.5625e-2 -9.567553118338697e-19c -4.954268292682928e-3,-2.9217479674796755e-3 -7.2408536585365875e-3,-1.3084349593495932e-2 9.567553118338697e-19 -1.5625e-2c 7.240853658536585e-3,-2.5406504065040646e-3 2.4009146341463415e-2,2.540650406504063e-3 3.125e-2 1.9135106236677394e-18c 7.240853658536588e-3,-2.5406504065040646e-3 4.954268292682929e-3,-1.2703252032520325e-2 9.567553118338697e-19 -1.5625e-2c -4.954268292682926e-3,-2.9217479674796755e-3 -1.2576219512195121e-2,1.3973577235772408e-3 -1.5625e-2 -9.567553118338697e-19c -3.0487804878048786e-3,-1.397357723577235e-3 -1.5243902439024389e-3,-8.51117886178862e-3 9.567553118338697e-19 -1.5625e-2c 7.113821138211383e-3,1.5243902439024389e-3 1.4227642276422765e-2,3.0487804878048777e-3 1.5625e-2 0.0c 1.3973577235772347e-3,-3.0487804878048777e-3 -2.921747967479675e-3,-1.0670731707317074e-2 0.0 -1.5625e-2c 2.921747967479675e-3,-4.954268292682928e-3 1.3084349593495932e-2,-7.240853658536588e-3 1.5625e-2 0.0c 2.540650406504065e-3,7.240853658536585e-3 -2.5406504065040615e-3,2.4009146341463415e-2 0.0 3.125e-2c 2.540650406504065e-3,7.240853658536588e-3 1.2703252032520325e-2,4.954268292682928e-3 1.5625e-2 0.0c 2.921747967479675e-3,-4.954268292682926e-3 -1.3973577235772416e-3,-1.2576219512195121e-2 0.0 -1.5625e-2c 1.3973577235772347e-3,-3.0487804878048786e-3 8.51117886178862e-3,-1.5243902439024393e-3 1.5625e-2 0.0" /></g><g stroke="rgb(142,142,255)" stroke-opacity="1.0" fill-opacity="0.0"><path d="M 0.0,0.0 c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.2682926829268296e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.981707317073171e-2 -5.233739837398373e-2,2.8963414634146346e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016256e-2,-2.896341463414634e-2 1.0162601626016258e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -7.654042494670958e-18c -1.1686991869918702e-2,1.9817073170731704e-2 5.5894308943089605e-3,5.0304878048780484e-2 -7.654042494670958e-18 6.25e-2c -5.5894308943089405e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.097560975609753e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 5.691056910569106e-2,1.2195121951219514e-2 0.11382113821138212,2.439024390243903e-2 0.125 7.654042494670958e-18c 1.117886178861788e-2,-2.4390243902439022e-2 -2.3373983739837394e-2,-8.536585365853659e-2 7.654042494670958e-18 -0.125c 2.3373983739837404e-2,-3.963414634146342e-2 0.10467479674796745,-5.79268292682927e-2 0.125 7.654042494670958e-18c 2.0325203252032516e-2,5.792682926829268e-2 -2.0325203252032503e-2,0.19207317073170732 -1.5308084989341915e-17 0.25c 2.0325203252032516e-2,5.792682926829271e-2 0.1016260162601626,3.963414634146343e-2 0.125 7.654042494670958e-18c 2.3373983739837404e-2,-3.963414634146341e-2 -1.1178861788617926e-2,-0.10060975609756097 7.654042494670958e-18 -0.125c 1.117886178861788e-2,-2.439024390243903e-2 6.808943089430897e-2,-1.2195121951219511e-2 0.125 7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.2682926829268296e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.981707317073171e-2 -5.233739837398373e-2,2.8963414634146346e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016256e-2,-2.896341463414634e-2 1.0162601626016258e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -7.654042494670958e-18c -1.1686991869918702e-2,1.9817073170731704e-2 5.5894308943089605e-3,5.0304878048780484e-2 -7.654042494670958e-18 6.25e-2c -5.5894308943089405e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.097560975609753e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 5.691056910569106e-2,1.2195121951219507e-2 0.11382113821138212,2.4390243902439015e-2 0.125 -7.654042494670958e-18c 1.1178861788617876e-2,-2.4390243902439022e-2 -2.3373983739837408e-2,-8.536585365853659e-2 -7.654042494670958e-18 -0.125c 2.3373983739837397e-2,-3.963414634146342e-2 0.10467479674796745,-5.7926829268292714e-2 0.125 -7.654042494670958e-18c 2.0325203252032523e-2,5.792682926829268e-2 -2.032520325203248e-2,0.19207317073170732 1.5308084989341915e-17 0.25c 2.0325203252032523e-2,5.792682926829271e-2 0.1016260162601626,3.9634146341463415e-2 0.125 -7.654042494670958e-18c 2.3373983739837397e-2,-3.963414634146341e-2 -1.117886178861794e-2,-0.10060975609756097 -7.654042494670958e-18 -0.125c 1.1178861788617876e-2,-2.439024390243903e-2 6.808943089430897e-2,-1.2195121951219518e-2 0.125 -7.654042494670958e-18c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c -0.11382113821138212,-2.4390243902439008e-2 -0.22764227642276424,-4.8780487804878016e-2 -0.25 3.061616997868383e-17c -2.235772357723575e-2,4.8780487804878044e-2 4.674796747967482e-2,0.17073170731707318 3.061616997868383e-17 0.25c -4.6747967479674794e-2,7.926829268292684e-2 -0.20934959349593488,0.11585365853658544 -0.25 3.061616997868383e-17c -4.0650406504065054e-2,-0.11585365853658536 4.0650406504064936e-2,-0.38414634146341464 -6.123233995736766e-17 -0.5c -4.0650406504065054e-2,-0.11585365853658541 -0.2032520325203252,-7.926829268292682e-2 -0.25 3.061616997868383e-17c -4.6747967479674794e-2,7.926829268292682e-2 2.235772357723589e-2,0.20121951219512194 3.061616997868383e-17 0.25c -2.235772357723575e-2,4.878048780487806e-2 -0.13617886178861793,2.4390243902439046e-2 -0.25 3.061616997868383e-17c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 5.691056910569106e-2,1.2195121951219507e-2 0.11382113821138212,2.4390243902439015e-2 0.125 -7.654042494670958e-18c 1.1178861788617876e-2,-2.4390243902439022e-2 -2.3373983739837408e-2,-8.536585365853659e-2 -7.654042494670958e-18 -0.125c 2.3373983739837397e-2,-3.963414634146342e-2 0.10467479674796745,-5.7926829268292714e-2 0.125 -7.654042494670958e-18c 2.0325203252032523e-2,5.792682926829268e-2 -2.032520325203248e-2,0.19207317073170732 1.5308084989341915e-17 0.25c 2.0325203252032523e-2,5.792682926829271e-2 0.1016260162601626,3.9634146341463415e-2 0.125 -7.654042494670958e-18c 2.3373983739837397e-2,-3.963414634146341e-2 -1.117886178861794e-2,-0.10060975609756097 -7.654042494670958e-18 -0.125c 1.1178861788617876e-2,-2.439024390243903e-2 6.808943089430897e-2,-1.2195121951219518e-2 0.125 -7.654042494670958e-18c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.2682926829268296e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.981707317073171e-2 -5.233739837398373e-2,2.8963414634146346e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016256e-2,-2.896341463414634e-2 1.0162601626016258e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -7.654042494670958e-18c -1.1686991869918702e-2,1.9817073170731704e-2 5.5894308943089605e-3,5.0304878048780484e-2 -7.654042494670958e-18 6.25e-2c -5.5894308943089405e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.097560975609753e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 5.691056910569106e-2,1.2195121951219514e-2 0.11382113821138212,2.439024390243903e-2 0.125 7.654042494670958e-18c 1.117886178861788e-2,-2.4390243902439022e-2 -2.3373983739837394e-2,-8.536585365853659e-2 7.654042494670958e-18 -0.125c 2.3373983739837404e-2,-3.963414634146342e-2 0.10467479674796745,-5.79268292682927e-2 0.125 7.654042494670958e-18c 2.0325203252032516e-2,5.792682926829268e-2 -2.0325203252032503e-2,0.19207317073170732 -1.5308084989341915e-17 0.25c 2.0325203252032516e-2,5.792682926829271e-2 0.1016260162601626,3.963414634146343e-2 0.125 7.654042494670958e-18c 2.3373983739837404e-2,-3.963414634146341e-2 -1.1178861788617926e-2,-0.10060975609756097 7.654042494670958e-18 -0.125c 1.117886178861788e-2,-2.439024390243903e-2 6.808943089430897e-2,-1.2195121951219511e-2 0.125 7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c -2.845528455284553e-2,-6.097560975609759e-3 -5.691056910569106e-2,-1.2195121951219518e-2 -6.25e-2 -7.654042494670958e-18c -5.5894308943089405e-3,1.2195121951219511e-2 1.1686991869918695e-2,4.2682926829268296e-2 -7.654042494670958e-18 6.25e-2c -1.1686991869918702e-2,1.981707317073171e-2 -5.233739837398373e-2,2.8963414634146346e-2 -6.25e-2 -7.654042494670958e-18c -1.0162601626016256e-2,-2.896341463414634e-2 1.0162601626016258e-2,-9.603658536585366e-2 1.5308084989341915e-17 -0.125c -1.0162601626016256e-2,-2.8963414634146353e-2 -5.08130081300813e-2,-1.9817073170731718e-2 -6.25e-2 -7.654042494670958e-18c -1.1686991869918702e-2,1.9817073170731704e-2 5.5894308943089605e-3,5.0304878048780484e-2 -7.654042494670958e-18 6.25e-2c -5.5894308943089405e-3,1.2195121951219514e-2 -3.404471544715448e-2,6.097560975609753e-3 -6.25e-2 -7.654042494670958e-18c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c -1.2195121951219507e-2,5.691056910569106e-2 -2.4390243902439015e-2,0.11382113821138212 7.654042494670958e-18 0.125c 2.4390243902439022e-2,1.1178861788617876e-2 8.536585365853659e-2,-2.3373983739837408e-2 0.125 -7.654042494670958e-18c 3.963414634146342e-2,2.3373983739837397e-2 5.7926829268292714e-2,0.10467479674796745 7.654042494670958e-18 0.125c -5.792682926829268e-2,2.0325203252032523e-2 -0.19207317073170732,-2.032520325203248e-2 -0.25 1.5308084989341915e-17c -5.792682926829271e-2,2.0325203252032523e-2 -3.9634146341463415e-2,0.1016260162601626 7.654042494670958e-18 0.125c 3.963414634146341e-2,2.3373983739837397e-2 0.10060975609756097,-1.117886178861794e-2 0.125 -7.654042494670958e-18c 2.439024390243903e-2,1.1178861788617876e-2 1.2195121951219518e-2,6.808943089430897e-2 7.654042494670958e-18 0.125c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0c 6.097560975609757e-3,-2.845528455284553e-2 1.2195121951219514e-2,-5.691056910569106e-2 3.827021247335479e-18 -6.25e-2c -1.2195121951219511e-2,-5.58943089430894e-3 -4.2682926829268296e-2,1.1686991869918697e-2 -6.25e-2 -3.827021247335479e-18c -1.981707317073171e-2,-1.1686991869918702e-2 -2.896341463414635e-2,-5.2337398373983726e-2 3.827021247335479e-18 -6.25e-2c 2.896341463414634e-2,-1.0162601626016258e-2 9.603658536585366e-2,1.0162601626016251e-2 0.125 7.654042494670958e-18c 2.8963414634146353e-2,-1.0162601626016258e-2 1.9817073170731715e-2,-5.08130081300813e-2 3.827021247335479e-18 -6.25e-2c -1.9817073170731704e-2,-1.1686991869918702e-2 -5.0304878048780484e-2,5.589430894308963e-3 -6.25e-2 -3.827021247335479e-18c -1.2195121951219514e-2,-5.58943089430894e-3 -6.0975609756097554e-3,-3.404471544715448e-2 3.827021247335479e-18 -6.25e-2c 2.845528455284553e-2,6.0975609756097554e-3 5.691056910569106e-2,1.2195121951219511e-2 6.25e-2 0.0c 5.589430894308939e-3,-1.2195121951219511e-2 -1.16869918699187e-2,-4.2682926829268296e-2 0.0 -6.25e-2c 1.16869918699187e-2,-1.981707317073171e-2 5.2337398373983726e-2,-2.8963414634146353e-2 6.25e-2 0.0c 1.016260162601626e-2,2.896341463414634e-2 -1.0162601626016246e-2,9.603658536585366e-2 0.0 0.125c 1.016260162601626e-2,2.8963414634146353e-2 5.08130081300813e-2,1.981707317073171e-2 6.25e-2 0.0c 1.16869918699187e-2,-1.9817073170731704e-2 -5.5894308943089666e-3,-5.0304878048780484e-2 0.0 -6.25e-2c 5.589430894308939e-3,-1.2195121951219514e-2 3.404471544715448e-2,-6.097560975609757e-3 6.25e-2 0.0" /></g><g stroke="rgb(121,121,255)" stroke-opacity="1.0" fill-opacity="0.0"><path d="M 0.0,0.0 c 0.11382113821138212,2.4390243902439022e-2 0.22764227642276424,4.8780487804878044e-2 0.25 0.0c 2.2357723577235755e-2,-4.8780487804878044e-2 -4.67479674796748e-2,-0.17073170731707318 0.0 -0.25c 4.67479674796748e-2,-7.926829268292684e-2 0.2093495934959349,-0.11585365853658541 0.25 0.0c 4.065040650406504e-2,0.11585365853658536 -4.0650406504064984e-2,0.38414634146341464 0.0 0.5c 4.065040650406504e-2,0.11585365853658541 0.2032520325203252,7.926829268292684e-2 0.25 0.0c 4.67479674796748e-2,-7.926829268292682e-2 -2.2357723577235866e-2,-0.20121951219512194 0.0 -0.25c 2.2357723577235755e-2,-4.878048780487806e-2 0.13617886178861793,-2.439024390243903e-2 0.25 0.0c 2.439024390243903e-2,-0.11382113821138212 4.878048780487806e-2,-0.22764227642276424 1.5308084989341915e-17 -0.25c -4.8780487804878044e-2,-2.235772357723576e-2 -0.17073170731707318,4.674796747967479e-2 -0.25 -1.5308084989341915e-17c -7.926829268292684e-2,-4.674796747967481e-2 -0.1158536585365854,-0.2093495934959349 1.5308084989341915e-17 -0.25c 0.11585365853658536,-4.065040650406503e-2 0.38414634146341464,4.0650406504065005e-2 0.5 3.061616997868383e-17c 0.11585365853658541,-4.065040650406503e-2 7.926829268292686e-2,-0.2032520325203252 1.5308084989341915e-17 -0.25c -7.926829268292682e-2,-4.674796747967481e-2 -0.20121951219512194,2.2357723577235852e-2 -0.25 -1.5308084989341915e-17c -4.878048780487806e-2,-2.235772357723576e-2 -2.4390243902439022e-2,-0.13617886178861793 1.5308084989341915e-17 -0.25c 0.11382113821138212,2.4390243902439022e-2 0.22764227642276424,4.8780487804878044e-2 0.25 0.0c 2.2357723577235755e-2,-4.8780487804878044e-2 -4.67479674796748e-2,-0.17073170731707318 0.0 -0.25c 4.67479674796748e-2,-7.926829268292684e-2 0.2093495934959349,-0.11585365853658541 0.25 0.0c 4.065040650406504e-2,0.11585365853658536 -4.0650406504064984e-2,0.38414634146341464 0.0 0.5c 4.065040650406504e-2,0.11585365853658541 0.2032520325203252,7.926829268292684e-2 0.25 0.0c 4.67479674796748e-2,-7.926829268292682e-2 -2.2357723577235866e-2,-0.20121951219512194 0.0 -0.25c 2.2357723577235755e-2,-4.878048780487806e-2 0.13617886178861793,-2.439024390243903e-2 0.25 0.0c -4.878048780487803e-2,0.22764227642276424 -9.756097560975606e-2,0.4552845528455285 3.061616997868383e-17 0.5c 9.756097560975609e-2,4.4715447154471503e-2 0.34146341463414637,-9.349593495934963e-2 0.5 -3.061616997868383e-17c 0.1585365853658537,9.349593495934959e-2 0.23170731707317085,0.4186991869918698 3.061616997868383e-17 0.5c -0.23170731707317072,8.13008130081301e-2 -0.7682926829268293,-8.130081300812993e-2 -1.0 6.123233995736766e-17c -0.23170731707317083,8.13008130081301e-2 -0.15853658536585366,0.4065040650406504 3.061616997868383e-17 0.5c 0.15853658536585363,9.349593495934959e-2 0.40243902439024387,-4.471544715447176e-2 0.5 -3.061616997868383e-17c 9.756097560975611e-2,4.4715447154471503e-2 4.878048780487807e-2,0.27235772357723587 3.061616997868383e-17 0.5c 0.11382113821138212,2.4390243902439022e-2 0.22764227642276424,4.8780487804878044e-2 0.25 0.0c 2.2357723577235755e-2,-4.8780487804878044e-2 -4.67479674796748e-2,-0.17073170731707318 0.0 -0.25c 4.67479674796748e-2,-7.926829268292684e-2 0.2093495934959349,-0.11585365853658541 0.25 0.0c 4.065040650406504e-2,0.11585365853658536 -4.0650406504064984e-2,0.38414634146341464 0.0 0.5c 4.065040650406504e-2,0.11585365853658541 0.2032520325203252,7.926829268292684e-2 0.25 0.0c 4.67479674796748e-2,-7.926829268292682e-2 -2.2357723577235866e-2,-0.20121951219512194 0.0 -0.25c 2.2357723577235755e-2,-4.878048780487806e-2 0.13617886178861793,-2.439024390243903e-2 0.25 0.0c 2.439024390243903e-2,-0.11382113821138212 4.878048780487806e-2,-0.22764227642276424 1.5308084989341915e-17 -0.25c -4.8780487804878044e-2,-2.235772357723576e-2 -0.17073170731707318,4.674796747967479e-2 -0.25 -1.5308084989341915e-17c -7.926829268292684e-2,-4.674796747967481e-2 -0.1158536585365854,-0.2093495934959349 1.5308084989341915e-17 -0.25c 0.11585365853658536,-4.065040650406503e-2 0.38414634146341464,4.0650406504065005e-2 0.5 3.061616997868383e-17c 0.11585365853658541,-4.065040650406503e-2 7.926829268292686e-2,-0.2032520325203252 1.5308084989341915e-17 -0.25c -7.926829268292682e-2,-4.674796747967481e-2 -0.20121951219512194,2.2357723577235852e-2 -0.25 -1.5308084989341915e-17c -4.878048780487806e-2,-2.235772357723576e-2 -2.4390243902439022e-2,-0.13617886178861793 1.5308084989341915e-17 -0.25c 0.11382113821138212,2.4390243902439022e-2 0.22764227642276424,4.8780487804878044e-2 0.25 0.0c 2.2357723577235755e-2,-4.8780487804878044e-2 -4.67479674796748e-2,-0.17073170731707318 0.0 -0.25c 4.67479674796748e-2,-7.926829268292684e-2 0.2093495934959349,-0.11585365853658541 0.25 0.0c 4.065040650406504e-2,0.11585365853658536 -4.0650406504064984e-2,0.38414634146341464 0.0 0.5c 4.065040650406504e-2,0.11585365853658541 0.2032520325203252,7.926829268292684e-2 0.25 0.0c 4.67479674796748e-2,-7.926829268292682e-2 -2.2357723577235866e-2,-0.20121951219512194 0.0 -0.25c 2.2357723577235755e-2,-4.878048780487806e-2 0.13617886178861793,-2.439024390243903e-2 0.25 0.0" /></g><g stroke="rgb(89,89,255)" stroke-opacity="1.0" fill-opacity="0.0"><path d="M 0.0,0.0 c 0.4552845528455285,9.756097560975609e-2 0.910569105691057,0.19512195121951217 1.0 0.0c 8.943089430894302e-2,-0.19512195121951217 -0.1869918699186992,-0.6829268292682927 0.0 -1.0c 0.1869918699186992,-0.3170731707317074 0.8373983739837396,-0.46341463414634165 1.0 0.0c 0.16260162601626016,0.46341463414634143 -0.16260162601625994,1.5365853658536586 0.0 2.0c 0.16260162601626016,0.46341463414634165 0.8130081300813008,0.3170731707317074 1.0 0.0c 0.1869918699186992,-0.31707317073170727 -8.943089430894346e-2,-0.8048780487804877 0.0 -1.0c 8.943089430894302e-2,-0.19512195121951223 0.5447154471544717,-9.756097560975611e-2 1.0 0.0" /></g><g stroke="rgb(0,0,255)" stroke-opacity="1.0" fill-opacity="0.0"><path d="M 0.0,0.0 h 4.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Path_IteratedSubset_zagD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="121.33314464870142" font-size="1" viewBox="0 0 400 121"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(155.84446764689906,0.0,0.0,155.84446764689906,200.0,60.66657232435071)"><g fill-opacity="0.0"><g fill-opacity="0.0"><path d="M 9.999999999999942e-2,0.0 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 3.828243462710051e-2,7.257879895392585e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.82824346271005e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.8282434627100494e-2,7.257879895392584e-2 l 5.34375816403756e-2,-7.457183410406341e-2 l 3.8282434627100494e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.82824346271005e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 3.828243462710051e-2,7.257879895392585e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 " /></g><path d="M -1.1666643324813561,0.0 l 0.46153846153846156,0.30769230769230765 l 7.692307692307687e-2,-0.6153846153846154 l 0.46153846153846156,0.30769230769230765 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Sunburst_sunburstEx.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="499.99999999999994" height="499.99999999999994" font-size="1" viewBox="0 0 500 500"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(81.16883116883116,0.0,0.0,81.16883116883116,249.99999999999997,249.99999999999997)"><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.56237763585966,2.435925161963089 l 6.748531630315917e-2,0.2923110194355705 c 7.936129947305644e-3,-1.8321999654718564e-3 1.5864227627957046e-2,-3.699019164547597e-3 2.3784066633713016e-2 -5.600404285164356e-3l -7.00336091567714e-2,-0.29171097611930286 c -7.071284826567832e-3,1.6976652862649637e-3 -1.4149943470006584e-2,3.364468142582589e-3 -2.123577378010079e-2 5.000360968896722e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5135798004829906,2.139213824874889 l 7.003360915677138e-2,0.2917109761193029 c 7.071284826567948e-3,-1.6976652862644818e-3 1.4135128522081333e-2,-3.4261768417695503e-3 2.1191329359405646e-2 -5.18548530420051e-3l -7.257656867990019e-2,-0.2910887178827988 c -6.209456736845399e-3,1.5481914469392445e-3 -1.2425639188897178e-2,3.0692816157837045e-3 -1.8648369836276837e-2 4.5632270676963516e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4948923195565009,2.143614142527518 l 6.748531630315917e-2,0.2923110194355705 c 7.085830310094326e-3,-1.6358928263141576e-3 1.4164488953533077e-2,-3.302695682631783e-3 2.1235773780100907e-2 -5.000360968896747e-3l -7.00336091567714e-2,-0.29171097611930286 c -6.222730647379693e-3,1.4939454519131683e-3 -1.2451950253605794e-2,2.9607319654726787e-3 -1.868748092648867e-2 4.400317652629104e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5197792270443964,2.4453690018345147 l 6.237350724532753e-2,0.2934442802201416 c 7.966897534746952e-3,-1.6934163471631813e-3 1.592636821512818e-2,-3.4215868376355494e-3 2.3878184736961787e-2 -5.18446211884257e-3l -6.493188418143044e-2,-0.29288880213597995 c -7.099836180208577e-3,1.5739957867919833e-3 -1.4206506430548958e-2,3.117005153285169e-3 -2.131980780085889e-2 4.6289840346809275e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4761671506638246,2.147851215663854 l 6.493188418143059e-2,0.2928888021359799 c 7.099836180208681e-3,-1.5739957867914964e-3 1.4192770704310959e-2,-3.1789630104308844e-3 2.1278601014405176e-2 -4.814855836745529e-3l -6.748531630315906e-2,-0.29231101943557053 c -6.235530672882913e-3,1.4395856871568871e-3 -1.2477313054092918e-2,2.8519568439595486e-3 -1.872516889267671e-2 4.237073136336145e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.45740571979906886,2.151924721614373 l 6.237350724532753e-2,0.2934442802201416 c 7.11330137030978e-3,-1.5119788813956977e-3 1.4219971620650161e-2,-3.0549882478888837e-3 2.1319807800858737e-2 -4.628984034680867e-3l -6.493188418143044e-2,-0.29288880213597995 c -6.247855838583549e-3,1.3851162923769454e-3 -1.2501725658883085e-2,2.742964534890949e-3 -1.8761430864755832e-2 4.073505950519252e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4596516016393679,1.8435618799243936 l 7.25765686799002e-2,0.29108871788279905 c 1.2418972583807586e-2,-3.096397631684451e-3 2.4810687382105973e-2,-6.301112978847555e-3 3.717372890627658e-2 -9.613779971241895e-3l -7.764571353075606e-2,-0.2897777478867206 c -1.067717222542007e-2,2.860939675249656e-3 -2.1379107733041403e-2,5.628648384163246e-3 -3.2104584055420715e-2 8.302809975163472e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4274070032533424,1.8513031230919472 l 6.748531630315933e-2,0.29231101943557064 c 1.2471120704090026e-2,-2.879185078261314e-3 2.4916878178958504e-2,-5.867147088639851e-3 3.733585076276588e-2 -8.963544720325144e-3l -7.257656867990009e-2,-0.29108871788279905 c -1.07254763223791e-2,2.6741615910009352e-3 -2.14740850506746e-2,5.254674236327855e-3 -3.224459838602513e-2 7.741243167553535e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.3950322125537413,1.858480441394231 l 6.237350724532758e-2,0.2934442802201418 c 1.2519470000195543e-2,-2.6610954971720458e-3 2.5015479053342508e-2,-5.431394008592618e-3 3.748659975743234e-2 -8.310579086854777e-3l -6.748531630315922e-2,-0.2923110194355707 c -1.0770513335350312e-2,2.4865689312264104e-3 -2.1562521153977235e-2,4.879099463816905e-3 -3.23747906996007e-2 7.177318302283686e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4341204441673249,2.4620193825305203 l 5.209445330007896e-2,0.29544232590366226 c 8.021143694250934e-3,-1.4143440494360066e-3 1.6036077960484972e-2,-2.8636802643755683e-3 2.4044573910607773e-2 -4.347967255109953e-3l -5.4670657647643936e-2,-0.2949764722691862 c -7.150442812609641e-3,1.3252562417271291e-3 -1.4306634121747175e-2,2.619306433637452e-3 -2.1468369563042794e-2 3.882113620633898e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4009181560827235,2.1631607966407005 l 5.467065764764409e-2,0.2949764722691862 c 7.150442812609732e-3,-1.3252562417266388e-3 1.4295069060973626e-2,-2.681705917663189e-3 2.1433674710993274e-2 -4.069310290726776e-3l -5.724269861296313e-2,-0.29448815503429904 c -6.281972972017288e-3,1.2210918482959566e-3 -1.2569244070577518e-2,2.414767563120121e-3 -1.8861633745674233e-2 3.5809930558395875e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.382025990867246,2.166577056626858 l 5.209445330007896e-2,0.29544232590366226 c 7.161735441295478e-3,-1.2628071869964347e-3 1.4317926750433013e-2,-2.5568573789067576e-3 2.1468369563042655e-2 -3.8821136206338867e-3l -5.4670657647643936e-2,-0.2949764722691862 c -6.292389675096485e-3,1.1662254927198737e-3 -1.2589838027137515e-2,2.304989661600958e-3 -1.889216521547768e-2 3.4162599861578546e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.39108616260057455,2.4692208514878446 l 4.6930339512068917e-2,0.2963065021785412 c 8.04460574240793e-3,-1.274140378142822e-3 1.6083613700019414e-2,-2.583375961774398e-3 2.4116794297250856e-2 -3.9276693621379e-3l -4.951428175820305e-2,-0.2958856804611693 c -7.172482676099502e-3,1.20026196461027e-3 -1.4350168352538328e-2,2.369222307138463e-3 -2.1532852051116727e-2 3.506847644765998e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.36310473289348844,2.16982832338191 l 4.951428175820294e-2,0.2958856804611693 c 7.172482676099584e-3,-1.2002619646097788e-3 1.4339694074336246e-2,-2.431814125561636e-3 2.150142951563164e-2 -3.6946213125585567e-3l -5.209445330007885e-2,-0.2954423259036623 c -6.302327188339946e-3,1.1112703245572896e-3 -1.260947321878821e-2,2.1950362261949244e-3 -1.8921257973755726e-2 3.2512667550515517e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.3441558230885056,2.1729143493093037 l 4.6930339512068917e-2,0.2963065021785412 c 7.18268369857851e-3,-1.1376253376275197e-3 1.4360369375017334e-2,-2.306585680155713e-3 2.1532852051116838e-2 -3.506847644765983e-3l -4.951428175820305e-2,-0.2958856804611693 c -6.311784754967562e-3,1.0562305288570376e-3 -1.2628148150233729e-2,2.0849156302818477e-3 -1.8948909804982705e-2 3.086025927394098e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.362537091215433,1.8650916485505622 l 5.72426986129631e-2,0.2944881550342993 c 1.256400574446017e-2,-2.442195320615726e-3 2.5106459970476485e-2,-4.993986473315266e-3 3.7625929970671844e-2 -7.655081970488158e-3l -6.237350724532766e-2,-0.29344428022014174 c -1.0812269545623263e-2,2.2982188384674976e-3 -2.164438910445553e-2,4.5020384703443736e-3 -3.249512133830728e-2 6.6112071563305674e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.3299315375671656,1.8711347307231958 l 5.209445330007878e-2,0.29544232590366254 c 1.2604714370864778e-2,-2.2225512277066744e-3 2.5189793216691705e-2,-4.5550577213803204e-3 3.7753798961151705e-2 -6.997253041996902e-3l -5.724269861296333e-2,-0.29448815503429926 c -1.085073223385182e-2,2.109168685987047e-3 -2.171966396433871e-2,4.12360611234156e-3 -3.260555364826716e-2 6.043082172633607e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2972254835764367,1.8766078471307621 l 4.693033951206895e-2,0.29630650217854143 c 1.264158347916741e-2,-2.0022301241633266e-3 2.5265453407874113e-2,-4.114741454737608e-3 3.7870167778738736e-2 -6.33729268244514e-3l -5.2094453300079e-2,-0.2954423259036625 c -1.0885889683928538e-2,1.9194760602928684e-3 -2.1788322804175236e-2,3.743917663970657e-3 -3.270605399072868e-2 5.473116407566203e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.30467335851286703,2.4813653791033055 l 3.656080302154402e-2,0.29776384549239643 c 8.084172043873145e-3,-9.926115146704955e-4 1.6163974517977325e-2,-2.020492215650847e-3 2.4239176681731395e-2 -3.0836127490327697e-3l -3.915785766601536e-2,-0.29743345841214297 c -7.210001931923277e-3,9.492147619481455e-4 -1.4424111283802008e-2,1.866965387823459e-3 -2.1642122037260056e-2 2.7532256687793355e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.287157622884112,2.1811786950223833 l 3.915785766601524e-2,0.2974334584121429 c 7.210001931923336e-3,-9.492147619476513e-4 1.4415827809207858e-2,-1.929884624039598e-3 2.1617271850034526e-2 -2.9419815806004377e-3l -4.1751930288019504e-2,-0.2970804206224709 c -6.337270755927469e-3,8.906453217735394e-4 -1.2678397527937849e-2,1.7536348004144524e-3 -1.9023199228030266e-2 2.588943790928444e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.268112555491323,2.1836015336109087 l 3.656080302154402e-2,0.29776384549239643 c 7.218010753458166e-3,-8.862602809557996e-4 1.4432120105336897e-2,-1.8040109068311134e-3 2.1642122037260174e-2 -2.7532256687792587e-3l -3.915785766601536e-2,-0.29743345841214297 c -6.344801700092484e-3,8.353089905143681e-4 -1.2693217929745768e-2,1.6429295412846443e-3 -1.9045067392788835e-2 2.422838588525822e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2613211581691325,2.4863047384206833 l 3.135853898029588e-2,0.2983565686104818 c 8.100264244902655e-3,-8.513720789103918e-4 1.6196775117717176e-2,-1.7380842319702982e-3 2.4289301400708983e-2 -2.6601111367205816e-3l -3.396096413037169e-2,-0.2980715567029761 c -7.2254698955284e-3,8.232383078127529e-4 -1.4454497460541366e-2,1.6149455873305267e-3 -2.1686876250633168e-2 2.375099229214861e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.24904707028939368,2.1858580824884926 l 3.396096413037184e-2,0.2980715567029761 c 7.225469895528456e-3,-8.232383078122577e-4 1.4447313339643691e-2,-1.6779998072075635e-3 2.1665324093101797e-2 -2.5642600881638582e-3l -3.656080302154391e-2,-0.2977638454923965 c -6.351849463043134e-3,7.7990904724154e-4 -1.2707071693864543e-2,1.5320991667094087e-3 -1.906548520192973e-2 2.2565488775842524e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2299626191888366,2.1879481698102015 l 3.135853898029588e-2,0.2983565686104818 c 7.232378790091656e-3,-7.601536418842783e-4 1.4461406355104622e-2,-1.5518609214020523e-3 2.1686876250633022e-2 -2.375099229214805e-3l -3.396096413037169e-2,-0.2980715567029761 c -6.358413508064992e-3,7.244497108752227e-4 -1.2719957765276403e-2,1.4211521168508636e-3 -1.908445110055721e-2 2.0900873217090665e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2644288918241232,1.8815093306089838 l 4.1751930288019455e-2,0.29708042062247114 c 1.2674601838680521e-2,-1.7812991219281244e-3 2.533341749719654e-2,-3.673171797987397e-3 3.797500097636382e-2 -5.675401922151587e-3l -4.693033951206903e-2,-0.2963065021785414 c -1.091773118655356e-2,1.7291987435963463e-3 -2.1850344709817393e-2,3.363088782011172e-3 -3.279659175231424e-2 4.901483478221835e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.23155175246977916,1.8858376881185122 l 3.656080302154408e-2,0.29776384549239665 c 1.2703759391691943e-2,-1.559825518724546e-3 2.5393664782139e-2,-3.230483257524694e-3 3.80682666208194e-2 -5.01178237945368e-3l -4.175193028801942e-2,-0.29708042062247114 c -1.0946247042496712e-2,1.538394696211397e-3 -2.1905710788791895e-2,2.9812354706297063e-3 -3.287713935434407e-2 4.328357509528147e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.19860408020854067,1.8895916011997196 l 3.13585389802959e-2,0.29835656861048204 c 1.2729047256528575e-2,-1.3378767775575953e-3 2.544617691079486e-2,-2.7868106805673553e-3 3.81499363024867e-2 -4.346636199292765e-3l -3.656080302154405e-2,-0.29776384549239665 c -1.0971428565552045e-2,1.3471220388992173e-3 -2.1954404176054744e-2,2.5984740460440097e-3 -3.294767226123854e-2 3.7539130812073718e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.41411047216403235,1.5454813220625092 l 7.764571353075607e-2,0.2897777478867205 c 3.2033143016109406e-2,-8.583254802197156e-3 6.383607375845612e-2,-1.8003712067424592e-2 9.53761036176103e-2 -2.8251688988437888e-2l -9.270509831248391e-2,-0.2853169548885462 c -2.656002514455089e-2,8.629875301905933e-3 -5.334144050652707e-2,1.6562891946307983e-2 -8.031671883588246e-2 2.3790895990263572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.3326587053084141,1.565036161174089 l 6.2373507245327656e-2,0.29344428022014174 c 3.243845555465389e-2,-6.895006578583045e-3 6.4690830124937e-2,-1.4638116642803635e-2 9.672397314104635e-2 -2.322137144500092e-2l -7.764571353075592e-2,-0.28977774788672056 c -2.697527832935525e-2,7.228004043955607e-3 -5.4135172704330485e-2,1.374851778224663e-2 -8.145176685561809e-2 1.9554839111579736e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2502951440643686,1.5803013449522205 l 4.693033951206911e-2,0.2963065021785413 c 3.2754856541292475e-2,-5.1878596212030685e-3 6.536827342264988e-2,-1.1232399157947765e-2 9.780672897730375e-2 -1.812740573653094e-2l -6.237350724532749e-2,-0.2934442802201418 c -2.7316594151287454e-2,5.8063213293332e-3 -5.4780524156641065e-2,1.0896459886591891e-2 -8.236356124404536e-2 1.5265183778131408e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.16724554122824478,1.5912350325892375 l 3.13585389802959e-2,0.29835656861048204 c 3.298147874291354e-2,-3.466493101205075e-3 6.586654682660427e-2,-7.795894447754452e-3 9.862140336789671e-2 -1.2983754068957652e-2l -4.693033951206895e-2,-0.29630650217854143 c -2.758303708740416e-2,4.368723891539537e-3 -5.527572599998583e-2,8.014535551791643e-3 -8.304960283612364e-2 1.093368763701702e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 4.3631016093207825e-2,2.499619237890978 l 5.235721931184936e-3,0.2999543085469172 c 8.143642259806214e-3,-1.4214780439709092e-4 1.6286625520649523e-2,-3.198283312242474e-4 2.4428717237650895e-2 -5.330365063353267e-4l -7.85308449236193e-3,-0.299897197492667 c -7.269724747322654e-3,1.9036444206346374e-4 -1.4540245515932753e-2,3.490077695877106e-4 -2.1811354676473903e-2 4.7592545208519077e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 5.758928627732003e-2,2.1992461149462263 l 7.853084492361818e-3,0.29989719749266697 c 7.269724747322668e-3,-1.9036444206296563e-4 1.4538584270150798e-2,-4.1244818651435143e-4 2.180637098656946e-2 -6.66244891154089e-4l -1.0469849010750267e-2,-0.2998172481057286 c -6.395652310448425e-3,2.233411000829691e-4 -1.279224869053718e-2,4.1877479520018864e-4 -1.9189606468181013e-2 5.862955042156837e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 3.839529416202289e-2,2.199664929344061 l 5.235721931184936e-3,0.2999543085469172 c 7.271109160541263e-3,-1.269176824974026e-4 1.454162992915136e-2,-2.8556101002164946e-4 2.1811354676474014e-2 -4.759254520851132e-4l -7.85308449236193e-3,-0.299897197492667 c -6.3973577776439364e-3,1.675207090158481e-4 -1.2795416054020825e-2,3.0712683723718536e-4 -1.9193992115297022e-2 4.1881439783497676e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -4.592425496802574e-16,2.5 l -5.510910596163086e-17,0.2999999999999998 c 8.144882764901934e-3,1.4961906911201395e-18 1.6289726762723368e-2,-3.5538811742072185e-5 2.443429939544693e-2 -1.0661542032063925e-4l -2.6179606495122273e-3,-0.29998857691925124 c -7.271939850646036e-3,6.346125765943488e-5 -1.4544121991558032e-2,9.519233957200066e-5 -2.1816338745934645e-2 9.519233957205886e-5Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9198378096422188e-2,2.1999162307411773 l 2.6179606495121146e-3,0.29998857691925124 c 7.271939850646039e-3,-6.346125765893662e-5 1.454356818673261e-2,-1.5865208695244192e-4 2.1814677347273867e-2 -2.855697694503438e-4l -5.23572193118509e-3,-0.29995430854691724 c -6.398576061276306e-3,1.1168756059815361e-4 -1.2797608997032488e-2,1.9545549037643827e-4 -1.919691606560089e-2 2.513013971163214e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -4.0413344371862655e-16,2.2 l -5.510910596163086e-17,0.2999999999999998 c 7.2722167543767275e-3,1.3358845456429818e-18 1.4544398895288723e-2,-3.173108191256446e-5 2.181633874593476e-2 -9.519233957199934e-5l -2.6179606495122273e-3,-0.29998857691925124 c -6.399307068568512e-3,5.58459067403027e-5 -1.2798827352571068e-2,8.37692588233606e-5 -1.9198378096422476e-2 8.376925882341846e-5Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 6.630904373475126e-2,1.898842571336282 l 1.04698490107502e-2,0.2998172481057288 c 1.2791365503477922e-2,-4.4668432623115335e-4 2.5578589388829388e-2,-1.0049865782478834e-3 3.836021098897416e-2 -1.6748429819480003e-3l -1.5700786872883e-2,-0.2995888604263722 c -1.1038673200125033e-2,5.785123486501009e-4 -2.2082184737474024e-2,1.0606824753918221e-3 -3.312927312684136e-2 1.4464553025914095e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 3.315957223083821e-2,1.8997106207971435 l 5.23572193118498e-3,0.2999543085469174 c 1.2797213032965922e-2,-2.2337618439016073e-4 2.5592233080000384e-2,-5.584255758180184e-4 3.838359858347828e-2 -1.0051099020500413e-3l -1.046984901075016e-2,-0.29981724810572874 c -1.104708838936727e-2,3.8577282720038354e-4 -2.2097332975442488e-2,6.751336652517151e-4 -3.31494715039131e-2 8.680494608613865e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -3.4902433775699566e-16,1.9000000000000001 l -5.51091059616309e-17,0.30000000000000004 c 1.2799162407394694e-2,4.908492988261664e-16 2.5598081129057686e-2,-1.1169447154816912e-4 3.839529416202359e-2 -3.350706559391999e-4l -5.2357219311849395e-3,-0.2999543085469174 c -1.1052138528470555e-2,1.929157956104357e-4 -2.2105750151724956e-2,2.8937920285700564e-4 -3.3159572230838597e-2 2.893792028565434e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -8.724874175625412e-2,2.4984770675477392 l -1.0469849010750489e-2,0.2998172481057285 c 8.139921122390223e-3,2.84252309196003e-4 1.6281043787957056e-2,5.329861029821513e-4 2.442313550495976e-2 7.461942780921696e-4l 7.85308449236204e-3,-0.299897197492667 c -7.2697247473238425e-3,-1.9036444206251628e-4 -1.4538584270151374e-2,-4.124481865144344e-4 -2.180637098657131e-2 -6.662448911536889e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -5.758928627732174e-2,2.1992461149462255 l -7.85308449236205e-3,0.29989719749266697 c 7.2697247473238295e-3,1.903644420630017e-4 1.4540245515933333e-2,3.490077695877836e-4 2.1811354676475766e-2 4.7592545208472413e-4l 5.235721931185055e-3,-0.29995430854691724 c -6.398576061277342e-3,-1.1168756059730766e-4 -1.2796634337653707e-2,-2.512936888191157e-4 -1.919399211529877e-2 -4.1881439783447716e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -7.677889274550363e-2,2.1986598194420104 l -1.0469849010750489e-2,0.2998172481057285 c 7.267786716419842e-3,2.537967046392884e-4 1.4536646239247372e-2,4.758804490912066e-4 2.1806370986571216e-2 6.662448911537228e-4l 7.85308449236204e-3,-0.299897197492667 c -6.397357777644982e-3,-1.6752070901501434e-4 -1.279395415773321e-2,-3.629544041327023e-4 -1.918960646818277e-2 -5.862955042152396e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.13083989060736076,2.4965738368864345 l -1.5700786872883284e-2,0.29958886042637195 c 8.133720486144566e-3,4.2627022798781886e-4 1.6269262216033826e-2,8.170483200276901e-4 2.4406392857301853e-2 1.1723231163946431e-3l 1.3085816209601099e-2,-0.29971446647455713 c -7.265295215417881e-3,-3.17209639613351e-4 -1.4529171759961865e-2,-6.661186503632361e-4 -2.1791422194019666e-2 -1.0467170682094684e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -9.596265220374031e-2,2.197906087480087 l -1.3085816209600946e-2,0.29971446647455713 c 7.265295215417859e-3,3.172096396138487e-4 1.4531939940668799e-2,6.027168884559528e-4 2.17997266570875e-2 8.565135930947017e-4l 1.0469849010750602e-2,-0.2998172481057285 c -6.395652310448455e-3,-2.2334110008209908e-4 -1.2790299668669285e-2,-4.745874790631508e-4 -1.9183759458237158e-2 -7.537319619232985e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.11513910373447749,2.1969849764600626 l -1.5700786872883284e-2,0.29958886042637195 c 7.262250434057648e-3,3.8059841784626687e-4 1.452612697860163e-2,7.29507428596152e-4 2.1791422194019514e-2 1.046717068209503e-3l 1.3085816209601099e-2,-0.29971446647455713 c -6.393459789567736e-3,-2.7914448285974887e-4 -1.2785671148766442e-2,-5.861844123196478e-4 -1.9176451530737326e-2 -9.211110200243455e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -3.315957223083893e-2,1.8997106207971437 l -5.235721931185098e-3,0.2999543085469174 c 1.2797213032965904e-2,2.2337618439114245e-4 2.5596131754628895e-2,3.3507065593972303e-4 3.8395294162023585e-2 3.350706559393439e-4l 1.0234868508263162e-16,-0.3 c -1.10538220791136e-2,3.274832661992466e-16 -2.2107433702368003e-2,-9.646340724617382e-5 -3.315957223083859e-2 -2.8937920285676544e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -6.630904373475244e-2,1.8988425713362822 l -1.0469849010750387e-2,0.29981724810572874 c 1.2791365503477887e-2,4.466843262321376e-4 2.5586385550512354e-2,7.817337176599187e-4 3.838359858347827e-2 1.005109902050194e-3l 5.2357219311852075e-3,-0.2999543085469174 c -1.1052138528470569e-2,-1.9291579560978326e-4 -2.2102383114545786e-2,-4.822766336610487e-4 -3.314947150391309e-2 -8.68049460861553e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -9.943831686159418e-2,1.8973961160336905 l -1.5700786872883295e-2,0.29958886042637217 c 1.2781621600144769e-2,6.698564037002342e-4 2.5568845485496237e-2,1.2281586557168908e-3 3.836021098897415e-2 1.6748429819481616e-3l 1.0469849010750496e-2,-0.29981724810572874 c -1.1047088389367294e-2,-3.85772827199734e-4 -2.2090599926716286e-2,-8.679429539413918e-4 -3.312927312684135e-2 -1.446455302591576e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.21788935686914784,2.4904867452293638 l -2.6146722824297725e-2,0.29885840942752345 c 8.113889026974143e-3,7.098733069676355e-4 1.623083684592198e-2,1.38433965932764e-3 2.435061165547697e-2 2.0233797958706078e-3l 2.3537728718353655e-2,-0.2990752001199382 c -7.249798937102668e-3,-5.705715504847925e-4 -1.4497073775448953e-2,-1.172773650806225e-3 -2.17416175495329e-2 -1.8065891034558246e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.17261001060126108,2.1932181342128816 l -2.3537728718353766e-2,0.29907520011993816 c 7.249798937102627e-3,5.705715504852887e-4 1.450205295943561e-2,1.1095071196526906e-3 2.1756554959299044e-2 1.6167913167404696e-3l 2.092694212323777e-2,-0.2992692150779471 c -6.383961759879825e-3,-4.4641009343724563e-4 -1.2765945299532849e-2,-9.206733943045595e-4 -1.914576836418305e-2 -1.4227763587315034e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.19174263404485012,2.1916283358018402 l -2.6146722824297725e-2,0.29885840942752345 c 7.244543774084056e-3,6.338154526496746e-4 1.4491818612430341e-2,1.2360175529711073e-3 2.1741617549533007e-2 1.8065891034558996e-3l 2.3537728718353655e-2,-0.2990752001199382 c -6.379823064650348e-3,-5.021029644266174e-4 -1.2757424922395079e-2,-1.0320408127094782e-3 -1.9132623443588938e-2 -1.5897984110411212e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.2613211581691356,2.4863047384206833 l -3.135853898029625e-2,0.2983565686104818 c 8.100264244902653e-3,8.51372078910402e-4 1.6204204752472688e-2,1.6673959791445889e-3 2.4311590092802485e-2 2.4480483969350686e-3l 2.8753725756067307e-2,-0.29861885951015343 c -7.23873691100875e-3,-6.970110873129282e-4 -1.4474398078481995e-2,-1.4256038553791665e-3 -2.170677686857354e-2 -2.185757497263463e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.21086065554449457,2.1898716364077937 l -2.8753725756067418e-2,0.2986188595101535 c 7.238736911008698e-3,6.97011087313424e-4 1.448048065733038e-2,1.362433858767427e-3 2.1725024431414486e-2 1.996249311416604e-3l 2.6146722824297572e-2,-0.29885840942752345 c -6.375198521194013e-3,-5.577575983312762e-4 -1.2747933017957092e-2,-1.1433296372107987e-3 -1.911802149964464e-2 -1.7566993940466569e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.22996261918883934,2.1879481698102015 l -3.135853898029625e-2,0.2983565686104818 c 7.2323787900916555e-3,7.601536418842874e-4 1.4468039957564901e-2,1.488746409950526e-3 2.170677686857365e-2 2.1857574972634543e-3l 2.8753725756067307e-2,-0.29861885951015343 c -6.3700884816877005e-3,-6.133697568353769e-4 -1.2737470309064155e-2,-1.2545313927336667e-3 -1.9101963644344706e-2 -1.9234665975918497e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.13253730011383977,1.8953716954936661 l -2.092694212323786e-2,0.2992692150779473 c 1.2767984291053898e-2,8.928244364187224e-4 2.5543516902454273e-2,1.6742094847498978e-3 3.832513850259908e-2 2.3440658884492692e-3l 1.5700786872883482e-2,-0.29958886042637217 c -1.1038673200125066e-2,-5.785123486494567e-4 -2.2072087728152664e-2,-1.2533448903900176e-3 -3.30989832522447e-2 -2.0244205400243853e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.16559591122055212,1.8927699263743167 l -2.6146722824297704e-2,0.29885840942752373 c 1.275045773026173e-2,1.1155205061648865e-3 2.5510407516718216e-2,2.1197503333554063e-3 3.827839180777218e-2 3.0125747697732604e-3l 2.0926942123237903e-2,-0.2992692150779473 c -1.1026895524092055e-2,-7.71075649633601e-4 -2.204685215784993e-2,-1.6383650458435951e-3 -3.305861110671238e-2 -2.601769119349673e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.19860408020854306,1.8895916011997194 l -3.135853898029627e-2,0.29835656861048204 c 1.2729047256528469e-2,1.337876777558583e-3 2.54695274137277e-2,2.564645485474892e-3 3.8219985143989506e-2 3.680165991638911e-3l 2.6146722824297745e-2,-0.2988584094275237 c -1.101175894886247e-2,-9.634040735052892e-4 -2.201490090280726e-2,-2.0228861394330105e-3 -3.300816898799098e-2 -3.178325174597263e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 8.373752998870887e-2,1.597807255607318 l 1.5700786872882917e-2,0.29958886042637217 c 3.311770100381474e-2,-1.7356251645696493e-3 6.618428460403444e-2,-4.338021732765801e-3 9.916576334694796e-2 -7.804514833970998e-3l -3.1358538980295884e-2,-0.29835656861048193 c -2.7773876836137697e-2,2.9191520852254295e-3 -5.5619420920533236e-2,5.110643932127452e-3 -8.3508011239535e-2 6.572223018080747e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2490009027033011e-15,1.5999999999999999 l -2.2898349882893854e-16,0.30000000000000004 c 3.3163149948247664e-2,2.5587171270657905e-17 6.63206158577782e-2,-8.682588017398553e-4 9.943831686159292e-2 -2.6038839663096395e-3l -1.5700786872883003e-2,-0.2995888604263721 c -2.7888590319001882e-2,1.4615790859535019e-3 -5.581066687439601e-2,2.1927443926818228e-3 -8.373752998870967e-2 2.192744392681689e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -8.373752998871137e-2,1.5978072556073182 l -1.570078687288338e-2,0.29958886042637217 c 3.311770100381474e-2,1.7356251645697003e-3 6.627516691334526e-2,2.603883966309731e-3 9.943831686159293e-2 2.603883966309622e-3l 1.457167719820518e-16,-0.30000000000000004 c -2.792686311431383e-2,9.128982292327947e-17 -5.5848939669707956e-2,-7.311653067283547e-4 -8.37375299887097e-2 -2.1927443926817447e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.16724554122824678,1.5912350325892373 l -3.135853898029627e-2,0.29835656861048204 c 3.298147874291353e-2,3.466493101205116e-3 6.604806234313322e-2,6.068889669401417e-3 9.916576334694797e-2 7.804514833970984e-3l 1.5700786872883295e-2,-0.29958886042637217 c -2.7888590319001896e-2,-1.4615790859533193e-3 -5.573413440339743e-2,-3.6530709328554674e-3 -8.3508011239535e-2 -6.572223018080858e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4770224884413637,2.45406795861916 l -5.7242698612963605e-2,0.294488155034299 c 7.995238328022106e-3,1.5541168978306782e-3 1.5997219726189553e-2,3.073340534880222e-3 2.400571567631255e-2 4.557627525613519e-3l 5.467065764764456e-2,-0.29497647226918616 c -7.150442812609821e-3,-1.3252562417261577e-3 -1.4295069060973612e-2,-2.6817059176632504e-3 -2.1433674710993507e-2 -4.0693102907263246e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.40091815608272524,2.1631607966407 l -5.467065764764431e-2,0.2949764722691862 c 7.15044281260973e-3,1.3252562417266445e-3 1.4306634121747165e-2,2.619306433637509e-3 2.1468369563042728e-2 3.882113620633459e-3l 5.209445330007934e-2,-0.2954423259036622 c -6.302327188340097e-3,-1.1112703245564361e-3 -1.259977554038104e-2,-2.2500344934379968e-3 -1.8892165215477756e-2 -3.416259986157466e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4197797898284001,2.159579803584861 l -5.7242698612963605e-2,0.294488155034299 c 7.138605650019738e-3,1.3876043730631055e-3 1.428323189838353e-2,2.7440540490001985e-3 2.143367471099335e-2 4.069310290726356e-3l 5.467065764764456e-2,-0.29497647226918616 c -6.292389675096643e-3,-1.1662254927190187e-3 -1.257966077365678e-2,-2.3599012075436604e-3 -1.8861633745674303e-2 -3.580993055839199e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5197792270443995,2.445369001834514 l -6.23735072453279e-2,0.2934442802201415 c 7.966897534746952e-3,1.6934163471631915e-3 1.5941146084006073e-2,3.3520624307586864e-3 2.3922517921574002e-2 4.9758908836668725e-3l 5.981038032515941e-2,-0.2939774113862486 c -7.126224854971364e-3,-1.4498468329537375e-3 -1.4246089631095582e-2,-2.930780836164001e-3 -2.1359391001405513e-2 -4.442759717559752e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.43860945571783494,2.1558343501658253 l -5.9810380325159264e-2,0.2939774113862487 c 7.126224854971263e-3,1.4498468329542252e-3 1.4258741951611052e-2,2.8685926940230123e-3 2.139734760163089e-2 4.2561970670856285e-3l 5.7242698612963716e-2,-0.2944881550342989 c -6.281972972017456e-3,-1.221091848295102e-3 -1.2558588017060474e-2,-2.4695882060356343e-3 -1.882966588943534e-2 -3.745453419035427e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4574057197990716,2.1519247216143724 l -6.23735072453279e-2,0.2934442802201415 c 7.113301370309778e-3,1.5119788813957066e-3 1.4233166146433995e-2,2.9929128846059704e-3 2.135939100140536e-2 4.442759717559708e-3l 5.981038032515941e-2,-0.2939774113862486 c -6.271077872374801e-3,-1.2758652129992892e-3 -1.2536558875364113e-2,-2.5790871358243213e-3 -1.879626408123687e-2 -3.909628551452604e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3299315375671679,1.8711347307231954 l -5.2094453300079155e-2,0.2954423259036625 c 1.2604714370864608e-2,2.222551227707652e-3 2.522858429957132e-2,4.335062558281867e-3 3.787016777873871e-2 6.337292682445313e-3l 4.693033951206936e-2,-0.2963065021785414 c -1.0917731186553656e-2,-1.729198743595704e-3 -2.182016430680036e-2,-3.5536403472734347e-3 -3.2706053990728914e-2 -5.473116407566425e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.36253709121543565,1.8650916485505615 l -5.724269861296354e-2,0.29448815503429926 c 1.2564005744459981e-2,2.4421953206167036e-3 2.5149084590286915e-2,4.7747018142902855e-3 3.775379896115167e-2 6.997253041997083e-3l 5.209445330007926e-2,-0.2954423259036625 c -1.0885889683928653e-2,-1.919476060292234e-3 -2.175482141441555e-2,-3.9339134866466915e-3 -3.260555364826739e-2 -6.043082172633885e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3950322125537436,1.8584804413942306 l -6.237350724532795e-2,0.29344428022014174 c 1.2519470000195336e-2,2.661095497173017e-3 2.506192422621166e-2,5.212886649872497e-3 3.76259299706718e-2 7.655081970488348e-3l 5.724269861296365e-2,-0.2944881550342992 c -1.0850732233851943e-2,-2.1091686859864168e-3 -2.168285179268422e-2,-4.31298831786324e-3 -3.24951213383075e-2 -6.6112071563309005e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6048047389991716,2.4257393156899907 l -7.257656867990055e-2,0.2910887178827987 c 7.902944937803367e-3,1.9704254779221463e-3 1.581444987677821e-2,3.906358420088429e-3 2.3734288882534437e-2 5.807743540704118e-3l 7.003360915677176e-2,-0.29171097611930275 c -7.07128482656806e-3,-1.6976652862640091e-3 -1.4135128522081312e-2,-3.426176841769619e-3 -2.1191329359405653e-2 -5.185485304200099e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.513579800482994,2.139213824874888 l -7.003360915677186e-2,0.29171097611930275 c 7.0712848265679475e-3,1.6976652862644938e-3 1.4149943470006572e-2,3.3644681425826634e-3 2.1235773780101e-2 5.00036096889635e-3l 6.748531630315965e-2,-0.2923110194355703 c -6.235530672883101e-3,-1.4395856871560443e-3 -1.246475027910909e-2,-2.9063722007160345e-3 -1.8687480926488795e-2 -4.400317652628771e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.532228170319271,2.134650597807192 l -7.257656867990055e-2,0.2910887178827987 c 7.056200837324435e-3,1.7593084624304878e-3 1.4120044532837687e-2,3.487820017936097e-3 2.1191329359405747e-2 5.185485304200106e-3l 7.003360915677176e-2,-0.29171097611930275 c -6.222730647379894e-3,-1.493945451912328e-3 -1.2438913099431556e-2,-3.0150356207572647e-3 -1.8648369836276962e-2 -4.563227067696074e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6470476127563038,2.4148145657226703 l -7.76457135307564e-2,0.2897777478867203 c 7.86735261471549e-3,2.1080507796839036e-3 1.5743865904625877e-2,4.181763669611756e-3 2.3629314934622142e-2 6.221079449310319e-3l 7.511400121633251e-2,-0.29044429211343215 c -7.040579491068093e-3,-1.8208176604451462e-3 -1.4073180642773797e-2,-3.6723470264521567e-3 -2.1097602620198247e-2 -5.554535222598467e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5508360089197729,2.1299248088318365 l -7.51140012163326e-2,0.29044429211343215 c 7.040579491067968e-3,1.8208176604456276e-3 1.4089070299609653e-2,3.610906282291519e-3 2.114527113693421e-2 5.370214744721523e-3l 7.257656867990042e-2,-0.2910887178827988 c -6.209456736845609e-3,-1.5481914469384042e-3 -1.241212864836229e-2,-3.123469434162789e-3 -1.8607838600502025e-2 -4.7257889753549165e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5694018992255474,2.1250368178359498 l -7.76457135307564e-2,0.2897777478867203 c 7.024421977424545e-3,1.8821881961463428e-3 1.405702312913025e-2,3.7337175621533535e-3 2.1097602620198344e-2 5.5545352225985e-3l 7.511400121633251e-2,-0.29044429211343215 c -6.195709952139922e-3,-1.6023195411917286e-3 -1.2384398965640942e-2,-3.2316653832778985e-3 -1.856589030577445e-2 -4.88799099588666e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4274070032533452,1.8513031230919468 l -6.748531630315978e-2,0.29231101943557053 c 1.2471120704089803e-2,2.8791850782622845e-3 2.496712975723678e-2,5.649483589682797e-3 3.74865997574323e-2 8.310579086854968e-3l 6.237350724532813e-2,-0.29344428022014174 c -1.0812269545623402e-2,-2.298218838466876e-3 -2.160427736425034e-2,-4.690749371057317e-3 -3.237479069960065e-2 -7.177318302283742e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.45965160163937024,1.8435618799243931 l -7.257656867990057e-2,0.2910887178827989 c 1.2418972583807345e-2,3.096397631685415e-3 2.4864730058675837e-2,6.08435964206389e-3 3.733585076276583e-2 8.963544720325326e-3l 6.748531630315979e-2,-0.2923110194355706 c -1.0770513335350456e-2,-2.4865689312257864e-3 -2.1519122063645976e-2,-5.06708157655265e-3 -3.224459838602505e-2 -7.741243167553646e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4917561856947909,1.8352590699492295 l -7.764571353075647e-2,0.28977774788672045 c 1.2363041524170571e-2,3.3126669923944567e-3 2.4754756322468974e-2,6.517382339557495e-3 3.717372890627653e-2 9.613779971242065e-3l 7.25765686799006e-2,-0.29108871788279894 c -1.0725476322379255e-2,-2.6741615910003107e-3 -2.1427411830000603e-2,-5.4418702999138435e-3 -3.210458405542066e-2 -8.302809975163583e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7309292618068428,2.3907618899075884 l -8.771151141682108e-2,0.28689142678891044 c 7.7889901248370755e-3,2.381333258741219e-3 1.5588333719503548e-2,4.7286692483948034e-3 2.33978080526795e-2 7.0419409344409335e-3l 8.5204603411177e-2,-0.28764592046045767 c -6.97274494033567e-3,-2.065421148255474e-3 -1.3936444578430735e-2,-4.161256853303317e-3 -2.089090004703542e-2 -6.287447262893708e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6248337583486308,2.109403416710024 l -8.520460341117686e-2,0.2876459204604577 c 6.9727449403355225e-3,2.0654211482559505e-3 1.3954468806765197e-2,4.100408078210296e-3 2.094497221730857e-2 6.104902675314301e-3l 8.269120674509998e-2,-0.2883785087814954 c -6.151643001278167e-3,-1.7639552454515254e-3 -1.229556000373628e-2,-3.554743743811349e-3 -1.843157555123169e-2 -5.372314354276653e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6432177503900217,2.1038704631186778 l -8.771151141682108e-2,0.28689142678891044 c 6.954455468604532e-3,2.126190409590374e-3 1.3918155106699597e-2,4.222026114638218e-3 2.089090004703527e-2 6.287447262893691e-3l 8.5204603411177e-2,-0.28764592046045767 c -6.13601554749539e-3,-1.817570610464817e-3 -1.2264071229019046e-2,-3.6619060309069193e-3 -1.8383992041391184e-2 -5.532953591346479e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7725424859373689,2.3776412907378837 l -9.270509831248422e-2,0.2853169548885459 c 7.746243828020072e-3,2.516907191546308e-3 1.5503432883143809e-2,5.000002984917233e-3 2.327134563788804e-2 7.449216468605113e-3l 9.021173985128209e-2,-0.2861150852244678 c -6.935636388164493e-3,-2.1867977532927505e-3 -1.3861698044524973e-2,-4.403847568802505e-3 -2.0777987176685914e-2 -6.651086132683226e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6615527589094012,2.098177291646099 l -9.021173985128195e-2,0.28611508522446794 c 6.93563638816434e-3,2.1867977532932254e-3 1.3880781485236294e-2,4.3433226274312686e-3 2.083523695384098e-2 6.469513037021167e-3l 8.771151141682118e-2,-0.2868914267889104 c -6.119920812372122e-3,-1.8710475604391094e-3 -1.223164849779544e-2,-3.768789449680588e-3 -1.833500851938022e-2 -5.693171472578695e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6798373876248847,2.0923243358493377 l -9.270509831248422e-2,0.2853169548885459 c 6.916289132160779e-3,2.2472385638806327e-3 1.3842350788521258e-2,4.464288379390387e-3 2.0777987176685754e-2 6.6510861326831375e-3l 9.021173985128209e-2,-0.2861150852244678 c -6.103360021584754e-3,-1.9243820228976207e-3 -1.2198294279181976e-2,-3.8753858605462045e-3 -1.8284628715483614e-2 -5.852955796761206e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.523710976052299,1.826397222282806 l -8.269120674509986e-2,0.2883785087814957 c 1.2303344562322063e-2,3.5279272826470843e-3 2.4637242047681585e-2,6.94841977925516e-3 3.700028357185238e-2 1.0261086771648772e-2l 7.764571353075639e-2,-0.2897777478867205 c -1.0677172225420237e-2,-2.8609396752490275e-3 -2.132917459913982e-2,-5.815001376865094e-3 -3.195479035750891e-2 -8.86184766642395e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5555062389732002,1.8169790363297675 l -8.77115114168211e-2,0.28689142678891066 c 1.2239899882534697e-2,3.7421129320736233e-3 2.451222303030014e-2,7.377340662977221e-3 3.6815567592622445e-2 1.0905267945623468e-2l 8.269120674509989e-2,-0.2883785087814957 c -1.0625615758369265e-2,-3.046846289558123e-3 -2.122444029507578e-2,-6.186361148065776e-3 -3.1795262920901235e-2 -9.41818595303845e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5871322893124004,1.8070073809607918 l -9.270509831248429e-2,0.2853169548885461 c 1.2172726810672536e-2,3.955158697650391e-3 2.437973735232843e-2,7.804014337267436e-3 3.661963723486338e-2 1.1546127269340227e-2l 8.771151141682114e-2,-0.28689142678891066 c -1.0570822625825642e-2,-3.2318248049719557e-3 -2.1113240820892092e-2,-6.555836493732131e-3 -3.162605033920023e-2 -9.971655368975652e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.2502951440643696,1.58030134495222 l -4.6930339512069326e-2,0.29630650217854126 c 3.275485654129246e-2,5.18785962120309e-3 6.563992462498316e-2,9.517260967752584e-3 9.862140336789672e-2 1.2983754068957548e-2l 3.135853898029629e-2,-0.298356568610482 c -2.7773876836137714e-2,-2.9191520852252344e-3 -5.546656574871937e-2,-6.564963745477435e-3 -8.304960283612368e-2 -1.0933687637016853e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3326587053084151,1.5650361611740888 l -6.2373507245327864e-2,0.29344428022014163 c 3.243845555465388e-2,6.895006578583065e-3 6.505187243601127e-2,1.2939546115327879e-2 9.780672897730375e-2 1.8127405736530836e-2l 4.6930339512069506e-2,-0.29630650217854126 c -2.7583037087404196e-2,-4.368723891539333e-3 -5.504696709275779e-2,-9.458862448798122e-3 -8.23635612440454e-2 -1.5265183778131186e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.41411047216403346,1.5454813220625092 l -7.764571353075629e-2,0.2897777478867205 c 3.2033143016109406e-2,8.583254802197179e-3 6.428551758639248e-2,1.6326364866417885e-2 9.67239731410464e-2 2.322137144500082e-2l 6.2373507245328044e-2,-0.2934442802201417 c -2.7316594151287503e-2,-5.806321329333e-3 -5.447648852626273e-2,-1.232683506762412e-2 -8.145176685561815e-2 -1.9554839111579625e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4944271909999161,1.5216904260722457 l -9.270509831248429e-2,0.2853169548885461 c 3.154002985915423e-2,1.0247976921013193e-2 6.334296060150091e-2,1.9668434186240744e-2 9.537610361761036e-2 2.8251688988437794e-2l 7.764571353075647e-2,-0.28977774788672045 c -2.6975278329355312e-2,-7.228004043955411e-3 -5.375669369133147e-2,-1.5161020688357557e-2 -8.031671883588254e-2 -2.3790895990263405e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9768278212231846,2.3012621336311008 l -0.11721933854678208,0.27615145603573193 c 7.497404115893361e-3,3.1824592341429697e-3 1.5008658666518116e-2,6.332189672086315e-3 2.2533549147715163e-2 9.449101364769735e-3l 0.11480502970952704,-0.2771638597533858 c -6.718652215354508e-3,-2.78295686846734e-3 -1.342512949269804e-2,-5.595216188059612e-3 -2.0119240310460113e-2 -8.436697647115854e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8419035512031978,2.032534971524831 l -0.1148050297095269,0.27716385975338587 c 6.718652215354317e-3,2.7829568684678e-3 1.3449415411375978e-2,5.53658479381265e-3 2.019209737294435e-2 8.260805138751376e-3l 0.11238197802477372,-0.278155156370036 c -5.933560126180168e-3,-2.397313903546079e-3 -1.185663173867923e-2,-4.820506477849547e-3 -1.7769045688191168e-2 -7.269508522101231e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8596084826764024,2.025110677595369 l -0.11721933854678208,0.27615145603573193 c 6.69411081776193e-3,2.841481459056223e-3 1.3400588095105461e-2,5.6537407786484955e-3 2.011924031045997e-2 8.436697647115837e-3l 0.11480502970952704,-0.2771638597533858 c -5.912413949511967e-3,-2.4490020442512594e-3 -1.1814113953574276e-2,-4.923790245492459e-3 -1.7704931473204927e-2 -7.424293929461978e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0168416076895002,2.2838636441065026 l -0.12202099292273996,0.2740636372927801 c 7.44072065290767e-3,3.3128222740421535e-3 1.4895860827311917e-2,6.593162460055134e-3 2.236520762155123e-2 9.840926879064554e-3l 0.1196247206775739,-0.275118022315537 c -6.6690596377136716e-3,-2.899789659829839e-3 -1.332543479343175e-2,-5.828664825912858e-3 -1.9968935376385166e-2 -8.786541856307672e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8772479516355416,2.0175321636472736 l -0.11962472067757376,0.27511802231553706 c 6.669059637713468e-3,2.8997896598302953e-3 1.335074027216902e-2,5.7704662092346965e-3 2.004485108993115e-2 8.611947668290461e-3l 0.11721933854678218,-0.2761514560357319 c -5.890817519630676e-3,-2.5005036839690726e-3 -1.1770696477951561e-2,-5.026699047444946e-3 -1.7639468959139565e-2 -7.5785139480956665e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8948206147667603,2.0098000068137223 l -0.12202099292273996,0.2740636372927801 c 6.643500582953278e-3,2.9578770303947803e-3 1.3299875738671356e-2,5.886752196477799e-3 1.9968935376385027e-2 8.786541856307638e-3l 0.1196247206775739,-0.275118022315537 c -5.868772481188032e-3,-2.5518149006502587e-3 -1.1726382618219941e-2,-5.129225046803315e-3 -1.757266313121897e-2 -7.7321568335507185e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.711752527490233,1.7616493236768964 l -0.11238197802477362,0.2781551563700363 c 1.186717673611435e-2,4.794650628011583e-3 2.3775969016243098e-2,9.485648659076609e-3 3.572501651534572e-2 1.4072458246911577e-2l 0.10751038486359016,-0.28007412794916053 c -1.0319631931043176e-2,-3.9613355531302e-3 -2.0604497991154363e-2,-8.01265203450454e-3 -3.085342335416226e-2 -1.2153486667787317e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7423891441296201,1.748959221559637 l -0.11721933854678213,0.27615145603573216 c 1.1781691116132644e-2,5.001031171159268e-3 2.3606800425280954e-2,9.899151823552792e-3 3.547397716139563e-2 1.4693802451563568e-2l 0.11238197802477366,-0.27815515637003624 c -1.024892536300813e-2,-4.140834633282033e-3 -2.0461519766363487e-2,-8.371029742167349e-3 -3.0636616639387174e-2 -1.269010211725946e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7727996218440203,1.735736369520942 l -0.12202099292274005,0.2740636372927803 c 1.169261667890516e-2,5.20588835176614e-3 2.343044097422506e-2,1.0309639610488286e-2 3.521213209035804e-2 1.5310670781646751e-2l 0.11721933854678217,-0.2761514560357321 c -1.017509687302394e-2,-4.319072375091402e-3 -2.0312308764436578e-2,-8.726857553078709e-3 -3.0410477714400155e-2 -1.3222852038694999e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0959278669726944,2.246985115747917 l -0.13151134403672324,0.2696382138897499 c 7.320572136899724e-3,3.5704815981132255e-3 1.4656688619835443e-2,7.109004129449734e-3 2.2008139946192145e-2 1.0615466541942717e-2l 0.12915332904248847,-0.27077558530495804 c -6.5637958271041975e-3,-3.130770011154449e-3 -1.3113899829725377e-2,-6.290165128419189e-3 -1.965012495195738e-2 -9.478095126734587e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9471244129782495,1.9856876255696934 l -0.1291533290424885,0.270775585304958 c 6.563795827103987e-3,3.1307700111548858e-3 1.3141220995479588e-2,6.232885113237571e-3 1.973208766899087e-2 9.306256716973906e-3l 0.1267854785222097,-0.2718923361109949 c -5.799962672689928e-3,-2.7045670112879746e-3 -1.1588096820860457e-2,-5.434428301120738e-3 -1.7364237148712075e-2 -8.189505910936978e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9644165229359711,1.977346901858167 l -0.13151134403672324,0.2696382138897499 c 6.536225122231897e-3,3.18792999831538e-3 1.3086329124853075e-2,6.34732511558012e-3 1.965012495195727e-2 9.47809512673457e-3l 0.12915332904248847,-0.27077558530495804 c -5.7761403278516945e-3,-2.7550776098159155e-3 -1.1540231850158332e-2,-5.535345313008887e-3 -1.72921099577225e-2 -8.340723711526443e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1349762493488673,2.2275163104709197 l -0.136197149921864,0.2673019572565102 c 7.257143682277015e-3,3.697699396757852e-3 1.4530387105735315e-2,7.363715880505364e-3 2.1819522563266414e-2 1.0997944758239881e-2l 0.13385934393294274,-0.2684803084806073 c -6.50815665850991e-3,-3.2448472122629623e-3 -1.3002124000883394e-2,-6.518076215608955e-3 -1.9481716574345165e-2 -9.819593534142801e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9816351888415797,1.968855595524455 l -0.1338593439329426,0.26848030848060733 c 6.508156658509686e-3,3.2448472122634086e-3 1.3030440679597407e-2,6.461281744540186e-3 1.956666580182848e-2 9.649211742854607e-3l 0.13151134403672335,-0.2696382138897499 c -5.751878107563345e-3,-2.8053783985166913e-3 -1.149148804612054e-2,-5.635840786920255e-3 -1.721866590560922e-2 -8.491306333712034e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9987790994270033,1.9602143532144094 l -0.136197149921864,0.2673019572565102 c 6.479592573461621e-3,3.3015173185337965e-3 1.2973559915835105e-2,6.5747463218797896e-3 1.9481716574345016e-2 9.819593534142752e-3l 0.13385934393294274,-0.2684803084806073 c -5.7271778594887215e-3,-2.855465546791407e-3 -1.1441869120777388e-2,-5.735907069735881e-3 -1.7143910585423763e-2 -8.64124231004565e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8029746973073286,1.7219847953696352 l -0.1267854785222098,0.27189233611099506 c 1.159998055736836e-2,5.409159768350491e-3 2.324694438387264e-2,1.0716986981326702e-2 3.493956106277815e-2 1.592287533309205e-2l 0.12202099292274009,-0.27406363729278027 c -1.0098168949963853e-2,-4.495994485615526e-3 -2.0156910436490278e-2,-9.080027078640435e-3 -3.017507546330843e-2 -1.3751574151306845e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8329051788992472,1.7077086879684173 l -0.13151134403672324,0.2696382138897502 c 1.150381096938225e-2,5.6107835024697e-3 2.305636654906268e-2,1.1121069854112828e-2 3.46563471064314e-2 1.6530229622462533e-2l 0.1267854785222099,-0.271892336110995 c -1.0018165026818446e-2,-4.671547072665655e-3 -1.9995372118360635e-2,-9.430430739993813e-3 -2.993048159191805e-2 -1.4276107401217708e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8625819495051392,1.6929123959578989 l -0.1361971499218641,0.2673019572565104 c 1.1404137209134945e-2,5.810698137581174e-3 2.2858765521649838e-2,1.152176514128917e-2 3.4362576491032464e-2 1.713254864375809e-2l 0.13151134403672335,-0.26963821388975007 c -9.935109473557725e-3,-4.845676661223158e-3 -1.9827743016184222e-2,-9.777961800789154e-3 -2.9676770605891717e-2 -1.4796292010518408e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.212024050615844,2.1865492678484886 l -0.14544288607390118,0.2623859121418185 c 7.123674978523239e-3,3.9487175202030465e-3 1.4264545608418569e-2,7.866333300634583e-3 2.1422407962840156e-2 1.175273546319456e-2l 0.14314762807788253,-0.26364513379858945 c -6.390948530733561e-3,-3.470001930857122e-3 -1.2766725878854392e-2,-6.967873163385279e-3 -1.9127149966821508e-2 -1.0493513806423604e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0497492725711397,1.9333976478563233 l -0.14314762807788262,0.2636451337985894 c 6.3909485307333215e-3,3.470001930857557e-3 1.2797007406268608e-2,6.912101527809151e-3 1.921799368429413e-2 1.0326200492403698e-2l 0.14084146883576726,-0.26488427785767793 c -5.6504679246624605e-3,-3.004407088843203e-3 -1.1287799735133512e-2,-6.033454734160606e-3 -1.691183444217878e-2 -9.087056433315144e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0665811645419427,1.9241633557066702 l -0.14544288607390118,0.2623859121418185 c 6.360424087967178e-3,3.525640643038435e-3 1.2736201436088009e-2,7.023511875566591e-3 1.912714996682157e-2 1.0493513806423714e-2l 0.14314762807788253,-0.26364513379858945 c -5.624034707045534e-3,-3.053601699154268e-3 -1.1234718773391866e-2,-6.131728383779046e-3 -1.6831891970802926e-2 -9.234292149652767e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.250000000000001,2.165063509461096 l -0.15000000000000005,0.25980762113533135 c 7.05367538525111e-3,4.072441382450971e-3 1.4125086603096715e-2,8.114085867572741e-3 2.1214031710292108e-2 1.212481803529064e-2l 0.14772706803104008,-0.26110670878196973 c -6.329415274281599e-3,-3.581010864033838e-3 -1.2643175290215176e-2,-7.189622011463991e-3 -1.8941099741332124e-2 -1.0825730388652255e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0833318322276289,1.9147825310677788 l -0.14772706803104022,0.2611067087819696 c 6.3294152742813525e-3,3.5810108640342724e-3 1.2674425554857842e-2,7.134387355702075e-3 1.903484964282526e-2 1.0660027998740072e-2l 0.14544288607390107,-0.26238591214181856 c -5.597173197411331e-3,-3.1025637658734385e-3 -1.1180782244318642e-2,-6.2295350785411055e-3 -1.6750667685686116e-2 -9.380824638891117e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.100000000000001,1.9052558883257646 l -0.15000000000000005,0.25980762113533135 c 6.297924451117063e-3,3.636108377188367e-3 1.261168446705064e-2,7.24471952461852e-3 1.8941099741332238e-2 1.0825730388652357e-2l 0.14772706803104008,-0.26110670878196973 c -5.569885441367808e-3,-3.1512895603497777e-3 -1.1125994255389356e-2,-6.326867370088312e-3 -1.666816777237226e-2 -9.52664274201398e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8919959692931936,1.6776004264319608 l -0.14084146883576745,0.2648842778576781 c 1.130098963821938e-2,6.0088427777504495e-3 2.2654201492821262e-2,1.1918950787189637e-2 3.4058338701956604e-2 1.772964892477004e-2l 0.13619714992186427,-0.2673019572565103 c -9.849027589707795e-3,-5.018330209728529e-3 -1.965407419140942e-2,-1.0122514399698739e-2 -2.9414019788053414e-2 -1.531196952593783e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9211382784680414,1.6617774435648518 l -0.14544288607390127,0.2623859121418187 c 1.119439967638487e-2,6.2051570662006485e-3 2.2442736774761808e-2,1.2312505805218844e-2 3.3743726412981595e-2 1.8321348582968522e-2l 0.14084146883576745,-0.264884277857678 c -9.759945596644367e-3,-5.189455126238358e-3 -1.9474418545242626e-2,-1.0463983582663164e-2 -2.914230917484778e-2 -1.582298286710926e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.950000000000001,1.6454482671904331 l -0.15000000000000016,0.25980762113533157 c 1.108439979196635e-2,6.399581203697775e-3 2.222443578167308e-2,1.2702310314705858e-2 3.341883545805838e-2 1.890746738090574e-2l 0.1454428860739013,-0.26238591214181867 c -9.667890629605482e-3,-5.358999284445354e-3 -1.9288830802534022e-2,-1.0802265334861427e-2 -2.886172153195951e-2 -1.6329176374418664e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5733887192724811,1.4937286823955223 l -0.10751038486359024,0.2800741279491605 c 3.0960467672675702e-2,1.1884610047416862e-2 6.222678496451582e-2,2.295659369509524e-2 9.37668148236701e-2 3.320457061610831e-2l 9.270509831248427e-2,-0.285316954888546 c -2.6560025144550962e-2,-8.629875301905749e-3 -5.288955549557422e-2,-1.795365100521385e-2 -7.896152827256413e-2 -2.7961743676722772e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.650778628921281,1.4616727322281609 l -0.12202099292274021,0.2740636372927802 c 3.0296044996342104e-2,1.3488668283769668e-2 6.09400500352738e-2,2.6181830776324716e-2 9.190051770794956e-2 3.806644082374146e-2l 0.10751038486359013,-0.28007412794916053 c -2.607197277699011e-2,-1.0008092671508833e-2 -5.187745070451154e-2,-2.0697071612607816e-2 -7.738990964879948e-2 -3.2055950167361125e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7263847995832755,1.425610438701388 l -0.13619714992186419,0.2673019572565103 c 2.9548582966525797e-2,1.5055755017942499e-2 5.948628266477604e-2,2.9335305279273034e-2 8.978232766111822e-2 4.2823973563042586e-2l 0.12202099292274013,-0.27406363729278027 c -2.551245894428814e-2,-1.1358878554753305e-2 -5.0723153427025186e-2,-2.3383762985347434e-2 -7.560617066199417e-2 -3.606229352677259e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8000000000000007,1.3856406460551014 l -0.15000000000000016,0.25980762113533157 c 2.8720130324695066e-2,1.658157497412385e-2 5.7869467528334946e-2,3.2408373749522934e-2 8.741805049486082e-2 4.7464128767465315e-2l 0.1361971499218641,-0.2673019572565104 c -2.4883017234969152e-2,-1.2678530541425165e-2 -4.9429827511718524e-2,-2.6006361089129654e-2 -7.361520041672476e-2 -3.996979264628647e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.401722092687431,1.2363734711837002 l 9.27050983124841e-2,0.28531695488854625 c 0.10633122131561439,-3.454910812994348e-2 0.20874834347466265,-8.014814878190021e-2 0.30557280900008416 -0.13604978001714377l -0.14999999999999997,-0.25980762113533173 c -7.866987823940497e-2,4.542007537863539e-2 -0.16188378999363168,8.246929590835025e-2 -0.24827790731256827 0.11054044626392925Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.1358870022479487,1.2928784639787556 l 3.135853898029585e-2,0.29835656861048215 c 0.11119079250050565,-1.1686623214350274e-2 0.22085042845605585,-3.499549838704828e-2 0.3271816497716703 -6.954460651699149e-2l -9.270509831248416e-2,-0.2853169548885462 c -8.639411731893676e-2,2.807115035557887e-2 -0.1754925715328213,4.700961143339601e-2 -0.26583509043948195 5.6504992795055525e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.13588700224795042,1.2928784639787554 l -3.135853898029624e-2,0.2983565686104821 c 0.11119079250050566,1.1686623214350045e-2 0.22330028995598541,1.1686623214350128e-2 0.33449108245649106 1.249000902703301e-16l -3.135853898029596e-2,-0.2983565686104821 c -9.034251890666085e-2,9.49538136165938e-3 -0.18143148558923813,9.495381361659339e-3 -0.2717740044958989 -1.1102230246251565e-16Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4017220926874324,1.2363734711836993 l -9.270509831248441e-2,0.2853169548885461 c 0.10633122131561443,3.4549108129943246e-2 0.2159908572711646,5.7857983302641386e-2 0.3271816497716702 6.95446065169917e-2l 3.135853898029611e-2,-0.29835656861048204 c -9.034251890666081e-2,-9.495381361659623e-3 -0.17944097312054533,-2.843384243947685e-2 -0.2658350904394819 -5.650499279505572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6500000000000006,1.1258330249197699 l -0.15000000000000016,0.25980762113533157 c 9.682446552542145e-2,5.590163123524357e-2 0.19924158768446965,0.10150067188720041 0.305572809000084 0.1360497800171439l 9.270509831248429e-2,-0.2853169548885461 c -8.639411731893666e-2,-2.807115035557909e-2 -0.16960802907316333,-6.512037088529402e-2 -0.2482779073125681 -0.11054044626392939Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8283842540479265,1.7049959001562458 l -0.21940611048575104,0.20459950801874938 c 5.554796688564427e-3,5.956790159365215e-3 1.113555837956224e-2,1.1889314554955939e-2 1.6742125699272085e-2 1.779740376751512e-2l 0.21761231130368613,-0.2065063727081261 c -5.005863678312363e-3,-5.275079654070698e-3 -9.988686616703268e-3,-1.0571976435848132e-2 -1.4948326517207178e-2 -1.5890539078138394e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.595823616227033,1.5143800665262586 l -0.21761231130368622,0.20650637270812602 c 5.005863678312e-3,5.275079654071039e-3 1.0034720443871038e-2,1.0528291964995641e-2 1.5086426684091353e-2 1.5759486913108047e-2l 0.2158019401015952,-0.20839751113769908 c -4.445501491393878e-3,-4.603451554338917e-3 -8.87089544508583e-3,-9.226278387952569e-3 -1.3276055482000337e-2 -1.3868348483534992e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6089781435621753,1.5003963921374965 l -0.21940611048575104,0.20459950801874938 c 4.959639900503953e-3,5.31856264229037e-3 9.942462838894857e-3,1.0615459424067802e-2 1.4948326517207221e-2 1.58905390781385e-2l 0.21761231130368613,-0.2065063727081261 c -4.40516003691488e-3,-4.642070095582215e-3 -8.790044222698877e-3,-9.303339263546357e-3 -1.315452733514233e-2 -1.3983674388761774e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8578620636934855,1.6728265158971456 l -0.22294344764321813,0.20073918190765735 c 5.449990343200644e-3,6.052827480856884e-3 1.0926365230210948e-2,1.2081846045508247e-2 1.642896826835667e-2 1.808688351904545e-2l 0.2211832010430371,-0.20267706228469792 c -4.9130384269158245e-3,-5.361640601372502e-3 -9.80265886174645e-3,-1.074469289123979e-2 -1.4668721668175622e-2 -1.6149003142004875e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6220101409822734,1.4862984567544528 l -0.22118320104303707,0.20267706228469795 c 4.913038426915456e-3,5.361640601372839e-3 9.849448076879689e-3,1.0701818474805398e-2 1.4809087977384007e-2 1.602038111709543e-2l 0.21940611048575104,-0.20459950801874938 c -4.3644831124438005e-3,-4.680335125215228e-3 -8.708523604412327e-3,-9.379691653835882e-3 -1.3031997420097974e-2 -1.4097935383043991e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6349186160502676,1.4720873339894882 l -0.22294344764321813,0.20073918190765735 c 4.866062806429147e-3,5.404310250765076e-3 9.755683241259775e-3,1.0787362540632364e-2 1.4668721668175599e-2 1.6149003142004868e-2l 0.2211832010430371,-0.20267706228469792 c -4.3234738156859255e-3,-4.718243729207802e-3 -8.626339798336878e-3,-9.455329744291016e-3 -1.2908475067994557e-2 -1.4211122764964307e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3667456206434374,1.319850903872095 l -0.2158019401015954,0.2083975111376992 c 8.891045301160503e-3,9.20694693063761e-3 1.7862267602850812e-2,1.833612906883402e-2 2.6912642134627806e-2 2.738650360061047e-2l 0.21213203435596434,-0.21213203435596423 c -7.81623255017104e-3,-7.816232550170575e-3 -1.556410635617631e-2,-1.5700526214976564e-2 -2.3242736388996738e-2 -2.365198038234545e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3895720330764243,1.2957968841187473 l -0.2194061104857512,0.20459950801874957 c 8.729007772016404e-3,9.360714804273376e-3 1.7539537515981286e-2,1.8645075941660275e-2 2.6430582817142417e-2 2.7852022872297277e-2l 0.21580194010159542,-0.20839751113769917 c -7.678630032820976e-3,-7.951454167368322e-3 -1.5287723902608828e-2,-1.5969766058747913e-2 -2.2826412432986637e-2 -2.4054019753347672e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4119751684070492,1.2713481520818308 l -0.2229434476432183,0.2007391819076575 c 8.564311302545152e-3,9.511631313500482e-3 1.7211464716075073e-2,1.8948343343735793e-2 2.5940472488092114e-2 2.8309058148008572e-2l 0.2194061104857512,-0.20459950801874954 c -7.538688530378354e-3,-8.084253694599221e-3 -1.5006684660245104e-2,-1.623414135707517e-2 -2.2403135330625018e-2 -2.4448732036916526e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9151111077974459,1.6069690242163472 l -0.22981333293569337,0.19283628290596155 c 5.235429723629239e-3,6.239342181909664e-3 1.0498058837508283e-2,1.2455810758660452e-2 1.5787737053053252e-2 1.8649228202205395e-2l 0.22812178968000907,-0.19483441449905506 c -4.722926978165154e-3,-5.529837003165129e-3 -9.421702972700013e-3,-1.1080255375264048e-2 -1.4096193797368956e-2 -1.6651096609111876e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6728931243200686,1.4287857063264038 l -0.22812178968000918,0.19483441449905495 c 4.7229269781647815e-3,5.529837003165443e-3 9.469959980662575e-3,1.1039039996824967e-2 1.42409634431486e-2 1.6527451650810196e-2l 0.22641287406683133,-0.19681770869715223 c -4.198483046987702e-3,-4.829802255507e-3 -8.37587208918576e-3,-9.677900889927385e-3 -1.253204782997075e-2 -1.4544157452712897e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6852977748617526,1.4141327413103857 l -0.22981333293569337,0.19283628290596155 c 4.674490824668963e-3,5.570841233847914e-3 9.373266819203824e-3,1.1121259605946832e-2 1.4096193797368976e-2 1.665109660911196e-2l 0.22812178968000907,-0.19483441449905506 c -4.156175740785335e-3,-4.866256562785313e-3 -8.291098615976012e-3,-9.750624730232364e-3 -1.2404650541684686e-2 -1.4652965016018454e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9428649036424275,1.573300977624593 l -0.23314378843709116,0.18879611731495105 c 5.1257408066631635e-3,6.3297627472840255e-3 1.02790760604324e-2,1.2637130067985038e-2 1.5459858593902686e-2 1.8921921838193956e-2l 0.23148737501631592,-0.19082346608332898 c -4.625698690598469e-3,-5.611421223400822e-3 -9.22689088146386e-3,-1.124299918831244e-2 -1.3803445173127454e-2 -1.6894573069816038e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6975740834529844,1.3993720846110802 l -0.23148737501631592,0.19082346608332898 c 4.625698690598083e-3,5.61142122340114e-3 9.27585984718635e-3,1.1202632288091544e-2 1.3950350671854949e-2 1.677347352193825e-2l 0.22981333293569337,-0.1928362829059616 c -4.1135519257083685e-3,-4.9023402857850985e-3 -8.205693743506043e-3,-9.822606022712656e-3 -1.227630859123241e-2 -1.4760656699305624e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7097211152053364,1.384504860309642 l -0.23314378843709116,0.18879611731495105 c 4.57655429166354e-3,5.651573881503594e-3 9.17774648252893e-3,1.1283151846415212e-2 1.3803445173127399e-2 1.6894573069816034e-2l 0.23148737501631592,-0.19082346608332898 c -4.070614847726653e-3,-4.938050676592724e-3 -8.119663975688198e-3,-9.893839285714948e-3 -1.2147031752352155e-2 -1.4867224301438109e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4339482024232666,1.246512155081964 l -0.2264128740668316,0.1968177086971522 c 8.397006060886798e-3,9.659650487688253e-3 1.687814913728514e-2,1.924583889687208e-2 2.5442460439830936e-2 2.875747021037198e-2l 0.22294344764321836,-0.20073918190765744 c -7.396450670380459e-3,-8.214590679840822e-3 -1.4721074236360848e-2,-1.64935715786814e-2 -2.197303401621767e-2 -2.4835996999866744e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4554844419260582,1.2212964584044246 l -0.22981333293569345,0.1928362829059618 c 8.227143009838673e-3,9.80472723876234e-3 1.6539692310765686e-2,1.9537471981041766e-2 2.4936698371653136e-2 2.9197122468729447e-2l 0.2264128740668317,-0.19681770869715212 c -7.251959779857343e-3,-8.342425421184818e-3 -1.4430979630657946e-2,-1.6747977698607957e-2 -2.1536239502791377e-2 -2.5215696677539118e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.476577326768245,1.1957087429946907 l -0.23314378843709133,0.1887961173149512 c 8.054773891331624e-3,9.946817374938976e-3 1.6196197333744774e-2,1.982315376198228e-2 2.4423340343584107e-2 2.9627881000744063e-2l 0.22981333293569353,-0.1928362829059617 c -7.105259872133969e-3,-8.467718978930632e-3 -1.4136489208763509e-2,-1.699728222228621e-2 -2.1092884842186327e-2 -2.5587715409733564e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9965887751182327,1.5045375578801201 l -0.23959065301418778,0.1805445069456143 c 4.901712809730174e-3,6.504792601222863e-3 9.831784845891008e-3,1.2988166450867264e-2 1.4790075316961651e-2 1.9449936398682387e-2l 0.23800600208737047,-0.182628428702616 c -4.427045063455931e-3,-5.769437453406362e-3 -8.82889509574239e-3,-1.1558164104874577e-2 -1.3205424390144355e-2 -1.7366014641680694e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.745377348640718,1.3392751438191848 l -0.23800600208737047,0.182628428702616 c 4.427045063455535e-3,5.769437453406664e-3 8.879243015395208e-3,1.1519530787336377e-2 1.3356466711283144e-2 1.7250115792343906e-2l 0.2364032260820165,-0.1846984425976973 c -3.939956852381386e-3,-5.042914804406627e-3 -7.857891050088297e-3,-1.0102996938264774e-2 -1.1753690705929187e-2 -1.5180101897262599e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.756998122104045,1.3239930509345057 l -0.23959065301418778,0.1805445069456143 c 4.376529294401942e-3,5.807850536806128e-3 8.778379326688401e-3,1.1596577188274344e-2 1.3205424390144332e-2 1.7366014641680704e-2l 0.23800600208737047,-0.182628428702616 c -3.8957996558412196e-3,-5.077104958997598e-3 -7.769427684253304e-3,-1.0171184412289628e-2 -1.1620773463327017e-2 -1.5282092884678994e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.022542485937369,1.4694631307311825 l -0.24270509831248413,0.1763355756877418 c 4.787441970860499e-3,6.589348573997275e-3 9.603612657662035e-3,1.3157776595341614e-2 1.4448374521644422e-2 1.9705096484830632e-2l 0.2411570581851651,-0.17844683602540223 c -4.32568023569856e-3,-5.8458213299009115e-3 -8.625832634628504e-3,-1.1710489206101213e-2 -1.2900334394325391e-2 -1.7593836147170194e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7684850933578786,1.3086101308529505 l -0.2411570581851651,0.17844683602540226 c 4.325680235698158e-3,5.845821329901206e-3 8.67684713040899e-3,1.167274046496145e-2 1.305337642481133e-2 1.7480591001767277e-2l 0.23959065301418778,-0.18054450694561433 c -3.8513457790740604e-3,-5.1109084723891295e-3 -7.680372646419593e-3,-1.0238597311242145e-2 -1.1486971253833994e-2 -1.5382920081555201e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7798373876248847,1.2931275550434407 l -0.24270509831248413,0.1763355756877418 c 4.274501759696874e-3,5.883346941068996e-3 8.574654158626818e-3,1.1748014817269298e-2 1.2900334394325377e-2 1.7593836147170208e-2l 0.2411570581851651,-0.17844683602540223 c -3.8065986074147327e-3,-5.144322770312802e-3 -7.590732718473084e-3,-1.030523050136907e-2 -1.1352294267006374e-2 -1.5482575809509791e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4972204318527724,1.1697568031187504 l -0.23640322608201667,0.18469844259769747 c 7.879951210668933e-3,1.0085877614186221e-2 1.5847768838119922e-2,2.0102797218255693e-2 2.3902542729452227e-2 3.004961459319412e-2l 0.2331437884370914,-0.18879611731495116 c -6.956395633423351e-3,-8.590433187446829e-3 -1.3837692675312842e-2,-1.7241409209143188e-2 -2.0643105084526964e-2 -2.595193987594041e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5174074690898567,1.1434485439888915 l -0.23959065301418794,0.18054450694561447 c 7.702728220532672e-3,1.0221865597408094e-2 1.5494512958586197e-2,2.037631716775625e-2 2.337446416925582e-2 3.046219478194194e-2l 0.2364032260820167,-0.18469844259769744 c -6.805412409214672e-3,-8.71053066679673e-3 -1.3534681046624536e-2,-1.748028429573377e-2 -2.0187037237084565e-2 -2.6308259129858985e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5371322893124004,1.1167919793556988 l -0.2427050983124843,0.17633557568774194 c 7.523158904762431e-3,1.0354739901347559e-2 1.5136537300306566e-2,2.0643630293657695e-2 2.2839265520839935e-2 3.0865495891065266e-2l 0.23959065301418794,-0.18054450694561444 c -6.652356190460635e-3,-8.827974834124721e-3 -1.3227546622976025e-2,-1.7713834718392562e-2 -1.972482022254357e-2 -2.665656463319277e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.131370849898476,1.1313708498984758 l -0.2121320343559643,0.21213203435596423 c 2.3449888213912223e-2,2.344988821391223e-2 4.750970889203822e-2,4.628180551896785e-2 7.215473217260947e-2 6.847228415260846e-2l 0.20073918190765752,-0.2229434476432182 c -2.075370381521789e-2,-1.8686718849381563e-2 -4.1014605438902944e-2,-3.791359657995472e-2 -6.0761879724302664e-2 -5.766087086535451e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1890317207638308,1.0706089701741728 l -0.22294344764321833,0.20073918190765744 c 2.2190478633640695e-2,2.4645023280571172e-2 4.502239593869623e-2,4.8704843958697244e-2 6.847228415260856e-2 7.215473217260938e-2l 0.21213203435596428,-0.21213203435596417 c -1.974727428539984e-2,-1.9747274285399696e-2 -3.897415201597293e-2,-4.0008175909084814e-2 -5.766087086535451e-2 -6.0761879724302637e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2434335383311537,1.0069126256797398 l -0.23314378843709133,0.18879611731495122 c 2.0870246493875616e-2,2.577260805147263e-2 4.2411679727554656e-2,5.099438580656806e-2 6.460215836119546e-2 7.563940908713915e-2l 0.22294344764321833,-0.20073918190765738 c -1.8686718849381716e-2,-2.075370381521776e-2 -3.682687315142723e-2,-4.1993095608982324e-2 -5.440181756732246e-2 -6.369634449443295e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.294427190999916,0.9404564036679569 l -0.2427050983124843,0.17633557568774194 c 1.949281045914387e-2,2.6829551895137027e-2 3.968471605027956e-2,5.314415558751935e-2 6.055496254415528e-2 7.89167636389919e-2l 0.23314378843709133,-0.1887961173149512 c -1.7574944415895338e-2,-2.1703248885450572e-2 -3.4578654387378026e-2,-4.3862915152719895e-2 -5.0993652668762324e-2 -6.645622201178267e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1429182517552814,1.2875951872751346 l -0.2571501902106336,0.15451142247301605 c 4.194924739603169e-3,6.98152717412615e-3 8.420292220014941e-3,1.3944717277194322e-2 1.2675981774456344e-2 2.0889371456504834e-2l 0.2557920493062276,-0.1567495694147844 c -3.7997228164655386e-3,-6.200584088670101e-3 -7.572372352547479e-3,-1.2417718109266684e-2 -1.1317840870050333e-2 -1.865122451473647e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8758083615790033,1.1494968423750875 l -0.25579204930622756,0.15674956941478455 c 3.7997228164651157e-3,6.200584088670357e-3 7.626482742341652e-3,1.2384559219754256e-2 1.1480170494165776e-2 1.8551748793140043e-2l 0.25441442884692766,-0.15897577926996131 c -3.391245221605229e-3,-5.427126824579492e-3 -6.758793956376582e-3,-1.0869024939933324e-2 -1.0102550034865876e-2 -1.6325538937963263e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8857680615446477,1.1330837648021186 l -0.2571501902106336,0.15451142247301605 c 3.7454685175028297e-3,6.233506405469777e-3 7.518118053584769e-3,1.245064042606636e-2 1.1317840870050309e-2 1.8651224514736463e-2l 0.2557920493062276,-0.1567495694147844 c -3.343756078489674e-3,-5.456513998029689e-3 -6.663687670241782e-3,-1.0927591936154682e-2 -9.959699965644303e-3 -1.6413077572968116e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1650635094610977,1.2499999999999984 l -0.25980762113533157,0.14999999999999972 c 4.072441382450962e-3,7.053675385251116e-3 8.175640895150625e-3,1.4089547791354651e-2 1.2309481360156284e-2 2.110741628997148e-2l 0.2584887481324577,-0.15226150888821094 c -3.6909289866121956e-3,-6.26595401662217e-3 -7.354499980094038e-3,-1.2547982950643181e-2 -1.0990608357282411e-2 -1.884590740176026e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8955841529713577,1.116584398513548 l -0.2584887481324577,0.15226150888821097 c 3.690928986611765e-3,6.265954016622419e-3 7.4091808310305304e-3,1.2515773467905408e-2 1.1154649348533788e-2 1.8749279873374932e-2l 0.2571501902106337,-0.15451142247301594 c -3.2960122954028654e-3,-5.485485636813182e-3 -6.568073918491379e-3,-1.098532675394221e-2 -9.81609142670975e-3 -1.649936628856996e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.905255888325766,1.0999999999999988 l -0.25980762113533157,0.14999999999999972 c 3.6361083771883594e-3,6.297924451117068e-3 7.299679370670201e-3,1.2579953385138083e-2 1.0990608357282397e-2 1.8845907401760252e-2l 0.2584887481324577,-0.15226150888821094 c -3.2480175082187325e-3,-5.514039534627509e-3 -6.471959982482753e-3,-1.1042224996566001e-2 -9.671735354408517e-3 -1.6584398513549037e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.61129138269721,1.0068466020430888 l -0.2544144288469279,0.15897577926996143 c 6.782522725727475e-3,1.0854305311988229e-2 1.3659638601639755e-2,2.1649214914573386e-2 2.063056206420413e-2 3.2383495720008613e-2l 0.2516011703836273,-0.16339171050450813 c -6.020342990396505e-3,-9.270515241057691e-3 -1.1959670337775292e-2,-1.8593391716017604e-2 -1.7817303600903528e-2 -2.796756448546192e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.628617871334014,0.9785723423291023 l -0.25715019021063384,0.15451142247301614 c 6.592055966765274e-3,1.0971023491994714e-2 1.3279727274781541e-2,2.1884311198943796e-2 2.0062250000509752e-2 3.2738616510931566e-2l 0.2544144288469279,-0.15897577926996143 c -5.857633263128909e-3,-9.37417276944398e-3 -1.1633349392779324e-2,-1.8799284879990916e-2 -1.7326488636803805e-2 -2.8274259713986283e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6454482671904342,0.949999999999999 l -0.25980762113533173,0.14999999999999983 c 6.399581203696917e-3,1.1084399791966846e-2 1.2895770814351823e-2,2.2112741310124924e-2 1.948782678111784e-2 3.308376480211919e-2l 0.2571501902106338,-0.15451142247301616 c -5.6931392440251975e-3,-9.474974833995047e-3 -1.1303484816863527e-2,-1.8999451599677024e-2 -1.6830395856419905e-2 -2.8572342329102857e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.207368982147318,1.1736789069647262 l -0.264884277857678,0.14084146883576706 c 3.8237908403463755e-3,7.191504631388325e-3 7.678942388931616e-3,1.4366290571988134e-2 1.1565344551492565e-2 2.1524152926409194e-2l 0.2636451337985895,-0.1431476280778823 c -3.470001930857991e-3,-6.39094853073309e-3 -6.912101527809099e-3,-1.2797007406268636e-2 -1.032620049240407e-2 -1.9217993684293944e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9333976478563244,1.049749272571138 l -0.2636451337985895,0.14314762807788237 c 3.4700019308575502e-3,6.390948530733326e-3 6.967873163385223e-3,1.276672587885442e-2 1.049351380642409e-2 1.9127149966821362e-2l 0.2623859121418186,-0.14544288607390088 c -3.102563765874203e-3,-5.597173197410911e-3 -6.180690450498556e-3,-1.1207857263757476e-2 -9.234292149653212e-3 -1.6831891970802842e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9424847042896398,1.0328374381289591 l -0.264884277857678,0.14084146883576706 c 3.414098964594978e-3,6.42098627802529e-3 6.8561985615460865e-3,1.2827045153560835e-2 1.0326200492404077e-2 1.9217993684293926e-2l 0.2636451337985895,-0.1431476280778823 c -3.053601699155032e-3,-5.62403470704512e-3 -6.082649344472008e-3,-1.1261366517516401e-2 -9.087056433315588e-3 -1.691183444217867e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.22751631047092,1.1349762493488655 l -0.2673019572565103,0.1361971499218638 c 3.6976993967578462e-3,7.257143682277018e-3 7.427046506753535e-3,1.4498118539929451e-2 1.1187934828409423e-2 2.17227177873638e-2l 0.2661032499534664,-0.13852458397051004 c -3.3579360014784716e-3,-6.450535042352098e-3 -6.687710206831764e-3,-1.2915691165256059e-2 -9.989227525365518e-3 -1.9395283738717572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9514238329920885,1.0158469491170734 l -0.26610324995346646,0.13852458397050993 c 3.3579360014780297e-3,6.450535042352326e-3 6.744001833641633e-3,1.2886387599116885e-2 1.015810079823705e-2 1.9307373877141945e-2l 0.264884277857678,-0.14084146883576706 c -3.0044070888439666e-3,-5.650467924662053e-3 -5.9841450211479364e-3,-1.1314018174614868e-2 -8.939128702448562e-3 -1.6990489011884796e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.96021435321441,0.9987790994270018 l -0.2673019572565103,0.1361971499218638 c 3.3015173185337917e-3,6.479592573461623e-3 6.631291523887085e-3,1.2944748696365582e-2 9.989227525365556e-3 1.939528373871768e-2l 0.2661032499534664,-0.13852458397051004 c -2.954983681301055e-3,-5.676470837269847e-3 -5.8851849820119526e-3,-1.1365808225425333e-2 -8.790520222321685e-3 -1.706784969007144e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6617774435648527,0.9211382784680392 l -0.26238591214181883,0.14544288607390096 c 6.205157066199779e-3,1.1194399676385353e-2 1.2507886177207921e-2,2.2334435666092053e-2 1.890746738090559e-2 3.341883545805846e-2l 0.2598076211353317,-0.1499999999999999 c -5.526911039557077e-3,-9.572890729425538e-3 -1.09701770899732e-2,-1.9193830902354048e-2 -1.632917637441844e-2 -2.886172153195951e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.677600426431962,0.8919959692931915 l -0.2648842778576782,0.1408414688357671 c 6.008842777749572e-3,1.1300989638219848e-2 1.2116191516767827e-2,2.254932673659675e-2 1.8321348582968366e-2 3.374372641298168e-2l 0.26238591214181883,-0.14544288607390105 c -5.3589992844459205e-3,-9.667890629605167e-3 -1.0633527740870778e-2,-1.9382363578203398e-2 -1.582298286710898e-2 -2.9142309174847725e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6929123959578996,0.8625819495051379 l -0.26730195725651046,0.1361971499218639 c 5.810698137580296e-3,1.1404137209135395e-2 1.1720806147019543e-2,2.2757349063737248e-2 1.7729648924769883e-2 3.405833870195668e-2l 0.26488427785767815,-0.14084146883576718 c -5.18945512623893e-3,-9.75994559664406e-3 -1.029363931620919e-2,-1.956499219834566e-2 -1.531196952593758e-2 -2.9414019788053414e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.265769467591625,1.0565456543517482 l -0.27189233611099484,0.1267854785222097 c 3.4421761961846357e-3,7.381770674331223e-3 6.91654511051697e-3,1.4748486862912746e-2 1.0423007523010385e-2 2.2099938189267795e-2l 0.27077558530495804,-0.12915332904248839 c -3.130770011154835e-3,-6.563795827102723e-3 -6.232885113237277e-3,-1.3141220995479083e-2 -9.306256716973604e-3 -1.9732087668989096e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9856876255696938,0.947124412978249 l -0.27077558530495804,0.12915332904248839 c 3.130770011154383e-3,6.563795827102939e-3 6.290165128418884e-3,1.3113899829724883e-2 9.4780951267342e-3 1.9650124951955516e-2l 0.26963821388974996,-0.13151134403672307 c -2.8053783985174784e-3,-5.751878107562959e-3 -5.58564610171024e-3,-1.1515969629870268e-2 -8.34072371152611e-3 -1.729210995772082e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9938771314806303,0.9297601758295385 l -0.27189233611099484,0.1267854785222097 c 3.073371603736282e-3,6.590866673510021e-3 6.175486705818724e-3,1.3168291841886382e-2 9.30625671697356e-3 1.9732087668989103e-2l 0.27077558530495804,-0.12915332904248839 c -2.755077609816255e-3,-5.776140327850397e-3 -5.484938899648804e-3,-1.1564274476021595e-2 -8.189505910936756e-3 -1.736423714871041e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.2838636441065026,1.0168416076894995 l -0.27406363729278016,0.12202099292273988 c 3.3128222740421514e-3,7.440720652907671e-3 6.658095100129108e-3,1.4866950953338173e-2 1.003572294496171e-2 2.227847882522856e-2l 0.2729883812629628,-0.12440797279687162 c -3.015739147171966e-3,-6.617435599902131e-3 -6.002589884749606e-3,-1.324799836814365e-2 -8.96046691514435e-3 -1.9891498951096834e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0019147959283963,0.912325133843725 l -0.2729883812629628,0.12440797279687152 c 3.0157391471715123e-3,6.617435599902339e-3 6.060337995996545e-3,1.3221681037641007e-2 9.133709599733275e-3 1.9812547711150822e-2l 0.27189233611099484,-0.12678547852220973 c -2.704567011288324e-3,-5.7999626726886345e-3 -5.383813998254353e-3,-1.1611698657898663e-2 -8.03766444776527e-3 -1.743504198581261e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0098000068137227,0.8948206147667597 l -0.27406363729278016,0.12202099292273988 c 2.957877030394778e-3,6.643500582953279e-3 5.944727767972419e-3,1.3274063351194798e-2 8.960466915144384e-3 1.989149895109693e-2l 0.2729883812629628,-0.12440797279687162 c -2.65385044951133e-3,-5.823343327913876e-3 -5.282279098579654e-3,-1.1658238563966413e-2 -7.885210885327065e-3 -1.7504519076965194e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.707708687968418,0.8329051788992462 l -0.26963821388975023,0.1315113440367231 c 5.610783502468815e-3,1.1503810969382681e-2 1.1321850506176874e-2,2.295843928189754e-2 1.7132548643757947e-2 3.436257649103254e-2l 0.26730195725651046,-0.136197149921864 c -5.018330209729109e-3,-9.849027589707505e-3 -9.950615349295162e-3,-1.974166113233397e-2 -1.4796292010518186e-2 -2.9676770605891634e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7219847953696357,0.8029746973073282 l -0.27189233611099517,0.12678547852220973 c 5.409159768349602e-3,1.1599980557368775e-2 1.09194461199928e-2,2.3152536137049172e-2 1.65302296224624e-2 3.465634710643148e-2l 0.2696382138897502,-0.13151134403672318 c -4.845676661223745e-3,-9.935109473557446e-3 -9.604560328551963e-3,-1.9912316565099605e-2 -1.427610740121743e-2 -2.9930481591918023e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7357363695209422,0.7727996218440197 l -0.2740636372927804,0.12202099292273996 c 5.205888351765243e-3,1.169261667890556e-2 1.0513715564741526e-2,2.3339580505409803e-2 1.5922875333091918e-2 3.4939561062778214e-2l 0.27189233611099506,-0.1267854785222098 c -4.671547072666249e-3,-1.0018165026818175e-2 -9.25557966569122e-3,-2.0076906513344567e-2 -1.3751574151306567e-2 -3.017507546330836e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3418729087126786,0.8714224560240427 l -0.2516011703836273,0.16339171050450801 c 1.806194598587224e-2,2.781295780195614e-2 3.6848979324761416e-2,5.5148260932010224e-2 5.634178978390538e-2 8.197781282714718e-2l 0.24270509831248427,-0.17633557568774177 c -1.641499828138439e-2,-2.259330685906269e-2 -3.22356579351858e-2,-4.5612509494897716e-2 -4.7445717712762375e-2 -6.903394764391341e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.385640646055102,0.7999999999999994 l -0.2598076211353317,0.14999999999999988 c 1.6581574974123818e-2,2.8720130324695083e-2 3.391224210825527e-2,5.7001208726595066e-2 5.197418809412762e-2 8.481416652855113e-2l 0.2516011703836273,-0.16339171050450796 c -1.521005977757672e-2,-2.3421438149015626e-2 -2.9804305785266355e-2,-4.7237083119036676e-2 -4.376773734242323e-2 -7.142245602404307e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4256104387013888,0.7263847995832743 l -0.26730195725651046,0.13619714992186394 c 1.5055755017942471e-2,2.9548582966525818e-2 3.088255379334144e-2,5.869792017016576e-2 4.7464128767465384e-2 8.741805049486077e-2l 0.2598076211353317,-0.14999999999999986 c -1.3963431557157e-2,-2.418537290500632e-2 -2.7291262104861398e-2,-4.8732183181755755e-2 -3.996979264628661e-2 -7.361520041672487e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4616727322281617,0.6507786289212798 l -0.2740636372927804,0.12202099292273996 c 1.3488668283769642e-2,3.0296044996342125e-2 2.7768218545100063e-2,6.023374469459243e-2 4.2823973563042655e-2 8.978232766111818e-2l 0.26730195725651046,-0.1361971499218639 c -1.267853054142534e-2,-2.488301723496905e-2 -2.4703414972019378e-2,-5.009371171770616e-2 -3.606229352677273e-2 -7.560617066199424e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.3637964389982917,0.8139203861428919 l -0.28365557267979485,9.767044633714697e-2 c 2.6517144500390268e-3,7.701137950293501e-3 5.337018885408061e-3,1.53906689402418e-2 8.055836619987775e-3 2.3068373374519762e-2l 0.28279244732765335,-0.10014205777013123 c -2.427515834446173e-3,-6.855093244891038e-3 -4.825109080311383e-3,-1.3720745914487732e-2 -7.1927112678462635e-3 -2.0596761941535507e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0738112804027926,0.7343750903142963 l -0.2827924473276533,0.10014205777013124 c 2.427515834445703e-3,6.8550932448912e-3 4.884931149047488e-3,1.369956180890107e-2 7.372175765675214e-3 2.0533210229744362e-2l 0.28190778623577234,-0.10260604299770056 c -2.1887752626323993e-3,-6.013610610342098e-3 -4.35130073948197e-3,-1.2036742946670783e-2 -6.48751467379427e-3 -1.8069225002175046e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.080140866318497,0.7162499398057449 l -0.28365557267979485,9.767044633714697e-2 c 2.367602187534845e-3,6.87601602704777e-3 4.765195433400055e-3,1.3741668696644466e-2 7.192711267846228e-3 2.0596761941535504e-2l 0.28279244732765335,-0.10014205777013123 c -2.1362139343126326e-3,-6.032482055504113e-3 -4.246095990674017e-3,-1.2074256404749205e-2 -6.329585915704705e-3 -1.812515050855125e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.3776412907378837,0.7725424859373693 l -0.2853169548885459,9.270509831248426e-2 c 2.5169071915463097e-3,7.746243828020072e-3 5.06760182189461e-3,1.5481468689567424e-2 7.652011049072107e-3 2.3205453684405023e-2l 0.2844970965618596,-9.519139692152764e-2 c -2.3075082385513365e-3,-6.896415173962144e-3 -4.584914158505177e-3,-1.380286594320085e-2 -6.832152722385798e-3 -2.0719155075361637e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0863120414536382,0.6980702440912034 l -0.2844970965618596,9.519139692152767e-2 c 2.307508238550864e-3,6.8964151739623015e-3 4.645096829671167e-3,1.3782729103113582e-2 7.012699017206485e-3 2.065874513016119e-2l 0.2836555726797949,-9.7670446337147e-2 c -2.08348992503108e-3,-6.050894103801896e-3 -4.140567885216947e-3,-1.211085036145502e-2 -6.17117513514176e-3 -1.8179695714541866e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0923243358493377,0.6798373876248851 l -0.2853169548885459,9.270509831248426e-2 c 2.247238563880634e-3,6.916289132160779e-3 4.524644483834474e-3,1.3822739901399487e-2 6.83215272238581e-3 2.071915507536163e-2l 0.2844970965618596,-9.519139692152764e-2 c -2.0306072499251763e-3,-6.068845353086687e-3 -4.034724459484555e-3,-1.214652203001675e-2 -6.012294395699502e-3 -1.8232856466318254e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.785415979493226,0.649838272318771 l -0.28190778623577256,0.1026060429977007 c 4.377571361025187e-3,1.2027278466469362e-2 8.860017847318812e-3,2.4016126184086925e-2 1.3446827435154496e-2 3.5965173683189286e-2l 0.28007412794916053,-0.1075103848635901 c -3.961335553130818e-3,-1.0319631931042945e-2 -7.83253933674804e-3,-2.0673636778076297e-2 -1.161316914854249e-2 -3.1060831817299878e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.796485293638702,0.6185794934685981 l -0.283655572679795,9.76704463371471e-2 c 4.16699968357245e-3,1.2101845808304312e-2 8.439529228472435e-3,2.4167097044257367e-2 1.281710058949844e-2 3.619437551072644e-2l 0.28190778623577256,-0.10260604299770064 c -3.780629811795187e-3,-1.0387195039223286e-2 -7.4705416914815385e-3,-2.0807184743000924e-2 -1.1069314145475961e-2 -3.1258778850172905e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8070073809607918,0.5871322893124007 l -0.2853169548885461,9.270509831248433e-2 c 3.955158697649464e-3,1.2172726810672838e-2 8.01646984726751e-3,2.4310706372556196e-2 1.2183469530840782e-2 3.641255218086023e-2l 0.2836555726797951,-9.767044633714704e-2 c -3.5987724539950994e-3,-1.0451594107171664e-2 -7.106268446847049e-3,-2.0934394637889108e-2 -1.0522087322089757e-2 -3.144720415619752e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4031542398457977,0.6890933895424965 l -0.2883785087814955,8.269120674509953e-2 c 2.2450339487573726e-3,7.829363819809669e-3 4.524219310305466e-3,1.564889455021045e-2 6.837490996353016e-3 2.3458368883387332e-2l 0.2876459204604577,-8.520460341117678e-2 c -2.0654211482567415e-3,-6.972744940336503e-3 -4.1004080782103955e-3,-1.395446880676577e-2 -6.104902675315216e-3 -2.094497221731008e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.109403416710025,0.6248337583486292 l -0.2876459204604578,8.520460341117665e-2 c 2.0654211482562753e-3,6.97274494033664e-3 4.161256853303427e-3,1.3936444578431304e-2 6.2874472628946035e-3 2.0890900047036812e-2l 0.28689142678891044,-8.77115114168211e-2 c -1.8710475604402348e-3,-6.119920812372844e-3 -3.7153829808817293e-3,-1.224797649389615e-2 -5.532953591347256e-3 -1.8383992041392364e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.114775731064302,0.606402182797397 l -0.2883785087814955,8.269120674509953e-2 c 2.004494597104797e-3,6.990503410544348e-3 4.039481527058452e-3,1.3972227276973616e-2 6.104902675315193e-3 2.094497221731012e-2l 0.2876459204604577,-8.520460341117678e-2 c -1.8175706104659325e-3,-6.136015547496123e-3 -3.6083591088251488e-3,-1.227993254995388e-2 -5.37231435427743e-3 -1.843157555123287e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.414814565722671,0.6470476127563008 l -0.28977774788672034,7.764571353075606e-2 c 2.1080507796838945e-3,7.867352614715493e-3 4.250419381806328e-3,1.572546966198756e-2 6.427044625247038e-3 2.3574126732060968e-2l 0.2890891359625868,-8.017151282347686e-2 c -1.9434153959292048e-3,-7.007729526851258e-3 -3.8562445049670924e-3,-1.4023905461915604e-2 -5.738432701113461e-3 -2.1048327439340167e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.119986997058971,0.5879244273721642 l -0.28908913596258673,8.017151282347688e-2 c 1.9434153959287253e-3,7.007729526851387e-3 3.917398578655552e-3,1.400694593631255e-2 5.921893175760509e-3 2.099744934685565e-2l 0.28837850878149557,-8.269120674509954e-2 c -1.7639552454523613e-3,-6.151643001277926e-3 -3.5010604462519697e-3,-1.2310953441603748e-2 -5.211265994669367e-3 -1.8477755425232986e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1250368178359507,0.5694018992255448 l -0.28977774788672034,7.764571353075606e-2 c 1.8821881961463343e-3,7.024421977424547e-3 3.795017305184222e-3,1.4040597912488894e-2 5.738432701113427e-3 2.1048327439340153e-2l 0.2890891359625868,-8.017151282347686e-2 c -1.7102055484177004e-3,-6.166801983629107e-3 -3.393495164371042e-3,-1.2341036806485732e-2 -5.049820776979852e-3 -1.8522528146619352e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8169790363297678,0.5555062389731996 l -0.2868914267889107,8.7711511416821e-2 c 3.7421129320726857e-3,1.2239899882534985e-2 7.590968571689808e-3,2.444691042419085e-2 1.1546127269340095e-2 3.6619637234863424e-2l 0.28531695488854614,-9.270509831248416e-2 c -3.415818875243429e-3,-1.0512809518308129e-2 -6.7398305640036715e-3,-2.105522771337456e-2 -9.971655368975485e-3 -3.162605033920027e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8263972222828062,0.523710976052298 l -0.28837850878149573,8.26912067450997e-2 c 3.5279272826461384e-3,1.2303344562322335e-2 7.1631550135498115e-3,2.4575667710087755e-2 1.0905267945623326e-2 3.681556759262248e-2l 0.2868914267889107,-8.77115114168209e-2 c -3.231824804972581e-3,-1.0570822625825446e-2 -6.371339663480299e-3,-2.1169647162531946e-2 -9.418185953038283e-3 -3.179526292090126e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8352590699492302,0.4917561856947887 l -0.28977774788672056,7.764571353075611e-2 c 3.3126669923934982e-3,1.2363041524170828e-2 6.733159489001647e-3,2.4696939009530326e-2 1.0261086771648619e-2 3.700028357185242e-2l 0.28837850878149573,-8.26912067450996e-2 c -3.0468462895587487e-3,-1.062561575836908e-2 -6.000907991174877e-3,-2.1277618132088647e-2 -8.861847666423783e-3 -3.1954790357508936e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.435925161963088,0.5623776358596624 l -0.2923110194355704,6.748531630315946e-2 c 1.8321999654718642e-3,7.936129947305644e-3 3.699019164547612e-3,1.586422762795704e-2 5.60040428516438e-3 2.3784066633713012e-2l 0.2917109761193028,-7.003360915677154e-2 c -1.6976652862649708e-3,-7.071284826567832e-3 -3.3644681425826035e-3,-1.414994347000658e-2 -5.000360968896778e-3 -2.123577378010094e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1392138248748886,0.5135798004829918 l -0.29171097611930286,7.003360915677156e-2 c 1.6976652862644862e-3,7.071284826567948e-3 3.426176841769559e-3,1.413512852208133e-2 5.1854853042005225e-3 2.1191329359405646e-2l 0.2910887178827988,-7.257656867990023e-2 c -1.5481914469392484e-3,-6.209456736845399e-3 -3.0692816157837127e-3,-1.2425639188897174e-2 -4.563227067696463e-3 -1.864836983627699e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1436141425275177,0.494892319556503 l -0.2923110194355704,6.748531630315946e-2 c 1.6358928263141646e-3,7.085830310094325e-3 3.302695682631797e-3,1.4164488953533071e-2 5.000360968896767e-3 2.1235773780100903e-2l 0.2917109761193028,-7.003360915677154e-2 c -1.4939454519131744e-3,-6.222730647379693e-3 -2.9607319654726912e-3,-1.245195025360579e-2 -4.40031765262916e-3 -1.8687480926488823e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4453690018345142,0.5197792270443977 l -0.2934442802201415,6.237350724532768e-2 c 1.6934163471631855e-3,7.966897534746952e-3 3.421586837635558e-3,1.592636821512818e-2 5.184462118842582e-3 2.387818473696178e-2l 0.29288880213597984,-6.493188418143071e-2 c -1.5739957867919865e-3,-7.099836180208574e-3 -3.117005153285176e-3,-1.4206506430548955e-2 -4.6289840346809275e-3 -2.131980780085875e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.147851215663854,0.4761671506638257 l -0.29288880213597984,6.493188418143074e-2 c 1.5739957867915001e-3,7.099836180208681e-3 3.1789630104308918e-3,1.4192770704310959e-2 4.81485583674554e-3 2.1278601014405173e-2l 0.2923110194355704,-6.748531630315933e-2 c -1.43958568715689e-3,-6.235530672882909e-3 -2.851956843959555e-3,-1.2477313054092913e-2 -4.237073136336089e-3 -1.8725168892676572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.151924721614373,0.45740571979906997 l -0.2934442802201415,6.237350724532768e-2 c 1.5119788813957014e-3,7.11330137030978e-3 3.054988247888891e-3,1.4219971620650161e-2 4.628984034680878e-3 2.1319807800858733e-2l 0.29288880213597984,-6.493188418143071e-2 c -1.3851162923769482e-3,-6.247855838583545e-3 -2.7429645348909554e-3,-1.250172565888308e-2 -4.073505950519196e-3 -1.8761430864755707e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8435618799243936,0.459651601639368 l -0.291088717882799,7.257656867990021e-2 c 3.096397631684452e-3,1.2418972583807584e-2 6.301112978847557e-3,2.4810687382105973e-2 9.613779971241895e-3 3.717372890627658e-2l 0.2897777478867206,-7.76457135307562e-2 c -2.860939675249657e-3,-1.0677172225420063e-2 -5.628648384163247e-3,-2.13791077330414e-2 -8.302809975163528e-3 -3.2104584055420604e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8513031230919472,0.4274070032533429 l -0.29231101943557064,6.748531630315942e-2 c 2.8791850782613174e-3,1.2471120704090026e-2 5.867147088639859e-3,2.4916878178958504e-2 8.963544720325154e-3 3.7335850762765875e-2l 0.29108871788279905,-7.25765686799003e-2 c -2.6741615910009383e-3,-1.0725476322379093e-2 -5.254674236327861e-3,-2.14740850506746e-2 -7.741243167553591e-3 -3.224459838602499e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8584804413942309,0.39503221255374227 l -0.29344428022014174,6.237350724532773e-2 c 2.6610954971720523e-3,1.2519470000195541e-2 5.431394008592631e-3,2.5015479053342508e-2 8.310579086854796e-3 3.7486599757432335e-2l 0.29231101943557064,-6.74853163031595e-2 c -2.4865689312264165e-3,-1.0770513335350305e-2 -4.879099463816916e-3,-2.156252115397723e-2 -7.177318302283686e-3 -3.237479069960057e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.493728682395523,0.5733887192724799 l -0.28007412794916053,0.10751038486358999 c 1.1884610047416838e-2,3.096046767267572e-2 2.4577772539971766e-2,6.160447271160745e-2 3.806644082374153e-2 9.190051770794952e-2l 0.27406363729278027,-0.12202099292273993 c -1.1358878554753489e-2,-2.5512458944288045e-2 -2.2047857495852377e-2,-5.1317936871809515e-2 -3.205595016736126e-2 -7.738990964879958e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.521690426072246,0.4944271909999154 l -0.2853169548885461,9.270509831248415e-2 c 1.0247976921013178e-2,3.154002985915423e-2 2.1319960568691433e-2,6.280634715099438e-2 3.3204570616108396e-2 9.376681482367005e-2l 0.2800741279491606,-0.10751038486358995 c -1.0008092671509023e-2,-2.607197277699003e-2 -1.9331868374817027e-2,-5.2401503128013324e-2 -2.7961743676722883e-2 -7.896152827256424e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5454813220625097,0.4141104721640328 l -0.2897777478867205,7.764571353075615e-2 c 8.583254802197165e-3,3.203314301610941e-2 1.8003712067424606e-2,6.383607375845611e-2 2.8251688988437915e-2 9.53761036176103e-2l 0.28531695488854614,-9.270509831248411e-2 c -8.629875301905943e-3,-2.6560025144550897e-2 -1.6562891946307997e-2,-5.3341440506527074e-2 -2.3790895990263572e-2 -8.031671883588234e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5650361611740893,0.3326587053084145 l -0.29344428022014174,6.237350724532773e-2 c 6.8950065785830525e-3,3.24384555546539e-2 1.4638116642803648e-2,6.469083012493698e-2 2.3221371445000943e-2 9.672397314104636e-2l 0.28977774788672056,-7.764571353075611e-2 c -7.2280040439556175e-3,-2.6975278329355257e-2 -1.3748517782246644e-2,-5.413517270433049e-2 -1.955483911157979e-2 -8.145176685561797e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4813653791033055,0.30467335851286714 l -0.29776384549239643,3.656080302154404e-2 c 9.92611514670496e-4,8.084172043873145e-3 2.020492215650848e-3,1.6163974517977325e-2 3.083612749032771e-3 2.4239176681731395e-2l 0.29743345841214297,-3.915785766601524e-2 c -9.492147619481457e-4,-7.210001931923277e-3 -1.86696538782346e-3,-1.4424111283802008e-2 -2.7532256687793355e-3 -2.1642122037260195e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1811786950223833,0.28715762288411284 l -0.2974334584121429,3.9157857666015365e-2 c 9.492147619476542e-4,7.210001931923336e-3 1.9298846240396036e-3,1.4415827809207858e-2 2.9419815806004464e-3 2.1617271850034526e-2l 0.2970804206224709,-4.175193028801949e-2 c -8.906453217735418e-4,-6.337270755927469e-3 -1.7536348004144574e-3,-1.2678397527937849e-2 -2.588943790928444e-3 -1.9023199228030405e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1836015336109087,0.2681125554913231 l -0.29776384549239643,3.656080302154404e-2 c 8.862602809557999e-4,7.218010753458166e-3 1.804010906831114e-3,1.4432120105336897e-2 2.75322566877926e-3 2.1642122037260174e-2l 0.29743345841214297,-3.915785766601524e-2 c -8.353089905143683e-4,-6.344801700092484e-3 -1.642929541284645e-3,-1.2693217929745768e-2 -2.422838588525822e-3 -1.9045067392788974e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4863047384206833,0.26132115816913265 l -0.2983565686104818,3.13585389802959e-2 c 8.513720789103922e-4,8.100264244902655e-3 1.7380842319702995e-3,1.6196775117717176e-2 2.6601111367205834e-3 2.4289301400708983e-2l 0.2980715567029761,-3.396096413037184e-2 c -8.232383078127535e-4,-7.2254698955284e-3 -1.614945587330528e-3,-1.4454497460541366e-2 -2.375099229214861e-3 -2.1686876250633043e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1858580824884926,0.24904707028939382 l -0.2980715567029761,3.396096413037186e-2 c 8.232383078122581e-4,7.225469895528456e-3 1.6779998072075644e-3,1.4447313339643691e-2 2.56426008816386e-3 2.1665324093101797e-2l 0.2977638454923965,-3.656080302154406e-2 c -7.799090472415404e-4,-6.351849463043134e-3 -1.53209916670941e-3,-1.2707071693864543e-2 -2.2565488775842524e-3 -1.9065485201929598e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1879481698102015,0.22996261918883673 l -0.2983565686104818,3.13585389802959e-2 c 7.601536418842788e-4,7.232378790091656e-3 1.5518609214020531e-3,1.4461406355104622e-2 2.3750992292148067e-3 2.1686876250633022e-2l 0.2980715567029761,-3.396096413037184e-2 c -7.244497108752231e-4,-6.358413508064992e-3 -1.4211521168508649e-3,-1.2719957765276403e-2 -2.0900873217090665e-3 -1.908445110055708e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8815093306089838,0.2644288918241242 l -0.29708042062247114,4.1751930288019615e-2 c 1.781299121928131e-3,1.2674601838680521e-2 3.67317179798741e-3,2.5333417497196538e-2 5.675401922151607e-3 3.797500097636381e-2l 0.2963065021785414,-4.693033951206919e-2 c -1.7291987435963524e-3,-1.0917731186553559e-2 -3.363088782011184e-3,-2.185034470981739e-2 -4.901483478221835e-3 -3.2796591752314246e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8858376881185122,0.23155175246977974 l -0.29776384549239665,3.656080302154417e-2 c 1.5598255187245498e-3,1.2703759391691941e-2 3.2304832575247014e-3,2.5393664782138996e-2 5.011782379453692e-3 3.806826662081939e-2l 0.29708042062247114,-4.175193028801951e-2 c -1.5383946962114006e-3,-1.0946247042496712e-2 -2.9812354706297128e-3,-2.1905710788791895e-2 -4.328357509528202e-3 -3.287713935434406e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8895916011997196,0.1986040802085408 l -0.29835656861048204,3.135853898029592e-2 c 1.337876777557596e-3,1.2729047256528575e-2 2.7868106805673566e-3,2.544617691079486e-2 4.346636199292767e-3 3.81499363024867e-2l 0.29776384549239665,-3.656080302154407e-2 c -1.3471220388992183e-3,-1.0971428565552045e-2 -2.5984740460440114e-3,-2.1954404176054744e-2 -3.7539130812073718e-3 -3.294767226123855e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4939101256495606,0.1743911843603121 l -0.2992692150779471,2.0926942123237438e-2 c 5.681583007388566e-4,8.12504223984701e-3 1.1717661382057262e-3,1.6247566744859998e-2 1.810806274749794e-3 2.43673415544149e-2l 0.29907520011993827,-2.3537728718353298e-2 c -5.705715504857748e-4,-7.2497989371025934e-3 -1.1095071196526227e-3,-1.4502052959435617e-2 -1.6167913167409176e-3 -2.1756554959299044e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.193218134212882,0.17261001060125777 l -0.29907520011993827,2.3537728718353322e-2 c 5.705715504852778e-4,7.249798937102629e-3 1.172773650806157e-3,1.449707377544896e-2 1.8065891034563175e-3 2.1741617549532976e-2l 0.29885840942752356,-2.6146722824297256e-2 c -5.577575983321412e-4,-6.375198521193937e-3 -1.0876954466145148e-3,-1.2752800378938708e-2 -1.5897984110416208e-3 -1.913262344358904e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.194640910571614,0.15346424223707464 l -0.2992692150779471,2.0926942123237438e-2 c 5.072841970882649e-4,7.254501999863402e-3 1.0462197662551129e-3,1.4506756022196426e-2 1.6167913167408877e-3 2.175655495929902e-2l 0.29907520011993827,-2.3537728718353298e-2 c -5.021029644274818e-4,-6.379823064650283e-3 -9.763662652943081e-4,-1.2761806604303344e-2 -1.422776358732003e-3 -1.914576836418316e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.4965738368864345,0.1308398906073589 l -0.29958886042637195,1.570078687288306e-2 c 4.262702279878128e-4,8.133720486144566e-3 8.880285340991159e-4,1.6265542300641308e-2 1.3852617315795606e-3 2.4395233217356403e-2l 0.2994404395265599,-1.831456186045694e-2 c -4.439582120361113e-4,-7.258652604209908e-3 -8.562424139212034e-4,-1.4519207795724857e-2 -1.236840831767505e-3 -2.1781458229782526e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1958965565281074,0.13430678697668447 l -0.29944043952655985,1.831456186045696e-2 c 4.4395821203561394e-4,7.258652604209938e-3 9.195862080182658e-4,1.451533352330761e-2 1.4268704051070289e-3 2.176983552317098e-2l 0.2992692150779471,-2.092694212323746e-2 c -4.464100934381114e-4,-6.383961759879763e-3 -8.64962729902845e-4,-1.2769840968685716e-2 -1.2556459564943e-3 -1.9157455260390484e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1969849764600626,0.11513910373447585 l -0.29958886042637195,1.570078687288306e-2 c 3.8059841784626145e-4,7.262250434057648e-3 7.928826197313535e-4,1.4522805625572597e-2 1.236840831767465e-3 2.1781458229782506e-2l 0.2994404395265599,-1.831456186045694e-2 c -3.90683226591778e-4,-6.387614291704719e-3 -7.53493324250659e-4,-1.2776902860237875e-2 -1.0884199319554089e-3 -1.916768324220863e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8927699263743167,0.16559591122054979 l -0.2988584094275237,2.6146722824297336e-2 c 1.1155205061638975e-3,1.275045773026182e-2 2.342289214080275e-3,2.5490937887461047e-2 3.6801659916387364e-3 3.821998514398953e-2l 0.29835656861048204,-3.135853898029587e-2 c -1.1554390351641254e-3,-1.0993268085183689e-2 -2.2149211010919065e-3,-2.199641003912848e-2 -3.1783251745970964e-3 -3.300816898799099e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8953716954936664,0.13253730011383746 l -0.2992692150779473,2.0926942123237497e-2 c 8.92824436417732e-4,1.2767984291053967e-2 1.8970542636083205e-3,2.5527934077510448e-2 3.0125747697730848e-3 3.827839180777219e-2l 0.29885840942752373,-2.6146722824297294e-2 c -9.634040735059328e-4,-1.1011758948862412e-2 -1.8306934697159868e-3,-2.2031715582620282e-2 -2.6017691193495063e-3 -3.305861110671239e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8973961160336905,9.943831686159278e-2 l -0.29958886042637217,1.5700786872883073e-2 c 6.698564036992491e-4,1.278162160014482e-2 1.4512414520304934e-3,2.5557154211545193e-2 2.3440658884490936e-3 3.8325138502599096e-2l 0.29926921507794735,-2.0926942123237452e-2 c -7.710756496342455e-4,-1.1026895524092008e-2 -1.4459081913748657e-3,-2.2060310052119603e-2 -2.0244205400242743e-3 -3.309898325224472e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.499619237890978,4.363101609320798e-2 l -0.2999543085469172,5.235721931184954e-3 c 1.4214780439709144e-4,8.143642259806214e-3 3.198283312242484e-4,1.6286625520649523e-2 5.330365063353282e-4 2.4428717237650895e-2l 0.299897197492667,-7.853084492361816e-3 c -1.9036444206346417e-4,-7.269724747322654e-3 -3.4900776958771146e-4,-1.4540245515932753e-2 -4.7592545208519077e-4 -2.1811354676474035e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1992461149462263,5.758928627732016e-2 l -0.29989719749266697,7.853084492361835e-3 c 1.903644420629661e-4,7.269724747322668e-3 4.1244818651435235e-4,1.4538584270150798e-2 6.662448911540904e-4 2.180637098656946e-2l 0.2998172481057286,-1.0469849010750152e-2 c -2.233411000829695e-4,-6.395652310448425e-3 -4.187747952001894e-4,-1.279224869053718e-2 -5.862955042156837e-4 -1.9189606468181145e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.199664929344061,3.839529416202302e-2 l -0.2999543085469172,5.235721931184954e-3 c 1.2691768249740307e-4,7.271109160541263e-3 2.855610100216504e-4,1.454162992915136e-2 4.7592545208511455e-4 2.1811354676474014e-2l 0.299897197492667,-7.853084492361816e-3 c -1.675207090158485e-4,-6.3973577776439364e-3 -3.071268372371861e-4,-1.2795416054020825e-2 -4.1881439783497676e-4 -1.9193992115297154e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.5,-3.061616997868383e-16 l -0.2999999999999998,-3.6739403974420576e-17 c -9.974604607467597e-19,8.144882764901934e-3 3.553881174207318e-5,1.6289726762723368e-2 1.0661542032064074e-4 2.443429939544693e-2l 0.29998857691925124,-2.6179606495121124e-3 c -6.346125765943533e-5,-7.271939850646036e-3 -9.519233957200157e-5,-1.4544121991558032e-2 -9.519233957205886e-5 -2.1816338745934777e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1999162307411773,1.919837809642232e-2 l -0.29998857691925124,2.617960649512133e-3 c 6.346125765893707e-5,7.271939850646039e-3 1.5865208695244282e-4,1.454356818673261e-2 2.855697694503451e-4 2.1814677347273867e-2l 0.29995430854691724,-5.235721931184975e-3 c -1.11687560598154e-4,-6.398576061276306e-3 -1.9545549037643906e-4,-1.2797608997032488e-2 -2.513013971163214e-4 -1.9196916065601026e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.2,-2.6942229581241775e-16 l -0.2999999999999998,-3.6739403974420576e-17 c -8.905896970953212e-19,7.2722167543767275e-3 3.1731081912565345e-5,1.4544398895288723e-2 9.519233957200066e-5 2.181633874593476e-2l 0.29998857691925124,-2.6179606495121124e-3 c -5.5845906740303086e-5,-6.399307068568512e-3 -8.376925882336139e-5,-1.2798827352571068e-2 -8.376925882341846e-5 -1.9198378096422608e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.898842571336282,6.630904373475137e-2 l -0.2998172481057288,1.0469849010750218e-2 c 4.466843262311541e-4,1.2791365503477922e-2 1.004986578247885e-3,2.5578589388829388e-2 1.6748429819480027e-3 3.836021098897416e-2l 0.2995888604263722,-1.5700786872883017e-2 c -5.785123486501015e-4,-1.1038673200125033e-2 -1.0606824753918234e-3,-2.2082184737474024e-2 -1.4464553025914095e-3 -3.312927312684136e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8997106207971435,3.315957223083832e-2 l -0.2999543085469174,5.235721931184999e-3 c 2.2337618439016152e-4,1.2797213032965922e-2 5.5842557581802e-4,2.5592233080000384e-2 1.0051099020500437e-3 3.838359858347828e-2l 0.29981724810572874,-1.0469849010750178e-2 c -3.857728272003842e-4,-1.104708838936727e-2 -6.751336652517164e-4,-2.2097332975442488e-2 -8.680494608613865e-4 -3.314947150391309e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9000000000000001,-2.3268289183799714e-16 l -0.30000000000000004,-3.67394039744206e-17 c -4.900655761624672e-16,1.2799162407394694e-2 1.1169447154817067e-4,2.5598081129057686e-2 3.3507065593920223e-4 3.839529416202359e-2l 0.2999543085469174,-5.235721931184959e-3 c -1.9291579561043636e-4,-1.1052138528470555e-2 -2.89379202857007e-4,-2.2105750151724956e-2 -2.893792028565434e-4 -3.3159572230838597e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.58030134495222,0.25029514406436915 l -0.2963065021785413,4.6930339512069215e-2 c 5.187859621203078e-3,3.275485654129246e-2 1.1232399157947784e-2,6.536827342264986e-2 1.812740573653097e-2 9.780672897730372e-2l 0.29344428022014163,-6.2373507245327704e-2 c -5.806321329333211e-3,-2.731659415128746e-2 -1.089645988659191e-2,-5.478052415664106e-2 -1.5265183778131297e-2 -8.236356124404523e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5912350325892373,0.16724554122824534 l -0.298356568610482,3.1358538980296e-2 c 3.4664931012050857e-3,3.2981478742913524e-2 7.7958944477544735e-3,6.586654682660424e-2 1.2983754068957685e-2 9.862140336789668e-2l 0.29630650217854126,-4.693033951206917e-2 c -4.368723891539548e-3,-2.7583037087404165e-2 -8.014535551791662e-3,-5.5275725999985814e-2 -1.0933687637016964e-2 -8.30496028361235e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5978072556073182,8.373752998870992e-2 l -0.29958886042637217,1.570078687288311e-2 c 1.7356251645696706e-3,3.311770100381474e-2 4.3380217327658455e-3,6.618428460403444e-2 7.804514833971064e-3 9.916576334694796e-2l 0.29835656861048204,-3.135853898029596e-2 c -2.9191520852254486e-3,-2.77738768361377e-2 -5.1106439321274896e-3,-5.561942092053323e-2 -6.572223018080914e-3 -8.350801123953511e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6,-1.9594348786357652e-16 l -0.30000000000000004,-3.67394039744206e-17 c -4.061314543376523e-18,3.316314994824767e-2 8.682588017398993e-4,6.63206158577782e-2 2.6038839663097045e-3 9.943831686159293e-2l 0.29958886042637217,-1.5700786872883073e-2 c -1.4615790859535205e-3,-2.7888590319001885e-2 -2.19274439268186e-3,-5.581066687439601e-2 -2.1927443926818557e-3 -8.373752998870981e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8698697882665162,0.9660882731206126 l -0.2007391819076576,0.2229434476432183 c 8.308601597643375e-2,7.481098480977569e-2 0.17378450464875178,0.14070729405602725 0.2706089701741732 0.19660892529127103l 0.15000000000000016,-0.2598076211353316 c -7.866987823940484e-2,-4.542007537863557e-2 -0.15236240028566325,-9.896082664121494e-2 -0.21986978826651574 -0.1597447517991577Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.051722092687432,0.764120827980215 l -0.24270509831248435,0.17633557568774194 c 6.571630883833715e-2,9.045073936518697e-2 0.14073220484930918,0.17376433228609783 0.22381822082574274 0.24857531709587372l 0.2007391819076576,-0.22294344764321825 c -6.750738798085228e-2,-6.07839251579429e-2 -0.12845780348976704,-0.12847621940618298 -0.181852304420916 -0.2019674451403974Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1876090949353815,0.5287576359985401 l -0.2740636372927804,0.12202099292274003 c 4.5474483662168774e-2,0.10213736257953715 0.10152923238990862,0.1992270353814895 0.16724554122824556 0.2896777747466766l 0.24270509831248435,-0.17633557568774189 c -5.339450093114875e-2,-7.349122573421453e-2 -9.893898427243739e-2,-0.1523765848858008 -0.13588700224794953 -0.23536319198167477Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2715918809539475,0.27028519806308693 l -0.29344428022014174,6.237350724532776e-2 c 2.3245205339180917e-2,0.10936009293971913 5.788894528375907e-2,0.21598256103332805 0.10336342894592761 0.3181199236128653l 0.2740636372927804,-0.12202099292273999 c -3.6948017975511935e-2,-8.2986607095874e-2 -6.509605668048168e-2,-0.16961736242193126 -8.398278601856624e-2 -0.25847243793545305Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3,-1.5920408388915593e-16 l -0.30000000000000004,-3.67394039744206e-17 c 1.639437331881537e-16,0.11180326247048736 1.1718633486730363e-2,0.22329861236869566 3.496383882591104e-2 0.33265870530841485l 0.29344428022014174,-6.237350724532773e-2 c -1.8886729338084298e-2,-8.885507551352181e-2 -2.8408119046052584e-2,-0.17944504730581606 -2.8408119046052727e-2 -0.27028519806308704Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.3907618899075884,-0.7309292618068426 l -0.28689142678891044,-8.771151141682106e-2 c -2.3813332587414087e-3,7.7889901248377e-3 -4.728669248394897e-3,1.558833371950386e-2 -7.041940934441218e-3 2.339780805268043e-2l 0.2876459204604577,8.520460341117672e-2 c 2.0654211482556434e-3,-6.972744940336223e-3 4.161256853303401e-3,-1.393644457843101e-2 6.28744726289393e-3 -2.0890900047036087e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.109403416710025,-0.6248337583486302 l -0.2876459204604577,-8.520460341117679e-2 c -2.0654211482561144e-3,6.972744940336082e-3 -4.1004080782103755e-3,1.3954468806765478e-2 -6.1049026753145445e-3 2.0944972217309402e-2l 0.2883785087814955,8.269120674509965e-2 c 1.7639552454516696e-3,-6.151643001278655e-3 3.554743743811419e-3,-1.2295560003736524e-2 5.372314354276764e-3 -1.843157555123226e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.103870463118678,-0.6432177503900216 l -0.28689142678891044,-8.771151141682106e-2 c -2.126190409590544e-3,6.95445546860509e-3 -4.222026114638302e-3,1.3918155106699876e-2 -6.287447262893945e-3 2.08909000470361e-2l 0.2876459204604577,8.520460341117672e-2 c 1.8175706104649665e-3,-6.136015547495877e-3 3.6619060309069935e-3,-1.226407122901929e-2 5.5329535913466454e-3 -1.8383992041391767e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.3776412907378837,-0.7725424859373687 l -0.2853169548885459,-9.270509831248419e-2 c -2.516907191546308e-3,7.746243828020072e-3 -5.000002984917231e-3,1.5503432883143809e-2 -7.449216468605112e-3 2.327134563788804e-2l 0.2861150852244679,9.021173985128195e-2 c 2.1867977532927505e-3,-6.935636388164493e-3 4.403847568802504e-3,-1.3861698044524973e-2 6.6510861326831705e-3 -2.0777987176685803e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.098177291646099,-0.6615527589094011 l -0.28611508522446794,-9.021173985128192e-2 c -2.186797753293225e-3,6.93563638816434e-3 -4.343322627431268e-3,1.3880781485236294e-2 -6.469513037021165e-3 2.083523695384098e-2l 0.28689142678891044,8.771151141682104e-2 c 1.8710475604391094e-3,-6.119920812372122e-3 3.7687894496805873e-3,-1.223164849779544e-2 5.69317147257864e-3 -1.8335008519380108e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0923243358493377,-0.6798373876248845 l -0.2853169548885459,-9.270509831248419e-2 c -2.2472385638806322e-3,6.916289132160779e-3 -4.464288379390386e-3,1.3842350788521258e-2 -6.651086132683136e-3 2.0777987176685754e-2l 0.2861150852244679,9.021173985128195e-2 c 1.9243820228976207e-3,-6.103360021584754e-3 3.8753858605462036e-3,-1.2198294279181976e-2 5.85295579676115e-3 -1.8284628715483503e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.826397222282806,-0.5237109760522985 l -0.2883785087814957,-8.269120674509976e-2 c -3.5279272826470804e-3,1.2303344562322063e-2 -6.948419779255153e-3,2.4637242047681585e-2 -1.0261086771648761e-2 3.700028357185238e-2l 0.28977774788672056,7.76457135307563e-2 c 2.860939675249025e-3,-1.0677172225420237e-2 5.815001376865088e-3,-2.1329174599139824e-2 8.861847666423894e-3 -3.195479035750892e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8169790363297675,-0.5555062389732 l -0.28689142678891066,-8.771151141682104e-2 c -3.7421129320736207e-3,1.2239899882534697e-2 -7.377340662977217e-3,2.451222303030014e-2 -1.0905267945623463e-2 3.6815567592622445e-2l 0.2883785087814957,8.269120674509985e-2 c 3.0468462895581216e-3,-1.0625615758369265e-2 6.186361148065772e-3,-2.122444029507578e-2 9.41818595303845e-3 -3.179526292090125e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8070073809607918,-0.5871322893124004 l -0.2853169548885461,-9.270509831248426e-2 c -3.95515869765039e-3,1.2172726810672536e-2 -7.804014337267434e-3,2.437973735232843e-2 -1.1546127269340225e-2 3.661963723486338e-2l 0.28689142678891066,8.771151141682113e-2 c 3.2318248049719557e-3,-1.0570822625825642e-2 6.55583649373213e-3,-2.1113240820892092e-2 9.971655368975652e-3 -3.162605033920025e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.349231551964771,-0.8550503583141722 l -0.28190778623577234,-0.1026060429977006 c -2.7857139706225294e-3,7.653686231344672e-3 -5.538019122977103e-3,1.5319491023035519e-2 -8.256836857555766e-3 2.299719545731385e-2l 0.28279244732765335,0.1001420577701313 c 2.427515834445235e-3,-6.855093244891369e-3 4.8849311490475325e-3,-1.3699561808901053e-2 7.372175765674782e-3 -2.0533210229744553e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0738112804027926,-0.7343750903142962 l -0.28279244732765335,-0.10014205777013123 c -2.427515834445703e-3,6.8550932448912e-3 -4.825109080311426e-3,1.3720745914487718e-2 -7.192711267845801e-3 2.059676194153565e-2l 0.28365557267979485,9.767044633714697e-2 c 2.08348992503025e-3,-6.050894103802183e-3 4.193371981392086e-3,-1.2092668453047118e-2 6.329585915704317e-3 -1.8125150508551388e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0673237657289985,-0.7524443153164716 l -0.28190778623577234,-0.1026060429977006 c -2.487244616627259e-3,6.8336484208434585e-3 -4.944659931229557e-3,1.3678116984853144e-2 -7.372175765674792e-3 2.053321022974451e-2l 0.28279244732765335,0.1001420577701313 c 2.1362139343118073e-3,-6.032482055504405e-3 4.298739411161829e-3,-1.2055614391832928e-2 6.4875146737937706e-3 -1.8069225002175213e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.333951066243004,-0.8959198738632517 l -0.2800741279491603,-0.10751038486359013 c -2.918864935744765e-3,7.603903125426853e-3 -5.804537639587012e-3,1.5220506029759445e-2 -8.65693570334817e-3 2.2849591200331882e-2l 0.2810016567745191,0.1050622143778402 c 2.5467839855010345e-3,-6.811683188011106e-3 5.12327747107447e-3,-1.361222149545092e-2 7.729406877989398e-3 -2.0401420714581953e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0606788163464747,-0.7704562387708294 l -0.2810016567745191,-0.1050622143778403 c -2.5467839855015002e-3,6.811683188010924e-3 -5.0638342271498975e-3,1.3634446413653191e-2 -7.55107884377669e-3 2.046809483449683e-2l 0.28190778623577234,0.1026060429977006 c 2.1887752626315784e-3,-6.013610610342399e-3 4.403779475282169e-3,-1.2017642248907594e-2 6.6449493825234685e-3 -1.801192345435712e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0538769382938438,-0.7884094889996615 l -0.2800741279491603,-0.10751038486359013 c -2.6061294069149687e-3,6.78919921913112e-3 -5.182622892488404e-3,1.3589737526570934e-2 -7.729406877989438e-3 2.040142071458204e-2l 0.2810016567745191,0.1050622143778402 c 2.2411699072409103e-3,-5.994281205449773e-3 4.508484174545534e-3,-1.197875491599681e-2 6.801878052630661e-3 -1.795325022883211e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.796485293638702,-0.6185794934685982 l -0.28365557267979513,-9.767044633714711e-2 c -4.166999683573374e-3,1.2101845808303993e-2 -8.22831083319134e-3,2.423982537018738e-2 -1.2183469530840907e-2 3.641255218086018e-2l 0.28531695488854614,9.270509831248426e-2 c 3.415818875242807e-3,-1.0512809518308325e-2 6.923314868094686e-3,-2.0995610049025795e-2 1.0522087322089924e-2 -3.144720415619733e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7854159794932258,-0.6498382723187712 l -0.28190778623577256,-0.10260604299770074 c -4.377571361026107e-3,1.2027278466469027e-2 -8.650100905926014e-3,2.4092529702422115e-2 -1.2817100589498568e-2 3.619437551072638e-2l 0.2836555726797951,9.767044633714705e-2 c 3.5987724539944784e-3,-1.0451594107171868e-2 7.28868433368076e-3,-2.087158381094953e-2 1.1069314145476072e-2 -3.12587788501727e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7738028103446832,-0.6808991041360712 l -0.28007412794916053,-0.10751038486359021 c -4.586809587835786e-3,1.1949047499102312e-2 -9.069256074129334e-3,2.393789521671991e-2 -1.3446827435154626e-2 3.5965173683189224e-2l 0.28190778623577256,0.10260604299770068 c 3.78062981179457e-3,-1.0387195039223501e-2 7.6518335954117245e-3,-2.074119988625688e-2 1.1613169148542601e-2 -3.1060831817299683e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.3012621336311008,-0.9768278212231845 l -0.27615145603573193,-0.11721933854678206 c -3.182459234142969e-3,7.497404115893362e-3 -6.332189672086313e-3,1.5008658666518118e-2 -9.449101364769735e-3 2.253354914771517e-2l 0.27716385975338587,0.1148050297095269 c 2.78295686846734e-3,-6.718652215354511e-3 5.595216188059612e-3,-1.3425129492698043e-2 8.436697647115798e-3 -2.0119240310460015e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.032534971524831,-0.8419035512031977 l -0.27716385975338587,-0.11480502970952687 c -2.7829568684677995e-3,6.718652215354318e-3 -5.536584793812649e-3,1.344941541137598e-2 -8.260805138751375e-3 2.0192097372944355e-2l 0.27815515637003607,0.11238197802477358 c 2.397313903546079e-3,-5.93356012618017e-3 4.820506477849547e-3,-1.1856631738679234e-2 7.269508522101176e-3 -1.7769045688191057e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.025110677595369,-0.8596084826764023 l -0.27615145603573193,-0.11721933854678206 c -2.8414814590562226e-3,6.694110817761931e-3 -5.653740778648495e-3,1.3400588095105463e-2 -8.436697647115835e-3 2.0119240310459974e-2l 0.27716385975338587,0.1148050297095269 c 2.4490020442512594e-3,-5.912413949511969e-3 4.923790245492459e-3,-1.181411395357428e-2 7.424293929461923e-3 -1.7704931473204816e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.2838636441065026,-1.0168416076895002 l -0.2740636372927801,-0.12202099292273993 c -3.312822274042153e-3,7.44072065290767e-3 -6.593162460055134e-3,1.4895860827311917e-2 -9.840926879064552e-3 2.236520762155123e-2l 0.27511802231553706,0.11962472067757376 c 2.899789659829838e-3,-6.6690596377136716e-3 5.828664825912858e-3,-1.332543479343175e-2 8.786541856307617e-3 -1.9968935376385055e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0175321636472736,-0.8772479516355414 l -0.27511802231553706,-0.11962472067757374 c -2.899789659830295e-3,6.669059637713468e-3 -5.7704662092346965e-3,1.335074027216902e-2 -8.61194766829046e-3 2.004485108993115e-2l 0.27615145603573193,0.11721933854678204 c 2.5005036839690713e-3,-5.890817519630676e-3 5.026699047444946e-3,-1.1770696477951561e-2 7.5785139480955555e-3 -1.7639468959139454e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0098000068137223,-0.8948206147667601 l -0.2740636372927801,-0.12202099292273993 c -2.95787703039478e-3,6.643500582953278e-3 -5.886752196477799e-3,1.3299875738671356e-2 -8.786541856307636e-3 1.9968935376385027e-2l 0.27511802231553706,0.11962472067757376 c 2.5518149006502574e-3,-5.868772481188032e-3 5.129225046803315e-3,-1.1726382618219941e-2 7.732156833550663e-3 -1.7572663131218857e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7616493236768964,-0.7117525274902329 l -0.2781551563700363,-0.11238197802477362 c -4.794650628011582e-3,1.186717673611435e-2 -9.485648659076605e-3,2.3775969016243098e-2 -1.4072458246911576e-2 3.572501651534572e-2l 0.2800741279491606,0.10751038486359014 c 3.9613355531302e-3,-1.0319631931043176e-2 8.01265203450454e-3,-2.0604497991154363e-2 1.2153486667787261e-2 -3.0853423354162246e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.748959221559637,-0.74238914412962 l -0.27615145603573216,-0.11721933854678211 c -5.001031171159267e-3,1.1781691116132644e-2 -9.89915182355279e-3,2.3606800425280954e-2 -1.4693802451563567e-2 3.547397716139563e-2l 0.2781551563700363,0.11238197802477365 c 4.140834633282033e-3,-1.024892536300813e-2 8.371029742167349e-3,-2.0461519766363487e-2 1.2690102117259405e-2 -3.063661663938716e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.735736369520942,-0.7727996218440202 l -0.2740636372927803,-0.12202099292274003 c -5.205888351766139e-3,1.169261667890516e-2 -1.0309639610488284e-2,2.343044097422506e-2 -1.531067078164675e-2 3.521213209035804e-2l 0.27615145603573216,0.11721933854678215 c 4.319072375091402e-3,-1.017509687302394e-2 8.726857553078709e-3,-2.0312308764436578e-2 1.3222852038694943e-2 -3.041047771440017e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5454813220625092,-0.4141104721640329 l -0.28977774788672045,-7.764571353075617e-2 c -8.583254802197168e-3,3.20331430161094e-2 -1.6326364866417857e-2,6.428551758639246e-2 -2.3221371445000784e-2 9.672397314104639e-2l 0.2934442802201417,6.2373507245327926e-2 c 5.806321329332992e-3,-2.7316594151287517e-2 1.2326835067624102e-2,-5.4476488526262724e-2 1.955483911157957e-2 -8.145176685561814e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5216904260722457,-0.49442719099991556 l -0.2853169548885461,-9.270509831248418e-2 c -1.0247976921013181e-2,3.154002985915423e-2 -1.9668434186240716e-2,6.334296060150091e-2 -2.8251688988437752e-2 9.537610361761034e-2l 0.28977774788672045,7.764571353075635e-2 c 7.228004043955403e-3,-2.6975278329355323e-2 1.5161020688357542e-2,-5.3756693691331466e-2 2.3790895990263405e-2 -8.031671883588251e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4937286823955231,-0.5733887192724803 l -0.28007412794916053,-0.10751038486359005 c -1.1884610047416843e-2,3.0960467672675716e-2 -2.2956593695095194e-2,6.222678496451584e-2 -3.320457061610825e-2 9.376681482367012e-2l 0.2853169548885461,9.270509831248436e-2 c 8.629875301905735e-3,-2.656002514455098e-2 1.795365100521382e-2,-5.288955549557424e-2 2.7961743676722717e-2 -7.896152827256443e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4616727322281617,-0.6507786289212801 l -0.2740636372927803,-0.12202099292274003 c -1.348866828376965e-2,3.0296044996342118e-2 -2.6181830776324674e-2,6.094005003527383e-2 -3.8066440823741395e-2 9.19005177079496e-2l 0.28007412794916053,0.10751038486359021 c 1.000809267150882e-2,-2.6071972776990127e-2 2.069707161260779e-2,-5.1877450704511566e-2 3.205595016736118e-2 -7.738990964879978e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.1865492678484895,-1.2120240506158428 l -0.26238591214181856,-0.14544288607390107 c -3.948717520203359e-3,7.123674978523811e-3 -7.866333300634732e-3,1.4264545608418855e-2 -1.175273546319502e-2 2.1422407962841016e-2l 0.2636451337985895,0.1431476280778824 c 3.4700019308573997e-3,-6.390948530734073e-3 6.967873163385412e-3,-1.2766725878854648e-2 1.0493513806424049e-2 -1.912714996682234e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.933397647856324,-1.0497492725711386 l -0.26364513379858945,-0.14314762807788245 c -3.47000193085783e-3,6.390948530733835e-3 -6.912101527809282e-3,1.2797007406268867e-2 -1.03262004924041e-2 1.9217993684294905e-2l 0.264884277857678,0.14084146883576706 c 3.0044070888434423e-3,-5.650467924662913e-3 6.03345473416072e-3,-1.128779973513374e-2 9.087056433315588e-3 -1.6911834442179516e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9241633557066709,-1.0665811645419419 l -0.26238591214181856,-0.14544288607390107 c -3.5256406430387134e-3,6.360424087967689e-3 -7.023511875566726e-3,1.2736201436088265e-2 -1.0493513806424125e-2 1.9127149966822337e-2l 0.2636451337985895,0.1431476280778824 c 3.053601699154512e-3,-5.624034707045984e-3 6.131728383779163e-3,-1.1234718773392091e-2 9.234292149653156e-3 -1.6831891970803647e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.165063509461097,-1.2499999999999998 l -0.25980762113533146,-0.14999999999999988 c -4.072441382450966e-3,7.053675385251112e-3 -8.114085867572732e-3,1.412508660309672e-2 -1.2124818035290627e-2 2.1214031710292115e-2l 0.26110670878196973,0.14772706803104005 c 3.581010864033835e-3,-6.329415274281601e-3 7.189622011463984e-3,-1.2643175290215181e-2 1.0825730388652366e-2 -1.894109974133229e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9147825310677795,-1.0833318322276277 l -0.26110670878196973,-0.14772706803104005 c -3.5810108640342685e-3,6.329415274281355e-3 -7.1343873557020675e-3,1.2674425554857847e-2 -1.0660027998740062e-2 1.9034849642825268e-2l 0.26238591214181856,0.14544288607390105 c 3.1025637658734354e-3,-5.5971731974113325e-3 6.2295350785411e-3,-1.1180782244318645e-2 9.380824638891228e-3 -1.6750667685686255e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9052558883257653,-1.0999999999999999 l -0.25980762113533146,-0.14999999999999988 c -3.636108377188363e-3,6.2979244511170655e-3 -7.244719524618512e-3,1.2611684467050644e-2 -1.0825730388652347e-2 1.8941099741332245e-2l 0.26110670878196973,0.14772706803104005 c 3.1512895603497747e-3,-5.56988544136781e-3 6.326867370088307e-3,-1.1125994255389359e-2 9.526642742014091e-3 -1.66681677723724e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6776004264319615,-0.8919959692931922 l -0.26488427785767815,-0.1408414688357672 c -6.008842777750439e-3,1.1300989638219384e-2 -1.1918950787189617e-2,2.2654201492821276e-2 -1.7729648924770015e-2 3.405833870195662e-2l 0.26730195725651046,0.13619714992186407 c 5.018330209728523e-3,-9.849027589707796e-3 1.0122514399698721e-2,-1.9654074191409427e-2 1.5311969525937719e-2 -2.9414019788053497e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6617774435648522,-0.9211382784680402 l -0.2623859121418188,-0.14544288607390107 c -6.20515706620064e-3,1.1194399676384874e-2 -1.2312505805218827e-2,2.244273677476182e-2 -1.83213485829685e-2 3.374372641298161e-2l 0.2648842778576781,0.1408414688357673 c 5.189455126238352e-3,-9.759945596644367e-3 1.046398358266315e-2,-1.9474418545242633e-2 1.5822982867109203e-2 -2.9142309174847822e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6454482671904336,-0.95 l -0.2598076211353316,-0.15 c -6.399581203697768e-3,1.1084399791966354e-2 -1.2702310314705844e-2,2.222443578167309e-2 -1.8907467380905724e-2 3.3418835458058384e-2l 0.2623859121418188,0.14544288607390118 c 5.35899928444535e-3,-9.667890629605482e-3 1.0802265334861415e-2,-1.928883080253403e-2 1.6329176374418553e-2 -2.8861721531959567e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.120120240391065,-1.3247981605830121 l -0.2544144288469276,-0.15897577926996137 c -4.316130282042544e-3,6.907252322192372e-3 -8.602101399024786e-3,1.3833304469006016e-2 -1.285779095346524e-2 2.0777958648317107e-2l 0.2557920493062275,0.15674956941478457 c 3.7997228164646907e-3,-6.200584088670616e-3 7.626482742341694e-3,-1.2384559219754227e-2 1.1480170494165332e-2 -1.855174879314031e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.875808361579003,-1.1494968423750873 l -0.2557920493062275,-0.15674956941478452 c -3.7997228164651144e-3,6.200584088670357e-3 -7.572372352547524e-3,1.2417718109266656e-2 -1.1317840870049929e-2 1.865122451473669e-2l 0.2571501902106335,0.15451142247301614 c 3.296012295402116e-3,-5.48548563681363e-3 6.615943887154636e-3,-1.0956563574938372e-2 9.959699965643942e-3 -1.641307757296831e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8657058115441372,-1.1658223813130508 l -0.2544144288469276,-0.15897577926996137 c -3.8536877518237003e-3,6.167189573386047e-3 -7.680447677700703e-3,1.2351164704469658e-2 -1.1480170494165394e-2 1.8551748793140276e-2l 0.2557920493062275,0.15674956941478457 c 3.3437560784889283e-3,-5.456513998030143e-3 6.711304813260691e-3,-1.089841211338372e-2 1.0102550034865487e-2 -1.6325538937963485e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.09667641986356,-1.3615975875375683 l -0.25160117038362706,-0.1633917105045081 c -4.436021089386717e-3,6.8308734542891995e-3 -8.842215709280288e-3,1.3681070219901764e-2 -1.3218458028892424e-2 2.055039467096916e-2l 0.2530174337438655,0.16118988250404714 c 3.907359213939407e-3,-6.133325402738747e-3 7.841461553130095e-3,-1.2249572514892821e-2 1.1802194668654009e-2 -1.8348566670508215e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8554611807883483,-1.182059138363013 l -0.25301743374386554,-0.16118988250404712 c -3.907359213939828e-3,6.133325402738478e-3 -7.787938107027164e-3,1.2283670710660935e-2 -1.1641625858850443e-2 1.8450860284047247e-2l 0.25441442884692755,0.15897577926996148 c 3.3912452216044863e-3,-5.427126824579955e-3 6.806154647521342e-3,-1.0839430695551716e-2 1.0244630755788409e-2 -1.623675704996161e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8450752494799327,-1.1982058770330601 l -0.25160117038362706,-0.1633917105045081 c -3.9607331155238545e-3,6.098994155615357e-3 -7.894835454714543e-3,1.2215241267769432e-2 -1.180219466865395e-2 1.834856667050818e-2l 0.2530174337438655,0.16118988250404714 c 3.438476108266678e-3,-5.3973263544100985e-3 6.900486166754484e-3,-1.0779623813105684e-2 1.038593130841553e-2 -1.6146738670047234e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6286178713340136,-0.9785723423291034 l -0.25715019021063373,-0.1545114224730163 c -6.592055966766118e-3,1.0971023491994206e-2 -1.3088245577420964e-2,2.1999365010152323e-2 -1.9487826781117983e-2 3.308376480211911e-2l 0.2598076211353316,0.14999999999999997 c 5.526911039556518e-3,-9.57289072942586e-3 1.1137256612394793e-2,-1.909736749510787e-2 1.68303958564201e-2 -2.8572342329102773e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6112913826972093,-1.0068466020430897 l -0.25441442884692783,-0.15897577926996156 c -6.782522725728309e-3,1.0854305311987706e-2 -1.3470194033744515e-2,2.1767593018936826e-2 -2.006225000050989e-2 3.2738616510931476e-2l 0.25715019021063373,0.15451142247301625 c 5.693139244024642e-3,-9.474974833995382e-3 1.1468855373675002e-2,-1.8900086944542347e-2 1.732648863680397e-2 -2.8274259713986172e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5934740790963056,-1.034814166528552 l -0.2516011703836272,-0.1633917105045082 c -6.970923462564469e-3,1.073428080543516e-2 -1.3848039338476687e-2,2.1529190408020357e-2 -2.063056206420426e-2 3.238349572000852e-2l 0.25441442884692783,0.15897577926996148 c 5.857633263128359e-3,-9.374172769444326e-3 1.1796960610507093e-2,-1.8697049244404268e-2 1.7817303600903667e-2 -2.7967564485461782e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.0478801107224798,-1.433941090877615 l -0.24574561328669742,-0.17207293090531367 c -4.671712830789505e-3,6.671897367363596e-3 -9.314291735405007e-3,1.336414720358512e-2 -1.392760413246658e-2 2.0076558393397212e-2l 0.24723785658660458,0.16992187107744974 c 4.119028925947834e-3,-5.9932242766179405e-3 8.264188662211677e-3,-1.1968447344672872e-2 1.2435360832559417e-2 -1.79254985655333e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8130776149684347,-1.2460937212346321 l -0.24723785658660458,-0.16992187107744972 c -4.119028925948242e-3,5.993224276617658e-3 -8.211887831016722e-3,1.2004392710072203e-2 -1.2278459832564844e-2 1.8033333635215067e-2l 0.2487112717665124,0.16775787104122397 c 3.578583361362348e-3,-5.305468014125721e-3 7.180299197822611e-3,-1.059529623556572e-2 1.0805044652657053e-2 -1.5869333598989316e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8021344974357822,-1.2618681599723012 l -0.24574561328669742,-0.17207293090531367 c -4.171172170347772e-3,5.957051220860354e-3 -8.316331906611614e-3,1.1932274288915287e-2 -1.2435360832559448e-2 1.7925498565533226e-2l 0.24723785658660458,0.16992187107744974 c 3.624745454834095e-3,-5.274037363423787e-3 7.272486022746275e-3,-1.0532233663312128e-2 1.0943117532652313e-2 -1.577443873766929e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -2.022542485937368,-1.4694631307311832 l -0.24270509831248405,-0.17633557568774186 c -4.7874419708605e-3,6.589348573997274e-3 -9.546109652343577e-3,1.3199554974193591e-2 -1.427586714784077e-2 1.9830430428293504e-2l 0.2442346555068956,0.17421088671328186 c 4.2229977638367795e-3,-5.920424512589208e-3 8.471808193732385e-3,-1.1822394512764492e-2 1.2746309953429236e-2 -1.7705741453833496e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7910541403839024,-1.277546502564068 l -0.2442346555068956,-0.17421088671328186 c -4.2229977638371845e-3,5.920424512588918e-3 -8.420142661333833e-3,1.185924717887359e-2 -1.2591314831681202e-2 1.7816298399734226e-2l 0.2457456132866974,0.17207293090531375 c 3.6706315099056847e-3,-5.242205074357361e-3 7.3641190197027365e-3,-1.0468369020687871e-2 1.1080357051879403e-2 -1.567834259176612e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7798373876248843,-1.2931275550434413 l -0.24270509831248405,-0.17633557568774186 c -4.274501759696876e-3,5.883346941068995e-3 -8.52331218959248e-3,1.178531694124428e-2 -1.274630995342926e-2 1.7705741453833485e-2l 0.2442346555068956,0.17421088671328186 c 3.7162380321763664e-3,-5.209973571078503e-3 7.455191210484499e-3,-1.0403707171232754e-2 1.1216752759017679e-2 -1.5581052479373497e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5751713878545792,-1.0624665165944196 l -0.2487112717665125,-0.16775787104122414 c -7.15720078858508e-3,1.0610986532963966e-2 -1.422166639627739e-2,2.1284229797147655e-2 -2.1192589858841128e-2 3.201851060258329e-2l 0.2516011703836273,0.16339171050450815 c 6.020342990395958e-3,-9.270515241058045e-3 1.2121472378857499e-2,-1.8488316241943963e-2 1.8302691241726343e-2 -2.7652350065867304e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5563888841490843,-1.0897952290669881 l -0.24574561328669756,-0.1720729309053139 c -7.3412979619121264e-3,1.0484460051203895e-2 -1.4590961396725407e-2,2.103278580369378e-2 -2.174816218530977e-2 3.164377233665823e-2l 0.2487112717665126,0.16775787104122405 c 6.181218862868311e-3,-9.164033823923844e-3 1.2442291829297961e-2,-1.8273951519256017e-2 1.8782503705494724e-2 -2.732871247256838e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5371322893124,-1.1167919793556993 l -0.24270509831248424,-0.176335575687742 c -7.523158904763224e-3,1.0354739901346983e-2 -1.4955811848986167e-2,2.0774935019934927e-2 -2.229710981089758e-2 3.125939507113932e-2l 0.2457456132866976,0.1720729309053138 c 6.340211876196222e-3,-9.054760953312884e-3 1.2759321237116036e-2,-1.8054020373911562e-2 1.925659483668421e-2 -2.6996750288711124e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4256104387013881,-0.7263847995832751 l -0.26730195725651035,-0.13619714992186407 c -1.5055755017942488e-2,2.95485829665258e-2 -2.9335305279273007e-2,5.948628266477605e-2 -4.2823973563042544e-2 8.97823276611182e-2l 0.27406363729278027,0.12202099292274013 c 1.1358878554753293e-2,-2.5512458944288132e-2 2.3383762985347417e-2,-5.072315342702518e-2 3.606229352677259e-2 -7.560617066199425e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3856406460551016,-0.8 l -0.25980762113533157,-0.15000000000000002 c -1.658157497412384e-2,2.8720130324695066e-2 -3.2408373749522906e-2,5.786946752833495e-2 -4.746412876746528e-2 8.74180504948608e-2l 0.26730195725651035,0.1361971499218641 c 1.2678530541425153e-2,-2.4883017234969145e-2 2.6006361089129633e-2,-4.942982751171852e-2 3.996979264628647e-2 -7.361520041672488e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3418729087126784,-0.8714224560240436 l -0.2516011703836272,-0.16339171050450818 c -1.806194598587226e-2,2.781295780195613e-2 -3.539261312000381e-2,5.609403620385606e-2 -5.197418809412753e-2 8.48141665285512e-2l 0.2598076211353316,0.15000000000000008 c 1.396343155715682e-2,-2.4185372905006428e-2 2.855767756484654e-2,-4.800101787502742e-2 4.376773734242312e-2 -7.14224560240431e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2944271909999159,-0.9404564036679572 l -0.24270509831248424,-0.176335575687742 c -1.949281045914388e-2,2.682955189513702e-2 -3.827984379803315e-2,5.416485502519104e-2 -5.63417897839053e-2 8.197781282714724e-2l 0.2516011703836272,0.1633917105045082 c 1.5210059777576546e-2,-2.3421438149015747e-2 3.1030719431378036e-2,-4.644064078485071e-2 4.744571771276229e-2 -6.903394764391345e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.8867739505569292,-1.640147572476269 l -0.22641287406683136,-0.19681770869715218 c -5.343523877983083e-3,6.147021052462827e-3 -1.06602008407815e-2,1.2317328405361585e-2 -1.5949879056324792e-2 1.8510745848906253e-2l 0.22812178968000904,0.19483441449905511 c 4.722926978163653e-3,-5.529837003164881e-3 9.46995998066224e-3,-1.1039039996824486e-2 1.4240963443147098e-2 -1.6527451650809183e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6728931243200678,-1.4287857063264044 l -0.22812178968000907,-0.1948344144990551 c -4.7229269781640295e-3,5.529837003164556e-3 -9.421702972699684e-3,1.1080255375263566e-2 -1.4096193797367524e-2 1.6651096609110908e-2l 0.2298133329356932,0.1928362829059618 c 4.113551925707701e-3,-4.9023402857856615e-3 8.248474800899077e-3,-9.786708453232786e-3 1.2404650541683382e-2 -1.4652965016017622e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6603610764900978,-1.4433298637791168 l -0.22641287406683136,-0.19681770869715218 c -4.771003462484896e-3,5.488411653984667e-3 -9.518036464983483e-3,1.0997614647644274e-2 -1.4240963443147136e-2 1.6527451650809155e-2l 0.22812178968000904,0.19483441449905511 c 4.156175740784015e-3,-4.866256562785096e-3 8.333564782982772e-3,-9.714355197205548e-3 1.2532047829969445e-2 -1.4544157452712092e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.857862063693485,-1.6728265158971458 l -0.22294344764321808,-0.20073918190765738 c -5.449990343200646e-3,6.052827480856882e-3 -1.0873544262111472e-2,1.212940625880874e-2 -1.6270506872501905e-2 1.822956280073816e-2l 0.22468671623670045,0.1987860144647212 c 4.81871661642003e-3,-5.4465683410084105e-3 9.66117547259041e-3,-1.0872085107036855e-2 1.4527238279019528e-2 -1.627639535780198e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6477025857358043,-1.457764106074623 l -0.22468671623670045,-0.1987860144647212 c -4.818716616420402e-3,5.446568341008078e-3 -9.613645121939893e-3,1.091413640909057e-2 -1.4384648584424413e-2 1.640254806307557e-2l 0.2264128740668314,0.19681770869715215 c 4.198483046986379e-3,-4.829802255506797e-3 8.418020131843531e-3,-9.641262155419392e-3 1.2658490754293483e-2 -1.4434242295506522e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.634918616050267,-1.4720873339894884 l -0.22294344764321808,-0.20073918190765738 c -4.866062806429148e-3,5.4043102507650735e-3 -9.708521662599529e-3,1.0829827016793518e-2 -1.4527238279019559e-2 1.627639535780193e-2l 0.22468671623670045,0.1987860144647212 c 4.240470622449627e-3,-4.792980140087401e-3 8.501834415879561e-3,-9.567434894192433e-3 1.2783969685537189e-2 -1.4323227914865733e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.455484441926058,-1.221296458404425 l -0.22981333293569342,-0.19283628290596183 c -8.227143009839422e-3,9.804727238761711e-3 -1.6368566452252514e-2,1.9681063625805066e-2 -2.4423340343584222e-2 2.962788100074397e-2l 0.23314378843709122,0.18879611731495133 c 6.956395633422839e-3,-8.590433187447236e-3 1.3987624970052327e-2,-1.7119996430802857e-2 2.109288484218641e-2 -2.558771540973348e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4339482024232666,-1.2465121550819642 l -0.2264128740668316,-0.19681770869715223 c -8.397006060887537e-3,9.659650487687611e-3 -1.6709555361814492e-2,1.9392395229967087e-2 -2.4936698371653247e-2 2.9197122468729356e-2l 0.22981333293569337,0.19283628290596194 c 7.105259872133469e-3,-8.46771897893105e-3 1.4284279722934019e-2,-1.687327125635423e-2 2.1536239502791515e-2 -2.5215696677539062e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4119751684070487,-1.271348152081831 l -0.22294344764321825,-0.20073918190765752 c -8.564311302545879e-3,9.511631313499825e-3 -1.7045454378944162e-2,1.909781972268371e-2 -2.544246043983104e-2 2.875747021037189e-2l 0.22641287406683153,0.19681770869715232 c 7.251959779856848e-3,-8.342425421185247e-3 1.4576583345837182e-2,-1.6621406320025872e-2 2.1973034016217752e-2 -2.483599699986669e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7983495008466275,-1.7366459261474936 l -0.21580194010159517,-0.2083975111376991 c -5.65791098904635e-3,5.858938341886276e-3 -1.1290230566472919e-2,1.1742536130121406e-2 -1.6896797886181956e-2 1.765062534268135e-2l 0.2176123113036861,0.20650637270812616 c 5.0058636783116405e-3,-5.275079654071381e-3 1.0034720443871077e-2,-1.0528291964995605e-2 1.508642668409102e-2 -1.575948691310841e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5958236162270327,-1.5143800665262592 l -0.2176123113036861,-0.2065063727081261 c -5.005863678312002e-3,5.275079654071037e-3 -9.98868661670331e-3,1.0571976435848094e-2 -1.49483265172069e-2 1.5890539078138807e-2l 0.21940611048575095,0.20459950801874952 c 4.36448311244316e-3,-4.6803351252158246e-3 8.749367298227513e-3,-9.341604293179635e-3 1.3154527335142052e-2 -1.3983674388762218e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5825475607450323,-1.5282484150097946 l -0.21580194010159517,-0.2083975111376991 c -5.051706240219956e-3,5.231194948112747e-3 -1.0080563005779393e-2,1.048440725903697e-2 -1.5086426684091034e-2 1.5759486913108352e-2l 0.2176123113036861,0.20650637270812616 c 4.405160036914244e-3,-4.642070095582816e-3 8.83055399060655e-3,-9.264896929196133e-3 1.3276055482000088e-2 -1.3868348483535409e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7677669529663687,-1.7677669529663689 l -0.21213203435596412,-0.21213203435596414 c -5.759301835031595e-3,5.759301835031594e-3 -1.1493446522819547e-2,1.1543705992375811e-2 -1.72022703093751e-2 1.735304728275066e-2l 0.21397513474625432,0.2102727792899552 c 5.097164095138886e-3,-5.186911866406116e-3 1.0216936137806701e-2,-1.0351558435463454e-2 1.5359169919084897e-2 -1.5493792216741714e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5691509881391994,-1.5420003814596723 l -0.21397513474625435,-0.21027277928995516 c -5.097164095139242e-3,5.1869118664057655e-3 -1.0171671720954099e-2,1.0396039654021038e-2 -1.5223377961173696e-2 1.5627234602134134e-2l 0.2158019401015952,0.2083975111376991 c 4.445501491393246e-3,-4.6034515543395245e-3 8.911068202110317e-3,-9.187484007440965e-3 1.3396572605832852e-2 -1.3751966449878084e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5556349186104046,-1.5556349186104048 l -0.21213203435596412,-0.21213203435596414 c -5.14223378127821e-3,5.142233781278209e-3 -1.0262005823946025e-2,1.0306880350335546e-2 -1.5359169919084911e-2 1.5493792216741662e-2l 0.21397513474625432,0.2102727792899552 c 4.48550440372222e-3,-4.564482442437382e-3 8.990903801269897e-3,-9.10937142320784e-3 1.3516069528794722e-2 -1.3634537150732706e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3895720330764239,-1.2957968841187477 l -0.21940611048575115,-0.20459950801874963 c -8.72900777201712e-3,9.360714804272708e-3 -1.737616118554698e-2,1.8797426834508073e-2 -2.5940472488092215e-2 2.8309058148008475e-2l 0.22294344764321825,0.20073918190765758 c 7.396450670379976e-3,-8.214590679841262e-3 1.4864446800246676e-2,-1.6364478342317256e-2 2.240313533062513e-2 -2.4448732036916415e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3667456206434372,-1.3198509038720951 l -0.21580194010159537,-0.20839751113769925 c -8.891045301161207e-3,9.20694693063693e-3 -1.770157504512603e-2,1.849130806802388e-2 -2.6430582817142518e-2 2.785202287229718e-2l 0.21940611048575112,0.20459950801874965 c 7.538688530377875e-3,-8.08425369459967e-3 1.5147782400165677e-2,-1.610256558597931e-2 2.2826412432986776e-2 -2.405401975334759e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3435028842544403,-1.3435028842544405 l -0.21213203435596428,-0.2121320343559643 c -9.05037453177707e-3,9.050374531776378e-3 -1.8021596833467324e-2,1.8179556669972844e-2 -2.6912642134627907e-2 2.7386503600610373e-2l 0.2158019401015953,0.20839751113769928 c 7.678630032820504e-3,-7.951454167368779e-3 1.5426503838825724e-2,-1.5835747832174816e-2 2.3242736388996876e-2 -2.365198038234534e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.7049959001562458,-1.8283842540479265 l -0.20459950801874938,-0.21940611048575104 c -5.95679015936569e-3,5.55479668856487e-3 -1.1889314554956176e-2,1.1135558379562463e-2 -1.7797403767515835e-2 1.674212569927275e-2l 0.2065063727081261,0.21761231130368613 c 5.275079654071123e-3,-5.005863678312758e-3 1.0571976435848344e-2,-9.988686616703466e-3 1.5890539078139115e-2 -1.4948326517207844e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5143800665262588,-1.5958236162270327 l -0.20650637270812605,-0.21761231130368616 c -5.2750796540714595e-3,5.0058636783124e-3 -1.0528291964995851e-2,1.003472044387124e-2 -1.575948691310868e-2 1.5086426684091955e-2l 0.2083975111376991,0.21580194010159517 c 4.603451554339287e-3,-4.445501491394228e-3 9.226278387952752e-3,-8.870895445086006e-3 1.386834848353563e-2 -1.3276055482000976e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5003963921374965,-1.6089781435621753 l -0.20459950801874938,-0.21940611048575104 c -5.318562642290795e-3,4.959639900504348e-3 -1.0615459424068016e-2,9.942462838895057e-3 -1.589053907813914e-2 1.4948326517207814e-2l 0.2065063727081261,0.21761231130368613 c 4.642070095582589e-3,-4.405160036915227e-3 9.303339263546545e-3,-8.79004422269905e-3 1.3983674388762413e-2 -1.3154527335142913e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.6728265158971447,-1.8578620636934862 l -0.20073918190765724,-0.22294344764321822 c -6.052827480856886e-3,5.449990343200642e-3 -1.208184604550825e-2,1.0926365230210943e-2 -1.8086883519045454e-2 1.6428968268356662e-2l 0.20267706228469784,0.22118320104303718 c 5.361640601372505e-3,-4.913038426915822e-3 1.0744692891239794e-2,-9.802658861746447e-3 1.6149003142004847e-2 -1.4668721668175622e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4862984567544522,-1.6220101409822738 l -0.20267706228469784,-0.22118320104303715 c -5.3616406013728395e-3,4.913038426915453e-3 -1.0701818474805402e-2,9.849448076879683e-3 -1.6020381117095434e-2 1.4809087977384e-2l 0.2045995080187493,0.21940611048575112 c 4.6803351252152296e-3,-4.364483112443799e-3 9.379691653835884e-3,-8.708523604412323e-3 1.4097935383043991e-2 -1.3031997420097974e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4720873339894875,-1.634918616050268 l -0.20073918190765724,-0.22294344764321822 c -5.404310250765077e-3,4.866062806429145e-3 -1.0787362540632367e-2,9.75568324125977e-3 -1.614900314200487e-2 1.4668721668175592e-2l 0.20267706228469784,0.22118320104303718 c 4.718243729207804e-3,-4.323473815685924e-3 9.455329744291018e-3,-8.626339798336874e-3 1.4211122764964279e-2 -1.2908475067994557e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3198509038720945,-1.3667456206434376 l -0.20839751113769917,-0.21580194010159542 c -9.20694693063761e-3,8.891045301160501e-3 -1.8336129068834025e-2,1.786226760285081e-2 -2.7386503600610478e-2 2.6912642134627802e-2l 0.21213203435596428,0.21213203435596428 c 7.816232550170573e-3,-7.81623255017104e-3 1.5700526214976567e-2,-1.5564106356176307e-2 2.3651980382345367e-2 -2.3242736388996654e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2957968841187468,-1.3895720330764245 l -0.20459950801874952,-0.21940611048575126 c -9.360714804273376e-3,8.729007772016403e-3 -1.8645075941660278e-2,1.753953751598128e-2 -2.7852022872297284e-2 2.643058281714241e-2l 0.2083975111376992,0.2158019401015954 c 7.95145416736832e-3,-7.678630032820974e-3 1.5969766058747916e-2,-1.5287723902608822e-2 2.4054019753347616e-2 -2.2826412432986554e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2713481520818302,-1.4119751684070496 l -0.2007391819076574,-0.22294344764321838 c -9.511631313500484e-3,8.564311302545148e-3 -1.89483433437358e-2,1.7211464716075063e-2 -2.8309058148008583e-2 2.5940472488092104e-2l 0.20459950801874954,0.2194061104857512 c 8.084253694599221e-3,-7.5386885303783515e-3 1.6234141357075176e-2,-1.5006684660245097e-2 2.4448732036916443e-2 -2.2403135330624935e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.243433538331153,-1.0069126256797398 l -0.23314378843709124,-0.18879611731495127 c -2.08702464938759e-2,2.577260805147297e-2 -4.106215208501153e-2,5.2087211743855055e-2 -6.055496254415557e-2 7.891676363899248e-2l 0.24270509831248427,0.1763355756877419 c 1.6414998281384457e-2,-2.25933068590631e-2 3.3418708252867094e-2,-4.4752973126332224e-2 5.0993652668762546e-2 -6.645622201178313e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1890317207638306,-1.0706089701741732 l -0.22294344764321822,-0.20073918190765752 c -2.2190478633641e-2,2.464502328057149e-2 -4.373191186731998e-2,4.986680103566668e-2 -6.460215836119579e-2 7.56394090871397e-2l 0.2331437884370913,0.18879611731495122 c 1.757494441589542e-2,-2.1703248885450967e-2 3.5715098717940874e-2,-4.2942640679215334e-2 5.4401817567322736e-2 -6.36963444944334e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1313708498984756,-1.1313708498984765 l -0.21213203435596423,-0.21213203435596434 c -2.344988821391255e-2,2.344988821391254e-2 -4.6281805518968024e-2,4.7509708892038385e-2 -6.847228415260893e-2 7.215473217260995e-2l 0.2229434476432183,0.2007391819076575 c 1.868671884938183e-2,-2.0753703815218155e-2 3.7913596579954856e-2,-4.1014605438903076e-2 5.7660870865354846e-2 -6.076187972430311e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0706089701741728,-1.1890317207638312 l -0.2007391819076574,-0.22294344764321838 c -2.464502328057151e-2,2.219047863364099e-2 -4.870484395869743e-2,4.5022395938696384e-2 -7.21547321726099e-2 6.847228415260899e-2l 0.21213203435596428,0.2121320343559643 c 1.9747274285399977e-2,-1.9747274285400088e-2 4.000817590908496e-2,-3.897415201597305e-2 6.0761879724303025e-2 -5.76608708653549e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.5045375578801201,-1.9965887751182327 l -0.1805445069456143,-0.23959065301418778 c -6.504792601222863e-3,4.901712809730174e-3 -1.2988166450867264e-2,9.831784845891008e-3 -1.9449936398682387e-2 1.4790075316961651e-2l 0.182628428702616,0.23800600208737047 c 5.769437453406362e-3,-4.427045063455931e-3 1.1558164104874577e-2,-8.82889509574239e-3 1.7366014641680694e-2 -1.3205424390144355e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3392751438191848,-1.745377348640718 l -0.182628428702616,-0.23800600208737047 c -5.769437453406664e-3,4.427045063455535e-3 -1.1519530787336377e-2,8.879243015395208e-3 -1.7250115792343906e-2 1.3356466711283144e-2l 0.1846984425976973,0.2364032260820165 c 5.042914804406627e-3,-3.939956852381386e-3 1.0102996938264774e-2,-7.857891050088297e-3 1.5180101897262599e-2 -1.1753690705929187e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3239930509345057,-1.756998122104045 l -0.1805445069456143,-0.23959065301418778 c -5.807850536806128e-3,4.376529294401942e-3 -1.1596577188274344e-2,8.778379326688401e-3 -1.7366014641680704e-2 1.3205424390144332e-2l 0.182628428702616,0.23800600208737047 c 5.077104958997598e-3,-3.8957996558412196e-3 1.0171184412289628e-2,-7.769427684253304e-3 1.5282092884678994e-2 -1.1620773463327017e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.4694631307311825,-2.0225424859373686 l -0.1763355756877418,-0.2427050983124841 c -6.589348573997274e-3,4.787441970860499e-3 -1.3157776595341612e-2,9.603612657662035e-3 -1.9705096484830632e-2 1.4448374521644422e-2l 0.17844683602540223,0.24115705818516509 c 5.8458213299009115e-3,-4.32568023569856e-3 1.1710489206101212e-2,-8.625832634628504e-3 1.7593836147170194e-2 -1.2900334394325419e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3086101308529505,-1.7684850933578784 l -0.17844683602540226,-0.24115705818516509 c -5.845821329901205e-3,4.325680235698158e-3 -1.1672740464961449e-2,8.67684713040899e-3 -1.7480591001767277e-2 1.305337642481133e-2l 0.18054450694561433,0.23959065301418775 c 5.1109084723891295e-3,-3.8513457790740604e-3 1.0238597311242142e-2,-7.680372646419593e-3 1.5382920081555201e-2 -1.1486971253833994e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2931275550434407,-1.7798373876248845 l -0.1763355756877418,-0.2427050983124841 c -5.883346941068995e-3,4.274501759696874e-3 -1.1748014817269297e-2,8.574654158626818e-3 -1.7593836147170208e-2 1.2900334394325377e-2l 0.17844683602540223,0.24115705818516509 c 5.144322770312802e-3,-3.8065986074147327e-3 1.0305230501369066e-2,-7.590732718473084e-3 1.5482575809509791e-2 -1.1352294267006346e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1697568031187504,-1.4972204318527722 l -0.18469844259769747,-0.23640322608201664 c -1.008587761418622e-2,7.879951210668933e-3 -2.0102797218255686e-2,1.5847768838119922e-2 -3.0049614593194114e-2 2.3902542729452227e-2l 0.18879611731495116,0.2331437884370914 c 8.590433187446825e-3,-6.956395633423351e-3 1.7241409209143185e-2,-1.3837692675312842e-2 2.595193987594041e-2 -2.064310508452699e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1434485439888915,-1.5174074690898565 l -0.18054450694561447,-0.23959065301418792 c -1.0221865597408092e-2,7.702728220532672e-3 -2.0376317167756244e-2,1.5494512958586197e-2 -3.0462194781941933e-2 2.337446416925582e-2l 0.18469844259769744,0.2364032260820167 c 8.710530666796727e-3,-6.805412409214672e-3 1.7480284295733766e-2,-1.3534681046624534e-2 2.6308259129858957e-2 -2.0187037237084593e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1167919793556988,-1.5371322893124002 l -0.17633557568774194,-0.24270509831248427 c -1.0354739901347557e-2,7.523158904762431e-3 -2.0643630293657688e-2,1.5136537300306566e-2 -3.086549589106526e-2 2.2839265520839935e-2l 0.18054450694561444,0.23959065301418794 c 8.827974834124718e-3,-6.652356190460635e-3 1.771383471839256e-2,-1.3227546622976025e-2 2.665656463319277e-2 -1.97248202225436e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3979822586768667,-2.0725939313876043 l -0.16775787104122392,-0.24871127176651237 c -6.752413836159696e-3,4.554560641734356e-3 -1.348492248162913e-2,9.138562615410548e-3 -2.0197333671440592e-2 1.375187501247304e-2l 0.1699218710774497,0.2472378565866046 c 5.993224276617377e-3,-4.119028925948653e-3 1.200439271007223e-2,-8.211887831016684e-3 1.803333363521481e-2 -1.2278459832565286e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2460937212346321,-1.8130776149684347 l -0.16992187107744972,-0.24723785658660455 c -5.993224276617658e-3,4.119028925948243e-3 -1.1968447344672903e-2,8.264188662211637e-3 -1.792549856553297e-2 1.2435360832559817e-2l 0.17207293090531367,0.24574561328669747 c 5.242205074356861e-3,-3.6706315099063994e-3 1.0500401374245478e-2,-7.318372077818188e-3 1.577443873766901e-2 -1.094311753265273e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.230224387635643,-1.823882659621092 l -0.16775787104122392,-0.24871127176651237 c -6.028940925142586e-3,4.066572001548532e-3 -1.2040109358597438e-2,8.159430906616562e-3 -1.8033333635214813e-2 1.2278459832565215e-2l 0.1699218710774497,0.2472378565866046 c 5.274037363423291e-3,-3.624745454834815e-3 1.0563865584863563e-2,-7.226461291294683e-3 1.586933359898904e-2 -1.0805044652657442e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.3615975875375677,-2.09667641986356 l -0.16339171050450804,-0.25160117038362706 c -6.8308734542891995e-3,4.436021089386715e-3 -1.3642358571636195e-2,8.901826420135948e-3 -2.0434260831686847e-2 1.339728845911653e-2l 0.16558109559361733,0.25016574662015034 c 6.064198446473795e-3,-4.013805391946948e-3 1.2145881586962184e-2,-8.001131580115907e-3 1.824487574257755e-2 -1.1961864695639812e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2142613676865281,-1.83454880854777 l -0.16558109559361736,-0.25016574662015034 c -6.064198446474071e-3,4.01380539194653e-3 -1.2110854471579136e-2,8.054051778767427e-3 -1.8139795396721444e-2 1.2120623780316376e-2l 0.16775787104122392,0.2487112717665124 c 5.30546801412523e-3,-3.5785833613630738e-3 1.0626525316217689e-2,-7.134000181765464e-3 1.5963019949114893e-2 -1.0666148926678415e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1982058770330597,-1.8450752494799327 l -0.16339171050450804,-0.25160117038362706 c -6.098994155615357e-3,3.960733115523853e-3 -1.2180677296103747e-2,7.94805930369281e-3 -1.8244875742577542e-2 1.196186469563976e-2l 0.16558109559361733,0.25016574662015034 c 5.33649463289694e-3,-3.5321487449133143e-3 1.0688375796526723e-2,-7.0409957905019985e-3 1.6055490653468257e-2 -1.052644093216304e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0897952290669874,-1.5563888841490845 l -0.1720729309053138,-0.2457456132866976 c -1.0484460051204455e-2,7.341297961911323e-3 -2.0904655169792348e-2,1.4773950906134333e-2 -3.12593950711394e-2 2.2297109810897466e-2l 0.17633557568774189,0.24270509831248432 c 8.942729914799724e-3,-6.49727359956816e-3 1.794198933539836e-2,-1.2916382960488032e-2 2.699675028871132e-2 -1.9256594836684182e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.062466516594419,-1.5751713878545792 l -0.16775787104122408,-0.24871127176651253 c -1.061098653296451e-2,7.157200788584267e-3 -2.1159312285454347e-2,1.4406864223397617e-2 -3.1643772336658306e-2 2.174816218530965e-2l 0.17207293090531378,0.2457456132866976 c 9.05476095331251e-3,-6.340211876196757e-3 1.816467864864464e-2,-1.2601284842626466e-2 2.73287124725686e-2 -1.8782503705494724e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0348141665285515,-1.5934740790963056 l -0.16339171050450815,-0.2516011703836272 c -1.0734280805435691e-2,6.9709234625636475e-3 -2.1407524069619335e-2,1.4035389070256024e-2 -3.2018510602583365e-2 2.119258985884101e-2l 0.16775787104122403,0.24871127176651256 c 9.164033823923478e-3,-6.181218862868852e-3 1.8381834824809352e-2,-1.228234825133045e-2 2.7652350065867498e-2 -1.8302691241726343e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2875951872751346,-2.1429182517552814 l -0.15451142247301605,-0.2571501902106336 c -6.981527174126707e-3,4.1949247396035035e-3 -1.3944717277194601e-2,8.42029222001511e-3 -2.088937145650567e-2 1.2675981774456847e-2l 0.15674956941478455,0.2557920493062275 c 6.200584088670597e-3,-3.799722816465838e-3 1.2417718109266932e-2,-7.572372352547628e-3 1.865122451473719e-2 -1.1317840870050722e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.149496842375087,-1.8758083615790035 l -0.1567495694147845,-0.25579204930622756 c -6.200584088670853e-3,3.7997228164654184e-3 -1.2384559219754506e-2,7.626482742341802e-3 -1.8551748793140782e-2 1.1480170494166227e-2l 0.1589757792699614,0.2544144288469276 c 5.427126824579928e-3,-3.391245221605495e-3 1.0869024939933542e-2,-6.758793956376714e-3 1.6325538937963874e-2 -1.0102550034866264e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1330837648021186,-1.8857680615446477 l -0.15451142247301605,-0.2571501902106336 c -6.233506405470275e-3,3.745468517503129e-3 -1.245064042606661e-2,7.518118053584919e-3 -1.8651224514737205e-2 1.1317840870050756e-2l 0.15674956941478455,0.2557920493062275 c 5.456513998030126e-3,-3.3437560784899375e-3 1.09275919361549e-2,-6.663687670241914e-3 1.64130775729687e-2 -9.959699965644636e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.2499999999999996,-2.165063509461097 l -0.14999999999999986,-0.25980762113533146 c -7.053675385251112e-3,4.072441382450965e-3 -1.4089547791354646e-2,8.17564089515063e-3 -2.110741628997147e-2 1.2309481360156293e-2l 0.15226150888821108,0.25848874813245765 c 6.265954016622164e-3,-3.6909289866121986e-3 1.2547982950643178e-2,-7.354499980094043e-3 1.884590740176026e-2 -1.0990608357282494e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1165843985135488,-1.895584152971357 l -0.1522615088882111,-0.2584887481324576 c -6.265954016622417e-3,3.6909289866117675e-3 -1.2515773467905403e-2,7.409180831030536e-3 -1.874927987337492e-2 1.1154649348533796e-2l 0.15451142247301608,0.2571501902106336 c 5.485485636813179e-3,-3.296012295402868e-3 1.0985326753942206e-2,-6.568073918491384e-3 1.649936628856996e-2 -9.816091426709833e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0999999999999996,-1.9052558883257653 l -0.14999999999999986,-0.25980762113533146 c -6.2979244511170655e-3,3.636108377188362e-3 -1.2579953385138077e-2,7.299679370670206e-3 -1.884590740176024e-2 1.0990608357282406e-2l 0.15226150888821108,0.25848874813245765 c 5.5140395346275056e-3,-3.248017508218735e-3 1.1042224996565996e-2,-6.4719599824827586e-3 1.658439851354901e-2 -9.6717353544086e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0068466020430893,-1.6112913826972093 l -0.1589757792699615,-0.25441442884692783 c -1.0854305311988227e-2,6.782522725727476e-3 -2.1649214914573382e-2,1.365963860163976e-2 -3.23834957200086e-2 2.0630562064204137e-2l 0.16339171050450807,0.25160117038362734 c 9.27051524105769e-3,-6.020342990396507e-3 1.8593391716017597e-2,-1.1959670337775296e-2 2.7967564485462032e-2 -1.781730360090364e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9785723423291027,-1.6286178713340136 l -0.15451142247301625,-0.25715019021063373 c -1.097102349199471e-2,6.5920559667652775e-3 -2.1884311198943792e-2,1.327972727478155e-2 -3.273861651093155e-2 2.0062250000509766e-2l 0.1589757792699614,0.2544144288469279 c 9.374172769443979e-3,-5.857633263128913e-3 1.879928487999091e-2,-1.1633349392779328e-2 2.8274259713986394e-2 -1.7326488636803916e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9499999999999996,-1.6454482671904336 l -0.14999999999999997,-0.2598076211353316 c -1.1084399791966843e-2,6.399581203696921e-3 -2.2112741310124917e-2,1.2895770814351833e-2 -3.308376480211918e-2 1.9487826781117858e-2l 0.15451142247301616,0.2571501902106338 c 9.474974833995044e-3,-5.693139244025202e-3 1.8999451599677017e-2,-1.1303484816863534e-2 2.8572342329102968e-2 -1.6830395856420016e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0069126256797394,-1.2434335383311534 l -0.18879611731495116,-0.23314378843709127 c -2.5772608051472974e-2,2.087024649387589e-2 -5.099438580656822e-2,4.241167972755478e-2 -7.563940908713963e-2 6.460215836119584e-2l 0.20073918190765747,0.22294344764321825 c 2.075370381521803e-2,-1.868671884938195e-2 4.199309560898245e-2,-3.682687315142733e-2 6.369634449443332e-2 -5.440181756732282e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.9404564036679566,-1.2944271909999159 l -0.17633557568774189,-0.24270509831248424 c -2.682955189513738e-2,1.9492810459144125e-2 -5.314415558751952e-2,3.968471605027968e-2 -7.891676363899242e-2 6.0554962544155655e-2l 0.18879611731495122,0.23314378843709124 c 2.1703248885450856e-2,-1.7574944415895556e-2 4.386291515272002e-2,-3.457865438737812e-2 6.645622201178308e-2 -5.099365266876266e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.871422456024043,-1.3418729087126786 l -0.16339171050450807,-0.2516011703836272 c -2.7812957801956507e-2,1.806194598587249e-2 -5.51482609320104e-2,3.684897932476155e-2 -8.197781282714771e-2 5.634178978390577e-2l 0.17633557568774194,0.24270509831248424 c 2.2593306859062995e-2,-1.6414998281384603e-2 4.5612509494897854e-2,-3.223565793518591e-2 6.903394764391385e-2 -4.744571771276279e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.7999999999999997,-1.385640646055102 l -0.14999999999999997,-0.2598076211353316 c -2.872013032469546e-2,1.658157497412405e-2 -5.7001208726595254e-2,3.391224210825539e-2 -8.481416652855168e-2 5.197418809412798e-2l 0.16339171050450815,0.2516011703836272 c 2.3421438149015945e-2,-1.5210059777576912e-2 4.723708311903682e-2,-2.9804305785266463e-2 7.142245602404348e-2 -4.376773734242359e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.271591880953947,-0.2702851980630871 l -0.2934442802201417,-6.237350724532778e-2 c -2.3245205339180584e-2,0.10936009293971916 -3.4963838825910754e-2,0.22085544283792746 -3.496383882591084e-2 0.3326587053084148l 0.3,5.551115123125783e-17 c 6.938893903907228e-17,-9.084015075727095e-2 9.521389707968342e-3,-0.1814301225495652 2.8408119046052505e-2 -0.2702851980630871Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.1876090949353808,-0.5287576359985403 l -0.2740636372927802,-0.12202099292274006 c -4.547448366216846e-2,0.10213736257953723 -8.011822360674663e-2,0.20875983067314619 -0.10336342894592744 0.31811992361286523l 0.2934442802201417,6.237350724532788e-2 c 1.8886729338084447e-2,-8.885507551352176e-2 4.703476804305419e-2,-0.17548583083957903 8.398278601856596e-2 -0.25847243793545305Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0517220926874313,-0.764120827980215 l -0.2427050983124842,-0.17633557568774194 c -6.571630883833685e-2,9.045073936518713e-2 -0.12177105756607672,0.18754041216713946 -0.1672455412282454 0.28967777474667655l 0.27406363729278027,0.12202099292274016 c 3.6948017975512074e-2,-8.298660709587392e-2 8.249250131680069e-2,-0.16187196624746017 0.13588700224794936 -0.23536319198167477Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.8698697882665154,-0.9660882731206126 l -0.20073918190765744,-0.2229434476432183 c -8.308601597643352e-2,7.481098480977588e-2 -0.15810191198740553,0.15812457773068675 -0.22381822082574257 0.24857531709587372l 0.2427050983124842,0.17633557568774205 c 5.339450093114887e-2,-7.34912257342144e-2 0.11434491644006364,-0.14118351998245446 0.18185230442091582 -0.20196744514039747Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.6499999999999997,-1.1258330249197703 l -0.14999999999999997,-0.2598076211353316 c -9.68244655254213e-2,5.590163123524381e-2 -0.18752295419773934,0.12179794048149534 -0.270608970174173 0.19660892529127103l 0.2007391819076574,0.22294344764321838 c 6.750738798085237e-2,-6.0783925157942745e-2 0.14119991002711077,-0.1143246764205221 0.21986978826651557 -0.15974475179915779Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.562377635859662,-2.435925161963088 l -6.74853163031594e-2,-0.2923110194355704 c -7.936129947305644e-3,1.8321999654718627e-3 -1.586422762795704e-2,3.69901916454761e-3 -2.3784066633713012e-2 5.6004042851643746e-3l 7.00336091567715e-2,0.2917109761193028 c 7.071284826567832e-3,-1.6976652862649687e-3 1.414994347000658e-2,-3.3644681425826e-3 2.1235773780100928e-2 -5.000360968896778e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5135798004829915,-2.1392138248748886 l -7.003360915677151e-2,-0.29171097611930286 c -7.071284826567948e-3,1.6976652862644849e-3 -1.413512852208133e-2,3.4261768417695564e-3 -2.1191329359405646e-2 5.185485304200519e-3l 7.257656867990019e-2,0.2910887178827988 c 6.209456736845399e-3,-1.5481914469392464e-3 1.2425639188897174e-2,-3.0692816157837097e-3 1.8648369836276976e-2 -4.563227067696463e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.49489231955650265,-2.1436141425275177 l -6.74853163031594e-2,-0.2923110194355704 c -7.085830310094325e-3,1.6358928263141633e-3 -1.4164488953533071e-2,3.3026956826317944e-3 -2.1235773780100903e-2 5.000360968896764e-3l 7.00336091567715e-2,0.2917109761193028 c 6.222730647379693e-3,-1.4939454519131725e-3 1.245195025360579e-2,-2.960731965472688e-3 1.868748092648881e-2 -4.40031765262916e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5197792270443978,-2.4453690018345142 l -6.23735072453277e-2,-0.2934442802201415 c -7.966897534746952e-3,1.6934163471631859e-3 -1.592636821512818e-2,3.4215868376355585e-3 -2.387818473696178e-2 5.184462118842584e-3l 6.49318841814308e-2,0.29288880213597984 c 7.099836180208574e-3,-1.5739957867919876e-3 1.4206506430548955e-2,-3.1170051532851775e-3 2.131980780085868e-2 -4.6289840346809275e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4761671506638258,-2.147851215663854 l -6.493188418143075e-2,-0.29288880213597984 c -7.099836180208681e-3,1.5739957867915006e-3 -1.4192770704310959e-2,3.178963010430892e-3 -2.1278601014405173e-2 4.814855836745541e-3l 6.748531630315942e-2,0.2923110194355704 c 6.235530672882909e-3,-1.439585687156891e-3 1.2477313054092913e-2,-2.851956843959556e-3 1.8725168892676516e-2 -4.237073136336089e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4574057197990701,-2.151924721614373 l -6.23735072453277e-2,-0.2934442802201415 c -7.11330137030978e-3,1.5119788813957018e-3 -1.4219971620650161e-2,3.0549882478888915e-3 -2.1319807800858733e-2 4.628984034680879e-3l 6.49318841814308e-2,0.29288880213597984 c 6.247855838583545e-3,-1.3851162923769493e-3 1.250172565888308e-2,-2.7429645348909563e-3 1.8761430864755638e-2 -4.073505950519196e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.45965160163936813,-1.8435618799243936 l -7.257656867990023e-2,-0.291088717882799 c -1.2418972583807584e-2,3.096397631684452e-3 -2.4810687382105973e-2,6.301112978847559e-3 -3.717372890627658e-2 9.613779971241897e-3l 7.764571353075617e-2,0.2897777478867206 c 1.0677172225420063e-2,-2.860939675249657e-3 2.13791077330414e-2,-5.628648384163248e-3 3.210458405542063e-2 -8.302809975163528e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.427407003253343,-1.8513031230919472 l -6.748531630315943e-2,-0.29231101943557064 c -1.2471120704090026e-2,2.879185078261318e-3 -2.4916878178958504e-2,5.867147088639861e-3 -3.7335850762765875e-2 8.963544720325156e-3l 7.257656867990026e-2,0.29108871788279905 c 1.0725476322379093e-2,-2.6741615910009383e-3 2.14740850506746e-2,-5.254674236327862e-3 3.224459838602506e-2 -7.741243167553591e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3950322125537424,-1.8584804413942309 l -6.2373507245327746e-2,-0.29344428022014174 c -1.2519470000195541e-2,2.6610954971720527e-3 -2.5015479053342508e-2,5.431394008592633e-3 -3.7486599757432335e-2 8.310579086854798e-3l 6.748531630315946e-2,0.29231101943557064 c 1.0770513335350305e-2,-2.4865689312264165e-3 2.156252115397723e-2,-4.879099463816917e-3 3.2374790699600614e-2 -7.177318302283686e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.43412044416732576,-2.46201938253052 l -5.209445330007906e-2,-0.2954423259036622 c -8.021143694250934e-3,1.4143440494360094e-3 -1.6036077960484972e-2,2.863680264375574e-3 -2.4044573910607766e-2 4.347967255109961e-3l 5.467065764764423e-2,0.2949764722691862 c 7.150442812609639e-3,-1.3252562417271317e-3 1.4306634121747173e-2,-2.6193064336374567e-3 2.14683695630426e-2 -3.8821136206339535e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.40091815608272424,-2.1631607966407 l -5.467065764764418e-2,-0.29497647226918616 c -7.15044281260973e-3,1.3252562417266412e-3 -1.4295069060973624e-2,2.681705917663194e-3 -2.1433674710993268e-2 4.069310290726783e-3l 5.7242698612963425e-2,0.29448815503429904 c 6.281972972017286e-3,-1.221091848295959e-3 1.2569244070577515e-2,-2.414767563120125e-3 1.8861633745674025e-2 -3.580993055839643e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3820259908672467,-2.1665770566268576 l -5.209445330007906e-2,-0.2954423259036622 c -7.1617354412954765e-3,1.2628071869964371e-3 -1.431792675043301e-2,2.556857378906763e-3 -2.1468369563042648e-2 3.8821136206338945e-3l 5.467065764764423e-2,0.2949764722691862 c 6.292389675096483e-3,-1.166225492719876e-3 1.2589838027137513e-2,-2.3049896616009623e-3 1.8892165215477486e-2 -3.41625998615791e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3910861626005776,-2.469220851487844 l -4.6930339512069284e-2,-0.2963065021785411 c -8.044605742407928e-3,1.274140378142832e-3 -1.608361370001941e-2,2.583375961774418e-3 -2.4116794297250853e-2 3.92766936213793e-3l 4.9514281758203285e-2,0.29588568046116925 c 7.1724826760995e-3,-1.2002619646102788e-3 1.4350168352538325e-2,-2.3692223071384807e-3 2.1532852051116852e-2 -3.506847644766109e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3631047328934911,-2.169828323381909 l -4.9514281758203306e-2,-0.2958856804611692 c -7.172482676099582e-3,1.2002619646097877e-3 -1.4339694074336244e-2,2.4318141255616535e-3 -2.1501429515631634e-2 3.694621312558583e-3l 5.2094453300079085e-2,0.29544232590366226 c 6.302327188339944e-3,-1.1112703245572974e-3 1.2609473218788206e-2,-2.19503622619494e-3 1.892125797375585e-2 -3.2512667550516627e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3441558230885083,-2.172914349309303 l -4.6930339512069284e-2,-0.2963065021785411 c -7.182683698578507e-3,1.1376253376275285e-3 -1.4360369375017333e-2,2.3065856801557302e-3 -2.153285205111683e-2 3.5068476447660092e-3l 4.9514281758203285e-2,0.29588568046116925 c 6.311784754967561e-3,-1.0562305288570454e-3 1.2628148150233727e-2,-2.0849156302818633e-3 1.894890980498283e-2 -3.0860259273941537e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3625370912154352,-1.8650916485505618 l -5.7242698612963466e-2,-0.2944881550342992 c -1.2564005744460167e-2,2.4421953206157413e-3 -2.510645997047647e-2,4.993986473315296e-3 -3.762592997067183e-2 7.655081970488204e-3l 6.237350724532776e-2,0.2934442802201417 c 1.0812269545623266e-2,-2.298218838467511e-3 2.1644389104455524e-2,-4.5020384703444005e-3 3.249512133830753e-2 -6.6112071563306785e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.32993153756716787,-1.8711347307231954 l -5.209445330007914e-2,-0.29544232590366243 c -1.2604714370864776e-2,2.2225512277066896e-3 -2.518979321669169e-2,4.555057721380352e-3 -3.77537989611517e-2 6.997253041996948e-3l 5.7242698612963425e-2,0.2944881550342992 c 1.0850732233851822e-2,-2.10916868598706e-3 2.1719663964338703e-2,-4.123606112341587e-3 3.260555364826741e-2 -6.043082172633718e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.29722548357643896,-1.8766078471307617 l -4.693033951206932e-2,-0.2963065021785413 c -1.2641583479167409e-2,2.0022301241633417e-3 -2.5265453407874103e-2,4.114741454737639e-3 -3.787016777873873e-2 6.337292682445186e-3l 5.20944533000791e-2,0.29544232590366243 c 1.0885889683928542e-2,-1.9194760602928816e-3 2.178832280417523e-2,-3.743917663970684e-3 3.270605399072894e-2 -5.473116407566314e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3046733585128684,-2.4813653791033055 l -3.6560803021544186e-2,-0.29776384549239643 c -8.084172043873792e-3,9.926115146705792e-4 -1.6163974517977648e-2,2.0204922156508956e-3 -2.423917668173236e-2 3.083612749032902e-3l 3.9157857666015525e-2,0.2974334584121429 c 7.210001931923851e-3,-9.492147619482203e-4 1.4424111283802294e-2,-1.8669653878235024e-3 2.164212203726102e-2 -2.753225668779391e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.2871576228841136,-2.1811786950223833 l -3.9157857666015455e-2,-0.2974334584121429 c -7.210001931923912e-3,9.492147619477324e-4 -1.4415827809208148e-2,1.9298846240396463e-3 -2.161727185003539e-2 2.9419815806005674e-3l 4.175193028801972e-2,0.29708042062247086 c 6.337270755927974e-3,-8.906453217736107e-4 1.26783975279381e-2,-1.753634800414495e-3 1.9023199228031126e-2 -2.5889437909284996e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.26811255549132423,-2.1836015336109087 l -3.6560803021544186e-2,-0.29776384549239643 c -7.218010753458743e-3,8.862602809558744e-4 -1.4432120105337187e-2,1.8040109068311568e-3 -2.1642122037261038e-2 2.753225668779377e-3l 3.9157857666015525e-2,0.2974334584121429 c 6.344801700092989e-3,-8.353089905144339e-4 1.269321792974602e-2,-1.6429295412846824e-3 1.9045067392789702e-2 -2.4228385885258774e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.2613211581691333,-2.4863047384206833 l -3.135853898029598e-2,-0.2983565686104818 c -8.100264244902655e-3,8.513720789103945e-4 -1.6196775117717176e-2,1.7380842319703038e-3 -2.4289301400708983e-2 2.66011113672059e-3l 3.3960964130371994e-2,0.2980715567029761 c 7.2254698955284e-3,-8.232383078127557e-4 1.4454497460541366e-2,-1.6149455873305319e-3 2.1686876250632973e-2 -2.375099229214861e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.24904707028939443,-2.1858580824884926 l -3.3960964130371946e-2,-0.2980715567029761 c -7.225469895528456e-3,8.232383078122602e-4 -1.4447313339643691e-2,1.6779998072075683e-3 -2.1665324093101797e-2 2.564260088163866e-3l 3.6560803021544214e-2,0.2977638454923965 c 6.351849463043134e-3,-7.799090472415423e-4 1.2707071693864543e-2,-1.5320991667094133e-3 1.906548520192953e-2 -2.2565488775842524e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.22996261918883734,-2.1879481698102015 l -3.135853898029598e-2,-0.2983565686104818 c -7.232378790091656e-3,7.601536418842808e-4 -1.4461406355104622e-2,1.551860921402057e-3 -2.1686876250633022e-2 2.375099229214813e-3l 3.3960964130371994e-2,0.2980715567029761 c 6.358413508064992e-3,-7.244497108752251e-4 1.2719957765276403e-2,-1.4211521168508681e-3 1.908445110055701e-2 -2.0900873217090665e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.2644288918241243,-1.8815093306089838 l -4.175193028801963e-2,-0.29708042062247114 c -1.2674601838680521e-2,1.7812991219281317e-3 -2.5333417497196538e-2,3.6731717979874108e-3 -3.797500097636382e-2 5.675401922151609e-3l 4.693033951206926e-2,0.2963065021785414 c 1.091773118655356e-2,-1.729198743596353e-3 2.1850344709817393e-2,-3.363088782011185e-3 3.279659175231418e-2 -4.901483478221835e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.23155175246978005,-1.8858376881185122 l -3.656080302154422e-2,-0.29776384549239665 c -1.2703759391691941e-2,1.559825518724552e-3 -2.5393664782138996e-2,3.2304832575247053e-3 -3.80682666208194e-2 5.011782379453698e-3l 4.175193028801962e-2,0.29708042062247114 c 1.0946247042496712e-2,-1.5383946962114023e-3 2.1905710788791895e-2,-2.9812354706297167e-3 3.2877139354344005e-2 -4.328357509528202e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.19860408020854134,-1.8895916011997196 l -3.1358538980296e-2,-0.29835656861048204 c -1.2729047256528575e-2,1.3378767775575997e-3 -2.544617691079486e-2,2.7868106805673636e-3 -3.81499363024867e-2 4.346636199292778e-3l 3.6560803021544214e-2,0.29776384549239665 c 1.0971428565552045e-2,-1.3471220388992214e-3 2.1954404176054744e-2,-2.5984740460440175e-3 3.2947672261238486e-2 -3.7539130812073718e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4141104721640329,-1.5454813220625092 l -7.764571353075617e-2,-0.2897777478867205 c -3.203314301610983e-2,8.583254802197281e-3 -6.383607375845632e-2,1.800371206742467e-2 -9.537610361761092e-2 2.8251688988438092e-2l 9.270509831248426e-2,0.285316954888546 c 2.6560025144551257e-2,-8.62987530190604e-3 5.334144050652725e-2,-1.6562891946308052e-2 8.031671883588283e-2 -2.3790895990263627e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.3326587053084147,-1.565036161174089 l -6.237350724532775e-2,-0.29344428022014174 c -3.2438455554654314e-2,6.895006578583147e-3 -6.469083012493719e-2,1.4638116642803702e-2 -9.672397314104698e-2 2.322137144500109e-2l 7.764571353075628e-2,0.2897777478867204 c 2.697527832935562e-2,-7.228004043955695e-3 5.413517270433067e-2,-1.374851778224669e-2 8.145176685561845e-2 -1.9554839111579736e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.25029514406436915,-1.5803013449522205 l -4.693033951206922e-2,-0.2963065021785413 c -3.2754856541292905e-2,5.187859621203148e-3 -6.536827342265009e-2,1.1232399157947822e-2 -9.780672897730439e-2 1.812740573653108e-2l 6.237350724532785e-2,0.2934442802201417 c 2.7316594151287833e-2,-5.806321329333269e-3 5.4780524156641246e-2,-1.0896459886591941e-2 8.236356124404577e-2 -1.5265183778131464e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.16724554122824534,-1.5912350325892375 l -3.1358538980296e-2,-0.29835656861048204 c -3.298147874291397e-2,3.4664931012051326e-3 -6.586654682660448e-2,7.795894447754498e-3 -9.862140336789736e-2 1.2983754068957756e-2l 4.693033951206932e-2,0.2963065021785413 c 2.758303708740454e-2,-4.368723891539586e-3 5.5275725999986015e-2,-8.014535551791683e-3 8.304960283612406e-2 -1.093368763701702e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -4.363101609320869e-2,-2.499619237890978 l -5.23572193118504e-3,-0.2999543085469172 c -8.143642259806214e-3,1.4214780439709374e-4 -1.6286625520649523e-2,3.19828331224253e-4 -2.4428717237650895e-2 5.330365063353353e-4l 7.853084492361901e-3,0.299897197492667 c 7.269724747322654e-3,-1.9036444206346629e-4 1.4540245515932753e-2,-3.4900776958771563e-4 2.1811354676474035e-2 -4.7592545208519077e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -5.7589286277320795e-2,-2.1992461149462263 l -7.853084492361922e-3,-0.29989719749266697 c -7.269724747322668e-3,1.9036444206296818e-4 -1.4538584270150798e-2,4.1244818651435647e-4 -2.180637098656946e-2 6.662448911540966e-4l 1.0469849010750237e-2,0.2998172481057286 c 6.395652310448425e-3,-2.2334110008297134e-4 1.279224869053718e-2,-4.187747952001931e-4 1.9189606468181145e-2 -5.862955042156837e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -3.8395294162023655e-2,-2.199664929344061 l -5.23572193118504e-3,-0.2999543085469172 c -7.271109160541263e-3,1.2691768249740515e-4 -1.454162992915136e-2,2.855610100216545e-4 -2.1811354676474014e-2 4.759254520851208e-4l 7.853084492361901e-3,0.299897197492667 c 6.3973577776439364e-3,-1.6752070901585034e-4 1.2795416054020825e-2,-3.071268372371898e-4 1.9193992115297154e-2 -4.1881439783497676e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5308084989341916e-16,-2.5 l 1.8369701987210288e-17,-0.2999999999999998 c -8.144882764901934e-3,-4.987302303733798e-19 -1.6289726762723368e-2,3.5538811742074184e-5 -2.443429939544693e-2 1.0661542032064225e-4l 2.617960649512131e-3,0.29998857691925124 c 7.271939850646036e-3,-6.346125765943577e-5 1.4544121991558032e-2,-9.519233957200245e-5 2.181633874593478e-2 -9.519233957205886e-5Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.9198378096422455e-2,-2.1999162307411773 l -2.6179606495121514e-3,-0.29998857691925124 c -7.271939850646039e-3,6.346125765893752e-5 -1.454356818673261e-2,1.586520869524437e-4 -2.1814677347273867e-2 2.8556976945034643e-4l 5.235721931184994e-3,0.29995430854691724 c 6.398576061276306e-3,-1.116875605981544e-4 1.2797608997032488e-2,-1.9545549037643984e-4 1.9196916065601026e-2 -2.513013971163214e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.3471114790620887e-16,-2.2 l 1.8369701987210288e-17,-0.2999999999999998 c -7.2722167543767275e-3,-4.452948485476606e-19 -1.4544398895288723e-2,3.173108191256624e-5 -2.181633874593476e-2 9.5192339572002e-5l 2.617960649512131e-3,0.29998857691925124 c 6.399307068568512e-3,-5.5845906740303486e-5 1.2798827352571068e-2,-8.376925882336216e-5 1.919837809642261e-2 -8.376925882341846e-5Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -6.63090437347515e-2,-1.898842571336282 l -1.0469849010750236e-2,-0.2998172481057288 c -1.2791365503477922e-2,4.466843262311549e-4 -2.5578589388829388e-2,1.0049865782478865e-3 -3.836021098897416e-2 1.6748429819480048e-3l 1.5700786872883104e-2,0.2995888604263722 c 1.1038673200125033e-2,-5.785123486501023e-4 2.2082184737474024e-2,-1.060682475391825e-3 3.312927312684129e-2 -1.446455302591465e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -3.315957223083844e-2,-1.8997106207971435 l -5.235721931185018e-3,-0.2999543085469174 c -1.2797213032965922e-2,2.2337618439016228e-4 -2.5592233080000384e-2,5.584255758180215e-4 -3.838359858347828e-2 1.0051099020500461e-3l 1.0469849010750263e-2,0.29981724810572874 c 1.104708838936727e-2,-3.8577282720038484e-4 2.2097332975442488e-2,-6.751336652517177e-4 3.314947150391303e-2 -8.680494608613865e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.1634144591899857e-16,-1.9000000000000001 l 1.83697019872103e-17,-0.30000000000000004 c -1.2799162407394694e-2,-4.892818534987681e-16 -2.5598081129057686e-2,1.1169447154817225e-4 -3.839529416202359e-2 3.350706559392046e-4l 5.235721931185044e-3,0.2999543085469174 c 1.1052138528470555e-2,-1.9291579561043703e-4 2.2105750151724956e-2,-2.8937920285700835e-4 3.315957223083853e-2 -2.893792028565434e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 8.72487417562527e-2,-2.4984770675477392 l 1.0469849010750317e-2,-0.2998172481057286 c -8.13992112238925e-3,-2.842523091959643e-4 -1.628104378795657e-2,-5.32986102982125e-4 -2.4423135504958303e-2 -7.461942780921046e-4l -7.853084492361937e-3,0.299897197492667 c 7.269724747322975e-3,1.9036444206248172e-4 1.453858427015094e-2,4.1244818651441095e-4 2.180637098656992e-2 6.662448911536334e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 5.758928627732106e-2,-2.199246114946226 l 7.853084492361957e-3,-0.299897197492667 c -7.269724747322961e-3,-1.9036444206297666e-4 -1.4540245515932897e-2,-3.490077695877678e-4 -2.1811354676474465e-2 -4.759254520846832e-4l -5.235721931185031e-3,0.29995430854691724 c 6.398576061276578e-3,1.1168756059728558e-4 1.2796634337653325e-2,2.512936888191018e-4 1.919399211529754e-2 4.1881439783447716e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 7.677889274550238e-2,-2.198659819442011 l 1.0469849010750317e-2,-0.2998172481057286 c -7.267786716418974e-3,-2.537967046392539e-4 -1.4536646239246939e-2,-4.758804490911831e-4 -2.1806370986569915e-2 -6.662448911536648e-4l -7.853084492361937e-3,0.299897197492667 c 6.397357777644218e-3,1.6752070901498393e-4 1.2793954157732828e-2,3.629544041326817e-4 1.9189606468181533e-2 5.862955042152396e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.13083989060735993,-2.4965738368864345 l 1.570078687288318e-2,-0.29958886042637195 c -8.133720486144566e-3,-4.2627022798781604e-4 -1.6269262216033826e-2,-8.170483200276845e-4 -2.4406392857301853e-2 -1.1723231163946349e-3l -1.3085816209600795e-2,0.2997144664745572 c 7.265295215417881e-3,3.1720963961334855e-4 1.4529171759961865e-2,6.661186503632312e-4 2.179142219401947e-2 1.046717068209413e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 9.596265220373956e-2,-2.197906087480087 l 1.3085816209600842e-2,-0.29971446647455713 c -7.265295215417859e-3,-3.172096396138462e-4 -1.4531939940668799e-2,-6.027168884559478e-4 -2.17997266570875e-2 -8.565135930946943e-4l -1.0469849010750296e-2,0.2998172481057286 c 6.395652310448455e-3,2.2334110008209696e-4 1.2790299668669285e-2,4.7458747906314647e-4 1.9183759458236957e-2 7.53731961923243e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.11513910373447674,-2.1969849764600626 l 1.570078687288318e-2,-0.29958886042637195 c -7.262250434057648e-3,-3.805984178462644e-4 -1.452612697860163e-2,-7.29507428596147e-4 -2.1791422194019514e-2 -1.0467170682094955e-3l -1.3085816209600795e-2,0.2997144664745572 c 6.393459789567736e-3,2.7914448285974676e-4 1.2785671148766442e-2,5.861844123196435e-4 1.917645153073713e-2 9.211110200242345e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 3.315957223083896e-2,-1.8997106207971437 l 5.235721931185098e-3,-0.29995430854691735 c -1.2797213032965904e-2,-2.233761843911424e-4 -2.5596131754628895e-2,-3.3507065593972325e-4 -3.8395294162023585e-2 -3.3507065593934367e-4l -3.469446951953614e-17,0.30000000000000004 c 1.10538220791136e-2,-3.27754316742368e-16 2.2107433702368003e-2,9.646340724617382e-5 3.315957223083852e-2 2.893792028566544e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 6.630904373475212e-2,-1.8988425713362822 l 1.0469849010750334e-2,-0.2998172481057287 c -1.2791365503477887e-2,-4.4668432623213536e-4 -2.5586385550512354e-2,-7.817337176599145e-4 -3.838359858347827e-2 -1.0051099020501873e-3l -5.235721931185089e-3,0.29995430854691746 c 1.1052138528470569e-2,1.9291579560978107e-4 2.2102383114545786e-2,4.822766336610449e-4 3.314947150391302e-2 8.680494608613865e-4Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 9.943831686159355e-2,-1.8973961160336905 l 1.570078687288319e-2,-0.29958886042637217 c -1.2781621600144769e-2,-6.698564037002297e-4 -2.5568845485496237e-2,-1.228158655716882e-3 -3.836021098897415e-2 -1.6748429819481482e-3l -1.0469849010750326e-2,0.2998172481057288 c 1.1047088389367294e-2,3.857728271997299e-4 2.2090599926716286e-2,8.679429539413841e-4 3.312927312684129e-2 1.4464553025915206e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.2178893568691459,-2.4904867452293638 l 2.6146722824297492e-2,-0.2988584094275235 c -8.113889026974144e-3,-7.098733069676293e-4 -1.6230836845921984e-2,-1.3843396593276277e-3 -2.4350611655476972e-2 -2.0233797958705882e-3l -2.3537728718353485e-2,0.2990752001199382 c 7.24979893710267e-3,5.705715504847862e-4 1.4497073775448954e-2,1.1727736508062134e-3 2.1741617549532966e-2 1.80658910345588e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.17261001060125916,-2.1932181342128816 l 2.353772871835351e-2,-0.2990752001199382 c -7.249798937102629e-3,-5.705715504852825e-4 -1.4502052959435612e-2,-1.1095071196526784e-3 -2.175655495929905e-2 -1.6167913167404503e-3l -2.0926942123237577e-2,0.2992692150779471 c 6.383961759879827e-3,4.464100934372395e-4 1.276594529953285e-2,9.20673394304548e-4 1.9145768364183118e-2 1.422776358731559e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.1917426340448484,-2.1916283358018402 l 2.6146722824297492e-2,-0.2988584094275235 c -7.244543774084058e-3,-6.338154526496691e-4 -1.4491818612430343e-2,-1.2360175529710963e-3 -2.1741617549533014e-2 -1.8065891034558823e-3l -2.3537728718353485e-2,0.2990752001199382 c 6.37982306465035e-3,5.021029644266119e-4 1.275742492239508e-2,1.0320408127094678e-3 1.9132623443589007e-2 1.5897984110411767e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.26132115816913365,-2.4863047384206833 l 3.1358538980296016e-2,-0.2983565686104818 c -8.100264244902653e-3,-8.513720789103956e-4 -1.6204204752472688e-2,-1.6673959791445763e-3 -2.4311590092802485e-2 -2.4480483969350495e-3l -2.8753725756067203e-2,0.29861885951015343 c 7.23873691100875e-3,6.970110873129225e-4 1.4474398078481995e-2,1.4256038553791552e-3 2.1706776868573672e-2 2.185757497263463e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.21086065554449285,-2.1898716364077937 l 2.8753725756067182e-2,-0.2986188595101535 c -7.238736911008698e-3,-6.970110873134184e-4 -1.448048065733038e-2,-1.3624338587674156e-3 -2.1725024431414486e-2 -1.996249311416587e-3l -2.6146722824297468e-2,0.29885840942752345 c 6.375198521194013e-3,5.577575983312712e-4 1.2747933017957092e-2,1.1433296372107887e-3 1.9118021499644772e-2 1.7566993940466014e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.22996261918883762,-2.1879481698102015 l 3.1358538980296016e-2,-0.2983565686104818 c -7.2323787900916555e-3,-7.601536418842818e-4 -1.4468039957564901e-2,-1.4887464099505145e-3 -2.170677686857365e-2 -2.185757497263437e-3l -2.8753725756067203e-2,0.29861885951015343 c 6.3700884816877005e-3,6.133697568353719e-4 1.2737470309064155e-2,1.2545313927336567e-3 1.9101963644344837e-2 1.9234665975918497e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.13253730011383807,-1.8953716954936661 l 2.0926942123237598e-2,-0.2992692150779473 c -1.2767984291053898e-2,-8.928244364187109e-4 -2.554351690245427e-2,-1.6742094847498749e-3 -3.832513850259908e-2 -2.3440658884492345e-3l -1.570078687288321e-2,0.2995888604263722 c 1.1038673200125066e-2,5.785123486494472e-4 2.2072087728152664e-2,1.253344890389998e-3 3.3098983252244696e-2 2.0244205400242743e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.16559591122055053,-1.8927699263743167 l 2.6146722824297454e-2,-0.29885840942752373 c -1.275045773026173e-2,-1.115520506164876e-3 -2.5510407516718216e-2,-2.1197503333553846e-3 -3.827839180777218e-2 -3.0125747697732283e-3l -2.092694212323765e-2,0.29926921507794735 c 1.1026895524092055e-2,7.710756496335921e-4 2.204685215784993e-2,1.638365045843577e-3 3.305861110671238e-2 2.6017691193496173e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.1986040802085416,-1.8895916011997194 l 3.1358538980296044e-2,-0.29835656861048204 c -1.2729047256528469e-2,-1.337876777558573e-3 -2.54695274137277e-2,-2.564645485474872e-3 -3.8219985143989506e-2 -3.6801659916388813e-3l -2.6146722824297513e-2,0.29885840942752373 c 1.101175894886247e-2,9.634040735052809e-4 2.201490090280726e-2,2.0228861394329936e-3 3.300816898799097e-2 3.1783251745972074e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -8.373752998871009e-2,-1.5978072556073177 l -1.5700786872883142e-2,-0.29958886042637217 c -3.311770100381496e-2,1.7356251645696862e-3 -6.618428460403454e-2,4.338021732765859e-3 -9.916576334694828e-2 7.804514833971093e-3l 3.135853898029599e-2,0.29835656861048193 c 2.777387683613788e-2,-2.9191520852254607e-3 5.5619420920533326e-2,-5.110643932127502e-3 8.350801123953543e-2 -6.572223018080858e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.0,-1.5999999999999996 v -0.30000000000000004 c -3.3163149948247886e-2,0.0 -6.632061585777829e-2,8.682588017399082e-4 -9.943831686159325e-2 2.6038839663097176e-3l 1.5700786872883107e-2,0.2995888604263721 c 2.788859031900207e-2,-1.4615790859535236e-3 5.581066687439609e-2,-2.1927443926818666e-3 8.373752998871015e-2 -2.1927443926818e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 8.373752998871012e-2,-1.5978072556073182 l 1.5700786872883152e-2,-0.29958886042637217 c -3.311770100381496e-2,-1.7356251645696866e-3 -6.627516691334537e-2,-2.6038839663096846e-3 -9.943831686159327e-2 -2.6038839663095614e-3l -4.163336342344337e-17,0.30000000000000004 c 2.7926863114314016e-2,-1.0321604682062002e-16 5.5848939669708046e-2,7.311653067283157e-4 8.373752998871016e-2 2.192744392681689e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.16724554122824553,-1.5912350325892373 l 3.1358538980296044e-2,-0.29835656861048204 c -3.298147874291375e-2,-3.466493101205114e-3 -6.604806234313333e-2,-6.068889669401376e-3 -9.916576334694831e-2 -7.80451483397094e-3l -1.570078687288319e-2,0.29958886042637217 c 2.7888590319002083e-2,1.4615790859533171e-3 5.573413440339752e-2,3.653070932855433e-3 8.350801123953545e-2 6.572223018080803e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4770224884413623,-2.45406795861916 l 5.724269861296344e-2,-0.29448815503429904 c -7.995238328022108e-3,-1.5541168978306737e-3 -1.5997219726189553e-2,-3.073340534880213e-3 -2.4005715676312555e-2 -4.557627525613505e-3l -5.467065764764427e-2,0.29497647226918616 c 7.150442812609823e-3,1.3252562417261533e-3 1.4295069060973617e-2,2.6817059176632418e-3 2.143367471099339e-2 4.06931029072638e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4009181560827246,-2.1631607966407 l 5.467065764764422e-2,-0.2949764722691863 c -7.150442812609731e-3,-1.3252562417266423e-3 -1.4306634121747167e-2,-2.6193064336375044e-3 -2.146836956304273e-2 -3.8821136206334526e-3l -5.209445330007913e-2,0.2954423259036622 c 6.302327188340099e-3,1.1112703245564342e-3 1.2599775540381043e-2,2.250034493437993e-3 1.8892165215477638e-2 3.4162599861575216e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.41977978982839886,-2.159579803584861 l 5.724269861296344e-2,-0.29448815503429904 c -7.138605650019739e-3,-1.3876043730631014e-3 -1.4283231898383531e-2,-2.7440540490001903e-3 -2.1433674710993354e-2 -4.069310290726344e-3l -5.467065764764427e-2,0.29497647226918616 c 6.292389675096645e-3,1.166225492719015e-3 1.2579660773656784e-2,2.359901207543653e-3 1.8861633745674185e-2 3.580993055839199e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.519779227044398,-2.4453690018345142 l 6.237350724532773e-2,-0.2934442802201415 c -7.966897534746952e-3,-1.693416347163187e-3 -1.5941146084006076e-2,-3.3520624307586773e-3 -2.3922517921574002e-2 -4.975890883666859e-3l -5.981038032515912e-2,0.2939774113862487 c 7.1262248549713615e-3,1.4498468329537336e-3 1.424608963109558e-2,2.930780836163993e-3 2.1359391001405388e-2 4.442759717559641e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4386094557178337,-2.1558343501658257 l 5.98103803251591e-2,-0.2939774113862487 c -7.126224854971264e-3,-1.4498468329542213e-3 -1.4258741951611054e-2,-2.868592694023004e-3 -2.139734760163089e-2 -4.256197067085616e-3l -5.724269861296342e-2,0.29448815503429904 c 6.281972972017454e-3,1.2210918482950985e-3 1.2558588017060472e-2,2.469588206035627e-3 1.882966588943521e-2 3.745453419035316e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.45740571979907035,-2.151924721614373 l 6.237350724532773e-2,-0.2934442802201415 c -7.11330137030978e-3,-1.5119788813957027e-3 -1.4233166146433997e-2,-2.992912884605962e-3 -2.135939100140536e-2 -4.442759717559696e-3l -5.981038032515912e-2,0.2939774113862487 c 6.271077872374799e-3,1.2758652129992857e-3 1.253655887536411e-2,2.579087135824314e-3 1.8796264081236747e-2 3.909628551452493e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.32993153756716753,-1.8711347307231954 l 5.2094453300079085e-2,-0.2954423259036625 c -1.2604714370864608e-2,-2.2225512277076493e-3 -2.5228584299571324e-2,-4.3350625582818615e-3 -3.787016777873871e-2 -6.3372926824453064e-3l -4.69303395120693e-2,0.29630650217854143 c 1.0917731186553653e-2,1.7291987435957023e-3 2.182016430680036e-2,3.5536403472734303e-3 3.270605399072892e-2 5.47311640756637e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.3625370912154349,-1.8650916485505618 l 5.724269861296343e-2,-0.2944881550342992 c -1.2564005744459983e-2,-2.442195320616699e-3 -2.514908459028692e-2,-4.774701814290276e-3 -3.775379896115167e-2 -6.997253041997068e-3l -5.209445330007914e-2,0.2954423259036625 c 1.0885889683928649e-2,1.9194760602922302e-3 2.1754821414415548e-2,3.933913486646683e-3 3.260555364826738e-2 6.0430821726337736e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.39503221255374255,-1.8584804413942309 l 6.237350724532778e-2,-0.29344428022014174 c -1.2519470000195338e-2,-2.6610954971730103e-3 -2.5061924226211663e-2,-5.212886649872483e-3 -3.76259299706718e-2 -7.655081970488327e-3l -5.724269861296348e-2,0.29448815503429926 c 1.085073223385194e-2,2.109168685986411e-3 2.168285179268422e-2,4.312988317863228e-3 3.24951213383075e-2 6.6112071563307895e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6048047389991692,-2.425739315689991 l 7.257656867990026e-2,-0.2910887178827988 c -7.902944937803368e-3,-1.9704254779221385e-3 -1.581444987677821e-2,-3.906358420088412e-3 -2.373428888253444e-2 -5.807743540704096e-3l -7.00336091567716e-2,0.2917109761193028 c 7.071284826568063e-3,1.6976652862640026e-3 1.4135128522081316e-2,3.4261768417696045e-3 2.119132935940579e-2 5.185485304200044e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5135798004829919,-2.1392138248748886 l 7.003360915677156e-2,-0.2917109761193028 c -7.071284826567948e-3,-1.6976652862644868e-3 -1.4149943470006573e-2,-3.3644681425826495e-3 -2.1235773780101004e-2 -5.000360968896329e-3l -6.74853163031595e-2,0.29231101943557036 c 6.235530672883103e-3,1.4395856871560386e-3 1.2464750279109092e-2,2.906372200716022e-3 1.868748092648894e-2 4.400317652628771e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.532228170319269,-2.1346505978071924 l 7.257656867990026e-2,-0.2910887178827988 c -7.056200837324436e-3,-1.7593084624304809e-3 -1.4120044532837689e-2,-3.487820017936083e-3 -2.119132935940575e-2 -5.185485304200085e-3l -7.00336091567716e-2,0.2917109761193028 c 6.2227306473798955e-3,1.4939454519123224e-3 1.2438913099431558e-2,3.015035620757252e-3 1.86483698362771e-2 4.563227067696074e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6470476127563024,-2.4148145657226703 l 7.764571353075624e-2,-0.2897777478867203 c -7.867352614715491e-3,-2.1080507796838992e-3 -1.574386590462588e-2,-4.181763669611747e-3 -2.3629314934622146e-2 -6.221079449310306e-3l -7.511400121633247e-2,0.29044429211343215 c 7.040579491068096e-3,1.8208176604451423e-3 1.40731806427738e-2,3.6723470264521493e-3 2.1097602620198372e-2 5.554535222598467e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5508360089197715,-2.129924808831837 l 7.511400121633242e-2,-0.29044429211343215 c -7.040579491067969e-3,-1.8208176604456229e-3 -1.4089070299609655e-2,-3.6109062822915097e-3 -2.1145271136934214e-2 -5.370214744721509e-3l -7.257656867990035e-2,0.2910887178827988 c 6.209456736845612e-3,1.5481914469384003e-3 1.2412128648362298e-2,3.1234694341627806e-3 1.8607838600502143e-2 4.725788975354861e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5694018992255462,-2.12503681783595 l 7.764571353075624e-2,-0.2897777478867203 c -7.024421977424546e-3,-1.8821881961463387e-3 -1.4057023129130252e-2,-3.7337175621533457e-3 -2.1097602620198348e-2 -5.554535222598488e-3l -7.511400121633247e-2,0.29044429211343215 c 6.195709952139925e-3,1.6023195411917254e-3 1.2384398965640947e-2,3.2316653832778915e-3 1.8565890305774574e-2 4.887990995886604e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4274070032533437,-1.851303123091947 l 6.748531630315954e-2,-0.2923110194355706 c -1.2471120704090054e-2,-2.8791850782623326e-3 -2.4967129757236906e-2,-5.649483589682804e-3 -3.7486599757432675e-2 -8.310579086855025e-3l -6.237350724532777e-2,0.2934442802201418 c 1.0812269545623615e-2,2.2982188384669173e-3 2.160427736425044e-2,4.690749371057325e-3 3.23747906996009e-2 7.177318302283797e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.45965160163936897,-1.8435618799243934 l 7.257656867990038e-2,-0.29108871788279894 c -1.2418972583807595e-2,-3.096397631685469e-3 -2.486473005867596e-2,-6.084359642063902e-3 -3.733585076276621e-2 -8.963544720325393e-3l -6.748531630315947e-2,0.29231101943557064 c 1.0770513335350666e-2,2.4865689312258328e-3 2.1519122063646076e-2,5.067081576552663e-3 3.22445983860253e-2 7.741243167553702e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.49175618569478985,-1.8352590699492297 l 7.76457135307563e-2,-0.2897777478867205 c -1.236304152417082e-2,-3.312666992394516e-3 -2.4754756322469096e-2,-6.517382339557513e-3 -3.71737289062769e-2 -9.613779971242143e-3l -7.257656867990031e-2,0.291088717882799 c 1.0725476322379465e-2,2.6741615910003624e-3 2.1427411830000704e-2,5.44187029991386e-3 3.21045840554209e-2 8.302809975163639e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7309292618068425,-2.3907618899075884 l 8.771151141682104e-2,-0.28689142678891044 c -7.788990124837389e-3,-2.3813332587413133e-3 -1.5588333719503703e-2,-4.728669248394849e-3 -2.3397808052679967e-2 -7.041940934441075e-3l -8.520460341117678e-2,0.2876459204604577 c 6.972744940335952e-3,2.0654211482555584e-3 1.3936444578430875e-2,4.161256853303358e-3 2.08909000470357e-2 6.287447262893764e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6248337583486302,-2.1094034167100246 l 8.52046034111768e-2,-0.2876459204604577 c -6.9727449403358035e-3,-2.065421148256032e-3 -1.3954468806765338e-2,-4.100408078210334e-3 -2.094497221730899e-2 -6.104902675314421e-3l -8.269120674509974e-2,0.2883785087814955 c 6.151643001278416e-3,1.7639552454515974e-3 1.2295560003736404e-2,3.5547437438113827e-3 1.8431575551231913e-2 5.372314354276653e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6432177503900214,-2.103870463118678 l 8.771151141682104e-2,-0.28689142678891044 c -6.954455468604812e-3,-2.1261904095904584e-3 -1.3918155106699736e-2,-4.222026114638258e-3 -2.089090004703569e-2 -6.287447262893817e-3l -8.520460341117678e-2,0.2876459204604577 c 6.136015547495638e-3,1.8175706104648917e-3 1.2264071229019171e-2,3.6619060309069553e-3 1.838399204139142e-2 5.532953591346534e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7725424859373686,-2.3776412907378837 l 9.270509831248418e-2,-0.2853169548885459 c -7.746243828020072e-3,-2.516907191546307e-3 -1.5503432883143809e-2,-5.000002984917231e-3 -2.327134563788804e-2 -7.44921646860511e-3l -9.021173985128193e-2,0.2861150852244679 c 6.935636388164493e-3,2.18679775329275e-3 1.3861698044524973e-2,4.403847568802504e-3 2.077798717668579e-2 6.6510861326831705e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.661552758909401,-2.098177291646099 l 9.021173985128189e-2,-0.28611508522446794 c -6.93563638816434e-3,-2.1867977532932245e-3 -1.3880781485236294e-2,-4.343322627431267e-3 -2.083523695384098e-2 -6.469513037021164e-3l -8.771151141682103e-2,0.28689142678891044 c 6.119920812372122e-3,1.871047560439109e-3 1.223164849779544e-2,3.7687894496805873e-3 1.8335008519380122e-2 5.69317147257864e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6798373876248844,-2.0923243358493377 l 9.270509831248418e-2,-0.2853169548885459 c -6.916289132160779e-3,-2.247238563880632e-3 -1.3842350788521258e-2,-4.464288379390385e-3 -2.0777987176685754e-2 -6.651086132683135e-3l -9.021173985128193e-2,0.2861150852244679 c 6.103360021584754e-3,1.9243820228976203e-3 1.2198294279181976e-2,3.8753858605462036e-3 1.8284628715483517e-2 5.85295579676115e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5237109760522987,-1.826397222282806 l 8.269120674509979e-2,-0.2883785087814957 c -1.2303344562322063e-2,-3.5279272826470812e-3 -2.4637242047681585e-2,-6.948419779255155e-3 -3.700028357185238e-2 -1.0261086771648765e-2l -7.764571353075632e-2,0.28977774788672056 c 1.0677172225420237e-2,2.8609396752490254e-3 2.132917459913982e-2,5.81500137686509e-3 3.195479035750891e-2 8.861847666423894e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5555062389732,-1.8169790363297675 l 8.771151141682104e-2,-0.28689142678891066 c -1.2239899882534697e-2,-3.7421129320736207e-3 -2.451222303030014e-2,-7.377340662977218e-3 -3.6815567592622445e-2 -1.0905267945623463e-2l -8.269120674509985e-2,0.2883785087814957 c 1.0625615758369265e-2,3.046846289558121e-3 2.122444029507578e-2,6.186361148065772e-3 3.179526292090125e-2 9.41818595303845e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5871322893124002,-1.8070073809607918 l 9.270509831248425e-2,-0.2853169548885461 c -1.2172726810672536e-2,-3.955158697650389e-3 -2.437973735232843e-2,-7.804014337267433e-3 -3.661963723486338e-2 -1.1546127269340224e-2l -8.771151141682111e-2,0.28689142678891066 c 1.0570822625825642e-2,3.231824804971955e-3 2.1113240820892092e-2,6.555836493732129e-3 3.162605033920025e-2 9.971655368975652e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.25029514406436926,-1.58030134495222 l 4.693033951206924e-2,-0.29630650217854126 c -3.275485654129269e-2,-5.1878596212031145e-3 -6.563992462498326e-2,-9.51726096775258e-3 -9.862140336789703e-2 -1.2983754068957572e-2l -3.135853898029607e-2,0.298356568610482 c 2.777387683613791e-2,2.919152085225255e-3 5.5466565748719464e-2,6.564963745477437e-3 8.304960283612386e-2 1.0933687637016853e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.33265870530841485,-1.5650361611740888 l 6.2373507245327794e-2,-0.29344428022014163 c -3.2438455554654105e-2,-6.895006578583104e-3 -6.505187243601136e-2,-1.2939546115327888e-2 -9.780672897730407e-2 -1.8127405736530884e-2l -4.6930339512069305e-2,0.2963065021785413 c 2.7583037087404394e-2,4.368723891539367e-3 5.504696709275788e-2,9.458862448798129e-3 8.236356124404558e-2 1.5265183778131186e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.41411047216403324,-1.5454813220625092 l 7.764571353075624e-2,-0.2897777478867205 c -3.203314301610962e-2,-8.583254802197229e-3 -6.428551758639257e-2,-1.63263648664179e-2 -9.67239731410467e-2 -2.322137144500089e-2l -6.2373507245327864e-2,0.29344428022014174 c 2.7316594151287697e-2,5.806321329333044e-3 5.447648852626282e-2,1.2326835067624133e-2 8.145176685561833e-2 1.955483911157968e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.49442719099991594,-1.5216904260722457 l 9.270509831248425e-2,-0.2853169548885461 c -3.1540029859154446e-2,-1.0247976921013258e-2 -6.3342960601501e-2,-1.9668434186240768e-2 -9.537610361761066e-2 -2.8251688988437884e-2l -7.76457135307563e-2,0.2897777478867205 c 2.6975278329355503e-2,7.2280040439554665e-3 5.375669369133156e-2,1.516102068835758e-2 8.031671883588272e-2 2.379089599026346e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9768278212231849,-2.3012621336311008 l 0.11721933854678211,-0.27615145603573193 c -7.497404115893662e-3,-3.182459234143098e-3 -1.5008658666518267e-2,-6.33218967208638e-3 -2.2533549147715617e-2 -9.44910136476993e-3l -0.11480502970952688,0.27716385975338587 c 6.718652215354777e-3,2.782956868467455e-3 1.3425129492698175e-2,5.59521618805967e-3 2.011924031046039e-2 8.43669764711602e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8419035512031979,-2.032534971524831 l 0.1148050297095269,-0.27716385975338587 c -6.718652215354587e-3,-2.782956868467912e-3 -1.3449415411376111e-2,-5.536584793812706e-3 -2.0192097372944758e-2 -8.260805138751545e-3l -0.11238197802477355,0.27815515637003607 c 5.933560126180406e-3,2.397313903546178e-3 1.1856631738679348e-2,4.820506477849597e-3 1.7769045688191418e-2 7.269508522101342e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8596084826764028,-2.025110677595369 l 0.11721933854678211,-0.27615145603573193 c -6.694110817762199e-3,-2.841481459056338e-3 -1.3400588095105595e-2,-5.6537407786485545e-3 -2.0119240310460373e-2 -8.43669764711601e-3l -0.11480502970952688,0.27716385975338587 c 5.912413949512204e-3,2.449002044251361e-3 1.1814113953574394e-2,4.923790245492511e-3 1.770493147320515e-2 7.424293929462089e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0168416076895008,-2.283863644106502 l 0.12202099292274005,-0.2740636372927801 c -7.4407206529076685e-3,-3.312822274042156e-3 -1.4895860827311916e-2,-6.5931624600551395e-3 -2.2365207621551225e-2 -9.84092687906456e-3l -0.1196247206775738,0.27511802231553706 c 6.66905963771367e-3,2.899789659829841e-3 1.3325434793431748e-2,5.828664825912861e-3 1.9968935376384986e-2 8.786541856307617e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8772479516355421,-2.0175321636472736 l 0.11962472067757385,-0.27511802231553706 c -6.669059637713466e-3,-2.8997896598302974e-3 -1.3350740272169018e-2,-5.770466209234701e-3 -2.004485108993115e-2 -8.611947668290468e-3l -0.11721933854678208,0.27615145603573193 c 5.890817519630674e-3,2.5005036839690744e-3 1.177069647795156e-2,5.02669904744495e-3 1.7639468959139384e-2 7.578513948095611e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8948206147667609,-2.0098000068137223 l 0.12202099292274005,-0.2740636372927801 c -6.643500582953276e-3,-2.9578770303947824e-3 -1.3299875738671354e-2,-5.886752196477803e-3 -1.9968935376385024e-2 -8.786541856307645e-3l -0.1196247206775738,0.27511802231553706 c 5.86877248118803e-3,2.5518149006502604e-3 1.172638261821994e-2,5.1292250468033184e-3 1.7572663131218788e-2 7.732156833550663e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7117525274902332,-1.7616493236768962 l 0.11238197802477368,-0.2781551563700363 c -1.1867176736114352e-2,-4.794650628011585e-3 -2.3775969016243098e-2,-9.485648659076612e-3 -3.572501651534572e-2 -1.4072458246911584e-2l -0.10751038486359016,0.2800741279491606 c 1.0319631931043176e-2,3.961335553130203e-3 2.0604497991154366e-2,8.012652034504544e-3 3.0853423354162204e-2 1.2153486667787317e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7423891441296204,-1.7489592215596368 l 0.1172193385467822,-0.2761514560357322 c -1.1781691116132646e-2,-5.00103117115927e-3 -2.3606800425280957e-2,-9.899151823552797e-3 -3.547397716139563e-2 -1.4693802451563579e-2l -0.11238197802477368,0.27815515637003624 c 1.024892536300813e-2,4.140834633282036e-3 2.0461519766363487e-2,8.371029742167356e-3 3.0636616639387104e-2 1.2690102117259572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7727996218440207,-1.7357363695209418 l 0.12202099292274013,-0.2740636372927803 c -1.169261667890516e-2,-5.205888351766144e-3 -2.343044097422506e-2,-1.0309639610488293e-2 -3.521213209035804e-2 -1.5310670781646763e-2l -0.1172193385467822,0.2761514560357321 c 1.017509687302394e-2,4.319072375091405e-3 2.0312308764436578e-2,8.726857553078716e-3 3.04104777144001e-2 1.3222852038694999e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0959278669726942,-2.2469851157479175 l 0.1315113440367232,-0.2696382138897499 c -7.320572136898555e-3,-3.5704815981126544e-3 -1.465668861983486e-2,-7.109004129449448e-3 -2.200813994619039e-2 -1.0615466541941858e-2l -0.1291533290424885,0.270775585304958 c 6.563795827103152e-3,3.1307700111539386e-3 1.3113899829724853e-2,6.290165128418934e-3 1.9650124951955672e-2 9.478095126733754e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9471244129782498,-1.9856876255696934 l 0.12915332904248852,-0.270775585304958 c -6.563795827102938e-3,-3.1307700111543866e-3 -1.3141220995479062e-2,-6.232885113237323e-3 -1.9732087668989293e-2 -9.306256716973159e-3l -0.12678547852220978,0.2718923361109948 c 5.799962672689003e-3,2.704567011287535e-3 1.1588096820859994e-2,5.434428301120521e-3 1.736423714871055e-2 8.189505910936368e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9644165229359709,-1.9773469018581673 l 0.1315113440367232,-0.2696382138897499 c -6.536225122230854e-3,-3.18792999831487e-3 -1.3086329124852554e-2,-6.347325115579864e-3 -1.9650124951955707e-2 -9.478095126733803e-3l -0.1291533290424885,0.270775585304958 c 5.776140327850774e-3,2.7550776098154662e-3 1.1540231850157873e-2,5.535345313008662e-3 1.7292109957720986e-2 8.340723711525722e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.134976249348867,-2.2275163104709197 l 0.13619714992186396,-0.2673019572565102 c -7.257143682277015e-3,-3.6976993967578506e-3 -1.4530387105735315e-2,-7.363715880505361e-3 -2.1819522563266414e-2 -1.099794475823988e-2l -0.1338593439329426,0.26848030848060733 c 6.50815665850991e-3,3.2448472122629623e-3 1.3002124000883394e-2,6.5180762156089546e-3 1.9481716574345054e-2 9.819593534142745e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9816351888415795,-1.968855595524455 l 0.13385934393294258,-0.26848030848060733 c -6.508156658509686e-3,-3.2448472122634073e-3 -1.3030440679597407e-2,-6.461281744540184e-3 -1.956666580182848e-2 -9.649211742854604e-3l -0.1315113440367232,0.26963821388974996 c 5.751878107563345e-3,2.8053783985166913e-3 1.149148804612054e-2,5.635840786920254e-3 1.721866590560911e-2 8.491306333711979e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.998779099427003,-1.9602143532144094 l 0.13619714992186396,-0.2673019572565102 c -6.479592573461621e-3,-3.301517318533795e-3 -1.2973559915835105e-2,-6.574746321879788e-3 -1.9481716574345016e-2 -9.819593534142749e-3l -0.1338593439329426,0.26848030848060733 c 5.7271778594887215e-3,2.855465546791407e-3 1.1441869120777388e-2,5.73590706973588e-3 1.7143910585423652e-2 8.641242310045594e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8029746973073291,-1.7219847953696348 l 0.1267854785222099,-0.271892336110995 c -1.1599980557368359e-2,-5.4091597683504945e-3 -2.3246944383872637e-2,-1.0716986981326707e-2 -3.4939561062778145e-2 -1.5922875333092057e-2l -0.12202099292274016,0.27406363729278027 c 1.0098168949963852e-2,4.495994485615529e-3 2.0156910436490275e-2,9.080027078640439e-3 3.0175075463308415e-2 1.3751574151306789e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8329051788992473,-1.7077086879684173 l 0.13151134403672327,-0.2696382138897501 c -1.150381096938225e-2,-5.610783502469701e-3 -2.305636654906268e-2,-1.112106985411283e-2 -3.46563471064314e-2 -1.6530229622462537e-2l -0.12678547852220992,0.27189233611099506 c 1.0018165026818444e-2,4.671547072665656e-3 1.999537211836063e-2,9.430430739993813e-3 2.993048159191805e-2 1.4276107401217597e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.862581949505139,-1.6929123959578989 l 0.13619714992186407,-0.2673019572565104 c -1.1404137209134945e-2,-5.8106981375811734e-3 -2.2858765521649838e-2,-1.1521765141289166e-2 -3.4362576491032464e-2 -1.7132548643758086e-2l -0.13151134403672332,0.2696382138897501 c 9.935109473557725e-3,4.845676661223158e-3 1.9827743016184222e-2,9.77796180078915e-3 2.9676770605891717e-2 1.4796292010518353e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.2120240506158428,-2.1865492678484895 l 0.14544288607390105,-0.26238591214181856 c -7.123674978523527e-3,-3.948717520203201e-3 -1.4264545608418715e-2,-7.866333300634654e-3 -2.1422407962840593e-2 -1.1752735463194785e-2l -0.14314762807788245,0.26364513379858945 c 6.3909485307338185e-3,3.4700019308572597e-3 1.2766725878854523e-2,6.967873163385343e-3 1.9127149966821994e-2 1.0493513806423882e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0497492725711386,-1.933397647856324 l 0.14314762807788245,-0.26364513379858945 c -6.390948530733581e-3,-3.4700019308576916e-3 -1.279700740626874e-2,-6.9121015278092125e-3 -1.9217993684294523e-2 -1.0326200492403896e-2l -0.14084146883576715,0.26488427785767793 c 5.650467924662689e-3,3.0044070888433213e-3 1.128779973513363e-2,6.033454734160661e-3 1.6911834442179224e-2 9.087056433315421e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0665811645419416,-1.9241633557066709 l 0.14544288607390105,-0.26238591214181856 c -6.360424087967435e-3,-3.5256406430385725e-3 -1.2736201436088139e-2,-7.023511875566655e-3 -1.912714996682196e-2 -1.0493513806423915e-2l -0.14314762807788245,0.26364513379858945 c 5.624034707045761e-3,3.053601699154389e-3 1.1234718773391982e-2,6.131728383779103e-3 1.683189197080337e-2 9.234292149653045e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.2500000000000002,-2.1650635094610964 l 0.14999999999999994,-0.2598076211353314 c -7.053675385251112e-3,-4.072441382450967e-3 -1.4125086603096719e-2,-8.114085867572736e-3 -2.121403171029211e-2 -1.2124818035290632e-2l -0.1477270680310401,0.26110670878196973 c 6.329415274281601e-3,3.5810108640338366e-3 1.2643175290215178e-2,7.1896220114639866e-3 1.8941099741332262e-2 1.082573038865231e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0833318322276282,-1.9147825310677793 l 0.1477270680310401,-0.2611067087819697 c -6.329415274281355e-3,-3.58101086403427e-3 -1.2674425554857845e-2,-7.13438735570207e-3 -1.9034849642825265e-2 -1.0660027998740067e-2l -0.1454428860739011,0.26238591214181856 c 5.5971731974113325e-3,3.1025637658734376e-3 1.1180782244318644e-2,6.229535078541102e-3 1.6750667685686255e-2 9.380824638891172e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.1000000000000003,-1.905255888325765 l 0.14999999999999994,-0.2598076211353314 c -6.2979244511170655e-3,-3.636108377188364e-3 -1.2611684467050643e-2,-7.244719524618515e-3 -1.894109974133224e-2 -1.0825730388652352e-2l -0.1477270680310401,0.26110670878196973 c 5.56988544136781e-3,3.151289560349777e-3 1.1125994255389357e-2,6.326867370088309e-3 1.66681677723724e-2 9.526642742014035e-3Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8919959692931928,-1.677600426431961 l 0.14084146883576731,-0.26488427785767815 c -1.1300989638219383e-2,-6.0088427777504425e-3 -2.2654201492821272e-2,-1.1918950787189625e-2 -3.405833870195661e-2 -1.7729648924770025e-2l -0.1361971499218641,0.26730195725651046 c 9.849027589707796e-3,5.018330209728527e-3 1.9654074191409424e-2,1.012251439969873e-2 2.94140197880534e-2 1.5311969525937719e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9211382784680406,-1.661777443564852 l 0.14544288607390116,-0.2623859121418188 c -1.1194399676384872e-2,-6.205157066200642e-3 -2.2442736774761815e-2,-1.2312505805218834e-2 -3.374372641298161e-2 -1.8321348582968508e-2l -0.1408414688357673,0.2648842778576781 c 9.759945596644367e-3,5.189455126238356e-3 1.947441854524263e-2,1.0463983582663155e-2 2.914230917484774e-2 1.5822982867109203e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.9500000000000003,-1.6454482671904334 l 0.15000000000000005,-0.2598076211353316 c -1.1084399791966352e-2,-6.39958120369777e-3 -2.2224435781673088e-2,-1.270231031470585e-2 -3.3418835458058384e-2 -1.890746738090573e-2l -0.14544288607390116,0.2623859121418188 c 9.667890629605482e-3,5.358999284445352e-3 1.9288830802534025e-2,1.080226533486142e-2 2.8861721531959483e-2 1.6329176374418553e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5733887192724806,-1.4937286823955225 l 0.10751038486359013,-0.28007412794916053 c -3.0960467672675917e-2,-1.188461004741693e-2 -6.222678496451592e-2,-2.295659369509525e-2 -9.37668148236704e-2 -3.320457061610839e-2l -9.270509831248425e-2,0.285316954888546 c 2.6560025144551143e-2,8.629875301905806e-3 5.288955549557431e-2,1.7953651005213865e-2 7.896152827256452e-2 2.7961743676722883e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6507786289212806,-1.4616727322281613 l 0.12202099292274009,-0.27406363729278027 c -3.0296044996342312e-2,-1.3488668283769748e-2 -6.094005003527391e-2,-2.6181830776324733e-2 -9.190051770794988e-2 -3.806644082374155e-2l -0.1075103848635901,0.28007412794916053 c 2.6071972776990287e-2,1.0008092671508899e-2 5.187745070451163e-2,2.0697071612607837e-2 7.73899096487999e-2 3.205595016736129e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.7263847995832751,-1.4256104387013884 l 0.13619714992186407,-0.26730195725651035 c -2.9548582966526005e-2,-1.5055755017942589e-2 -5.948628266477615e-2,-2.9335305279273055e-2 -8.978232766111853e-2 -4.28239735630427e-2l -0.1220209929227401,0.27406363729278027 c 2.551245894428831e-2,1.135887855475338e-2 5.0723153427025276e-2,2.338376298534746e-2 7.560617066199456e-2 3.606229352677276e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8000000000000003,-1.3856406460551018 l 0.15000000000000005,-0.2598076211353316 c -2.8720130324695267e-2,-1.658157497412395e-2 -5.786946752833505e-2,-3.240837374952296e-2 -8.741805049486112e-2 -4.746412876746545e-2l -0.13619714992186407,0.2673019572565104 c 2.488301723496932e-2,1.2678530541425249e-2 4.942982751171861e-2,2.600636108912968e-2 7.361520041672515e-2 3.996979264628664e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4017220926874315,-1.2363734711837 l -9.270509831248422e-2,-0.28531695488854625 c -0.10633122131561436,3.4549108129943516e-2 -0.20874834347466265,8.014814878190028e-2 -0.3055728090000841 0.1360497800171439l 0.15,0.25980762113533173 c 7.866987823940494e-2,-4.542007537863542e-2 0.16188378999363165,-8.246929590835031e-2 0.2482779073125683 -0.11054044626392939Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.13588700224794914,-1.2928784639787556 l -3.1358538980295975e-2,-0.2983565686104821 c -0.11119079250050562,1.1686623214350308e-2 -0.22085042845605585,3.4995498387048365e-2 -0.3271816497716703 6.954460651699162e-2l 9.270509831248419e-2,0.2853169548885462 c 8.639411731893673e-2,-2.80711503555789e-2 0.17549257153282127,-4.7009611433396055e-2 0.26583509043948206 -5.650499279505572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.1358870022479498,-1.2928784639787554 l 3.135853898029611e-2,-0.2983565686104821 c -0.11119079250050566,-1.1686623214350003e-2 -0.22330028995598541,-1.1686623214350017e-2 -0.33449108245649106 2.7755575615628914e-17l 3.1358538980296016e-2,0.29835656861048204 c 9.034251890666084e-2,-9.495381361659422e-3 0.1814314855892381,-9.495381361659387e-3 0.27177400449589895 5.551115123125783e-17Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.40172209268743186,-1.2363734711836996 l 9.270509831248427e-2,-0.28531695488854614 c -0.10633122131561444,-3.4549108129943204e-2 -0.21599085727116463,-5.7857983302641317e-2 -0.32718164977167025 -6.954460651699156e-2l -3.1358538980296065e-2,0.298356568610482 c 9.034251890666081e-2,9.495381361659585e-3 0.17944097312054533,2.843384243947679e-2 0.26583509043948206 5.650499279505572e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.6500000000000001,-1.12583302491977 l 0.15000000000000005,-0.2598076211353316 c -9.682446552542147e-2,-5.590163123524353e-2 -0.1992415876844697,-0.10150067188720034 -0.30557280900008404 -0.1360497800171438l -9.270509831248425e-2,0.2853169548885461 c 8.639411731893666e-2,2.8071150355579055e-2 0.16960802907316333,6.512037088529396e-2 0.24827790731256824 0.11054044626392934Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.828384254047926,-1.7049959001562462 l 0.219406110485751,-0.20459950801874943 c -5.554796688564427e-3,-5.956790159365213e-3 -1.1135558379562243e-2,-1.1889314554955939e-2 -1.6742125699272088e-2 -1.7797403767515114e-2l -0.21761231130368616,0.20650637270812605 c 5.005863678312363e-3,5.275079654070694e-3 9.98868661670327e-3,1.0571976435848129e-2 1.4948326517207233e-2 1.5890539078138505e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5958236162270327,-1.5143800665262588 l 0.2176123113036862,-0.20650637270812608 c -5.005863678312e-3,-5.275079654071038e-3 -1.003472044387104e-2,-1.0528291964995641e-2 -1.5086426684091355e-2 -1.5759486913108044e-2l -0.21580194010159523,0.20839751113769903 c 4.445501491393878e-3,4.603451554338913e-3 8.870895445085831e-3,9.226278387952565e-3 1.3276055482000393e-2 1.3868348483535103e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.608978143562175,-1.5003963921374968 l 0.219406110485751,-0.20459950801874943 c -4.959639900503953e-3,-5.318562642290369e-3 -9.942462838894859e-3,-1.0615459424067802e-2 -1.4948326517207223e-2 -1.5890539078138498e-2l -0.21761231130368616,0.20650637270812605 c 4.40516003691488e-3,4.64207009558221e-3 8.790044222698879e-3,9.303339263546354e-3 1.3154527335142385e-2 1.3983674388761885e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8578620636934855,-1.6728265158971456 l 0.22294344764321813,-0.20073918190765735 c -5.449990343200644e-3,-6.052827480856884e-3 -1.0926365230210948e-2,-1.2081846045508247e-2 -1.642896826835667e-2 -1.808688351904545e-2l -0.2211832010430371,0.20267706228469792 c 4.9130384269158245e-3,5.361640601372502e-3 9.80265886174645e-3,1.074469289123979e-2 1.4668721668175622e-2 1.6149003142004875e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6220101409822731,-1.4862984567544528 l 0.22118320104303707,-0.20267706228469798 c -4.913038426915457e-3,-5.361640601372839e-3 -9.84944807687969e-3,-1.0701818474805396e-2 -1.4809087977384009e-2 -1.602038111709543e-2l -0.21940611048575104,0.2045995080187494 c 4.3644831124438005e-3,4.680335125215228e-3 8.708523604412327e-3,9.37969165383588e-3 1.3031997420097974e-2 1.4097935383044019e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6349186160502676,-1.4720873339894882 l 0.22294344764321813,-0.20073918190765735 c -4.866062806429147e-3,-5.404310250765076e-3 -9.755683241259775e-3,-1.0787362540632364e-2 -1.4668721668175599e-2 -1.6149003142004868e-2l -0.2211832010430371,0.20267706228469792 c 4.3234738156859255e-3,4.718243729207802e-3 8.626339798336878e-3,9.455329744291016e-3 1.2908475067994557e-2 1.4211122764964307e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.3667456206434372,-1.319850903872095 l 0.21580194010159537,-0.20839751113769922 c -8.891045301160591e-3,-9.2069469306377e-3 -1.7862267602850864e-2,-1.8336129068834067e-2 -2.6912642134627945e-2 -2.7386503600610606e-2l -0.21213203435596428,0.21213203435596428 c 7.816232550171116e-3,7.81623255017065e-3 1.556410635617635e-2,1.5700526214976602e-2 2.324273638899685e-2 2.3651980382345533e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.389572033076424,-1.2957968841187475 l 0.2194061104857512,-0.20459950801874957 c -8.729007772016491e-3,-9.360714804273468e-3 -1.7539537515981335e-2,-1.864507594166032e-2 -2.643058281714255e-2 -2.7852022872297415e-2l -0.2158019401015954,0.20839751113769922 c 7.67863003282105e-3,7.951454167368399e-3 1.5287723902608866e-2,1.596976605874795e-2 2.2826412432986748e-2 2.4054019753347755e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4119751684070492,-1.2713481520818308 l 0.2229434476432183,-0.2007391819076575 c -8.564311302545237e-3,-9.511631313500576e-3 -1.721146471607512e-2,-1.894834334373584e-2 -2.5940472488092243e-2 -2.8309058148008714e-2l -0.21940611048575118,0.20459950801874957 c 7.538688530378427e-3,8.0842536945993e-3 1.500668466024514e-2,1.623414135707521e-2 2.240313533062513e-2 2.4448732036916637e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.915111107797445,-1.6069690242163484 l 0.22981333293569325,-0.1928362829059617 c -5.235429723628406e-3,-6.2393421819086645e-3 -1.0498058837507871e-2,-1.2455810758659949e-2 -1.578773705305201e-2 -1.8649228202203893e-2l -0.22812178968000915,0.19483441449905498 c 4.722926978164409e-3,5.5298370031642355e-3 9.421702972699647e-3,1.1080255375263597e-2 1.40961937973679e-2 1.66510966091106e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6728931243200682,-1.4287857063264042 l 0.22812178968000912,-0.194834414499055 c -4.722926978164029e-3,-5.529837003164559e-3 -9.469959980662199e-3,-1.1039039996824526e-2 -1.4240963443147472e-2 -1.652745165080887e-2l -0.22641287406683147,0.19681770869715207 c 4.19848304698704e-3,4.829802255506223e-3 8.375872089185433e-3,9.677900889926993e-3 1.2532047829969806e-2 1.4544157452711814e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6852977748617517,-1.4141327413103868 l 0.22981333293569325,-0.1928362829059617 c -4.67449082466822e-3,-5.570841233847022e-3 -9.373266819203457e-3,-1.1121259605946385e-2 -1.4096193797367866e-2 -1.665109660911062e-2l -0.22812178968000915,0.19483441449905498 c 4.156175740784681e-3,4.8662565627845275e-3 8.29109861597569e-3,9.750624730231966e-3 1.240465054168377e-2 1.4652965016017344e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9428649036424273,-1.5733009776245939 l 0.23314378843709113,-0.18879611731495113 c -5.125740806663167e-3,-6.329762747284025e-3 -1.0279076060432407e-2,-1.2637130067985034e-2 -1.5459858593902693e-2 -1.8921921838193956e-2l -0.23148737501631586,0.19082346608332906 c 4.62569869059847e-3,5.611421223400822e-3 9.226890881463863e-3,1.1242999188312439e-2 1.3803445173127427e-2 1.6894573069816038e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6975740834529842,-1.3993720846110809 l 0.23148737501631586,-0.19082346608332906 c -4.625698690598086e-3,-5.611421223401138e-3 -9.275859847186355e-3,-1.1202632288091543e-2 -1.3950350671854956e-2 -1.6773473521938243e-2l -0.22981333293569328,0.1928362829059617 c 4.113551925708369e-3,4.902340285785098e-3 8.205693743506045e-3,9.822606022712654e-3 1.2276308591232382e-2 1.4760656699305624e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7097211152053362,-1.3845048603096426 l 0.23314378843709113,-0.18879611731495113 c -4.576554291663542e-3,-5.651573881503593e-3 -9.177746482528936e-3,-1.128315184641521e-2 -1.3803445173127406e-2 -1.689457306981603e-2l -0.23148737501631586,0.19082346608332906 c 4.070614847726654e-3,4.938050676592724e-3 8.1196639756882e-3,9.893839285714946e-3 1.2147031752352128e-2 1.4867224301438109e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4339482024232668,-1.2465121550819642 l 0.22641287406683164,-0.1968177086971522 c -8.397006060886881e-3,-9.65965048768835e-3 -1.687814913728519e-2,-1.9245838896872133e-2 -2.5442460439831067e-2 -2.8757470210372123e-2l -0.22294344764321833,0.2007391819076575 c 7.396450670380532e-3,8.2145906798409e-3 1.4721074236360886e-2,1.649357157868144e-2 2.1973034016217752e-2 2.4835996999866827e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4554844419260582,-1.221296458404425 l 0.22981333293569345,-0.19283628290596183 c -8.227143009838756e-3,-9.804727238762438e-3 -1.6539692310765734e-2,-1.9537471981041814e-2 -2.4936698371653267e-2 -2.919712246872959e-2l -0.22641287406683164,0.1968177086971522 c 7.251959779857416e-3,8.342425421184897e-3 1.4430979630657988e-2,1.6747977698607995e-2 2.153623950279146e-2 2.52156966775392e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4765773267682447,-1.1957087429946913 l 0.2331437884370913,-0.18879611731495127 c -8.054773891331708e-3,-9.946817374939073e-3 -1.6196197333744826e-2,-1.9823153761982328e-2 -2.4423340343584243e-2 -2.96278810007442e-2l -0.22981333293569345,0.19283628290596183 c 7.105259872134042e-3,8.46771897893071e-3 1.4136489208763552e-2,1.6997282222286247e-2 2.1092884842186382e-2 2.5587715409733647e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.996588775118232,-1.5045375578801208 l 0.2395906530141877,-0.18054450694561439 c -4.901712809730176e-3,-6.50479260122286e-3 -9.831784845891011e-3,-1.2988166450867259e-2 -1.4790075316961655e-2 -1.9449936398682383e-2l -0.2380060020873704,0.18262842870261609 c 4.4270450634559325e-3,5.769437453406362e-3 8.828895095742393e-3,1.1558164104874574e-2 1.3205424390144382e-2 1.7366014641680694e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7453773486407174,-1.3392751438191854 l 0.23800600208737038,-0.18262842870261609 c -4.427045063455537e-3,-5.769437453406662e-3 -8.879243015395211e-3,-1.1519530787336371e-2 -1.3356466711283148e-2 -1.7250115792343902e-2l -0.23640322608201644,0.18469844259769738 c 3.9399568523813865e-3,5.042914804406627e-3 7.8578910500883e-3,1.0102996938264773e-2 1.1753690705929215e-2 1.5180101897262599e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7569981221040443,-1.3239930509345064 l 0.2395906530141877,-0.18054450694561439 c -4.3765292944019435e-3,-5.807850536806125e-3 -8.778379326688405e-3,-1.1596577188274339e-2 -1.3205424390144336e-2 -1.73660146416807e-2l -0.2380060020873704,0.18262842870261609 c 3.8957996558412204e-3,5.077104958997598e-3 7.7694276842533065e-3,1.0171184412289626e-2 1.1620773463327044e-2 1.5282092884678994e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0225424859373686,-1.469463130731183 l 0.2427050983124841,-0.17633557568774183 c -4.7874419708604996e-3,-6.589348573997274e-3 -9.603612657662039e-3,-1.3157776595341612e-2 -1.4448374521644424e-2 -1.9705096484830632e-2l -0.24115705818516503,0.17844683602540226 c 4.32568023569856e-3,5.8458213299009115e-3 8.625832634628506e-3,1.1710489206101212e-2 1.2900334394325363e-2 1.7593836147170194e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7684850933578784,-1.3086101308529507 l 0.24115705818516509,-0.1784468360254023 c -4.32568023569816e-3,-5.845821329901205e-3 -8.676847130408994e-3,-1.1672740464961449e-2 -1.3053376424811334e-2 -1.7480591001767277e-2l -0.2395906530141877,0.18054450694561436 c 3.851345779074061e-3,5.1109084723891295e-3 7.6803726464195945e-3,1.0238597311242142e-2 1.1486971253833939e-2 1.5382920081555201e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7798373876248845,-1.293127555043441 l 0.2427050983124841,-0.17633557568774183 c -4.274501759696875e-3,-5.883346941068995e-3 -8.574654158626821e-3,-1.1748014817269297e-2 -1.290033439432538e-2 -1.7593836147170208e-2l -0.24115705818516503,0.17844683602540226 c 3.8065986074147327e-3,5.144322770312802e-3 7.590732718473086e-3,1.0305230501369066e-2 1.1352294267006319e-2 1.5482575809509763e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.497220431852772,-1.1697568031187509 l 0.23640322608201664,-0.18469844259769752 c -7.879951210669013e-3,-1.0085877614186318e-2 -1.584776883811997e-2,-2.010279721825574e-2 -2.390254272945235e-2 -3.0049614593194263e-2l -0.23314378843709133,0.18879611731495125 c 6.9563956334234185e-3,8.590433187446912e-3 1.383769267531288e-2,1.7241409209143233e-2 2.0643105084527047e-2 2.595193987594055e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5174074690898565,-1.143448543988892 l 0.23959065301418792,-0.1805445069456145 c -7.70272822053275e-3,-1.0221865597408192e-2 -1.549451295858624e-2,-2.03763171677563e-2 -2.3374464169255937e-2 -3.0462194781942085e-2l -0.23640322608201664,0.1846984425976975 c 6.805412409214737e-3,8.710530666796815e-3 1.3534681046624572e-2,1.7480284295733818e-2 2.018703723708465e-2 2.6308259129859096e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5371322893124002,-1.116791979355699 l 0.24270509831248427,-0.17633557568774197 c -7.5231589047625065e-3,-1.035473990134766e-2 -1.5136537300306608e-2,-2.0643630293657744e-2 -2.283926552084005e-2 -3.0865495891065416e-2l -0.2395906530141879,0.1805445069456145 c 6.652356190460698e-3,8.827974834124808e-3 1.322754662297606e-2,1.771383471839261e-2 1.9724820222543654e-2 2.665656463319288e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.131370849898476,-1.1313708498984758 l 0.21213203435596428,-0.21213203435596423 c -2.3449888213912386e-2,-2.3449888213912386e-2 -4.75097088920383e-2,-4.628180551896792e-2 -7.215473217260972e-2 -6.847228415260866e-2l -0.20073918190765747,0.22294344764321827 c 2.0753703815218037e-2,1.868671884938169e-2 4.101460543890301e-2,3.791359657995476e-2 6.0761879724302886e-2 5.7660870865354596e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.1890317207638308,-1.070608970174173 l 0.22294344764321827,-0.20073918190765747 c -2.2190478633640848e-2,-2.4645023280571336e-2 -4.502239593869631e-2,-4.8704843958697314e-2 -6.847228415260878e-2 -7.21547321726096e-2l -0.21213203435596426,0.21213203435596428 c 1.974727428539998e-2,1.974727428539983e-2 3.897415201597299e-2,4.000817590908486e-2 5.766087086535476e-2 6.07618797243028e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.2434335383311537,-1.0069126256797398 l 0.2331437884370913,-0.18879611731495125 c -2.0870246493875762e-2,-2.5772608051472804e-2 -4.241167972755473e-2,-5.099438580656813e-2 -6.460215836119568e-2 -7.563940908713938e-2l -0.2229434476432183,0.2007391819076575 c 1.8686718849381848e-2,2.07537038152179e-2 3.682687315142729e-2,4.199309560898237e-2 5.440181756732268e-2 6.369634449443312e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.294427190999916,-0.940456403667957 l 0.24270509831248427,-0.17633557568774197 c -1.9492810459144007e-2,-2.6829551895137208e-2 -3.968471605027963e-2,-5.314415558751943e-2 -6.055496254415549e-2 -7.891676363899215e-2l -0.2331437884370913,0.18879611731495127 c 1.7574944415895462e-2,2.1703248885450718e-2 3.457865438737808e-2,4.386291515271995e-2 5.099365266876252e-2 6.645622201178286e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1429182517552805,-1.2875951872751357 l 0.2571501902106335,-0.1545114224730162 c -4.194924739603172e-3,-6.981527174126147e-3 -8.420292220014948e-3,-1.3944717277194318e-2 -1.2675981774456354e-2 -2.0889371456504824e-2l -0.2557920493062275,0.15674956941478455 c 3.7997228164655407e-3,6.200584088670096e-3 7.572372352547484e-3,1.2417718109266679e-2 1.131784087005036e-2 1.865122451473647e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.875808361579003,-1.1494968423750878 l 0.2557920493062275,-0.1567495694147846 c -3.799722816465116e-3,-6.200584088670356e-3 -7.626482742341655e-3,-1.2384559219754255e-2 -1.1480170494165777e-2 -1.8551748793140036e-2l -0.2544144288469276,0.15897577926996134 c 3.3912452216052287e-3,5.42712682457949e-3 6.758793956376583e-3,1.0869024939933322e-2 1.0102550034865876e-2 1.632553893796329e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.885768061544647,-1.1330837648021195 l 0.2571501902106335,-0.1545114224730162 c -3.7454685175028323e-3,-6.233506405469775e-3 -7.518118053584776e-3,-1.2450640426066356e-2 -1.1317840870050317e-2 -1.8651224514736452e-2l -0.2557920493062275,0.15674956941478455 c 3.343756078489676e-3,5.4565139980296854e-3 6.663687670241786e-3,1.0927591936154678e-2 9.959699965644303e-3 1.6413077572968088e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1650635094610964,-1.25 l 0.2598076211353314,-0.1499999999999999 c -4.072441382450967e-3,-7.053675385251112e-3 -8.175640895150634e-3,-1.4089547791354642e-2 -1.2309481360156298e-2 -2.1107416289971467e-2l -0.2584887481324576,0.15226150888821113 c 3.6909289866122e-3,6.265954016622164e-3 7.354499980094046e-3,1.2547982950643174e-2 1.0990608357282494e-2 1.884590740176026e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8955841529713566,-1.1165843985135495 l 0.25848874813245754,-0.1522615088882112 c -3.6909289866117697e-3,-6.265954016622417e-3 -7.409180831030539e-3,-1.2515773467905401e-2 -1.11546493485338e-2 -1.8749279873374918e-2l -0.25715019021063357,0.15451142247301616 c 3.2960122954028698e-3,5.485485636813179e-3 6.568073918491388e-3,1.0985326753942204e-2 9.816091426709833e-3 1.6499366288569933e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.905255888325765,-1.1 l 0.2598076211353314,-0.1499999999999999 c -3.6361083771883638e-3,-6.2979244511170655e-3 -7.29967937067021e-3,-1.2579953385138076e-2 -1.099060835728241e-2 -1.8845907401760238e-2l -0.2584887481324576,0.15226150888821113 c 3.2480175082187364e-3,5.5140395346275056e-3 6.471959982482761e-3,1.1042224996565994e-2 9.6717353544086e-3 1.658439851354901e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6112913826972093,-1.0068466020430895 l 0.25441442884692783,-0.15897577926996154 c -6.782522725727545e-3,-1.0854305311988333e-2 -1.3659638601639797e-2,-2.1649214914573434e-2 -2.063056206420424e-2 -3.238349572000876e-2l -0.2516011703836272,0.16339171050450818 c 6.020342990396566e-3,9.270515241057781e-3 1.1959670337775327e-2,1.8593391716017645e-2 1.781730360090364e-2 2.7967564485462115e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6286178713340134,-0.9785723423291031 l 0.25715019021063373,-0.15451142247301627 c -6.592055966765344e-3,-1.0971023491994818e-2 -1.3279727274781588e-2,-2.1884311198943844e-2 -2.0062250000509867e-2 -3.273861651093171e-2l -0.2544144288469278,0.1589757792699615 c 5.85763326312897e-3,9.374172769444071e-3 1.1633349392779359e-2,1.8799284879990958e-2 1.7326488636803916e-2 2.8274259713986477e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6454482671904334,-0.9500000000000001 l 0.2598076211353316,-0.15000000000000002 c -6.399581203696987e-3,-1.108439979196695e-2 -1.2895770814351872e-2,-2.211274131012497e-2 -1.948782678111796e-2 -3.308376480211934e-2l -0.2571501902106337,0.1545114224730163 c 5.693139244025258e-3,9.474974833995137e-3 1.1303484816863565e-2,1.8999451599677065e-2 1.6830395856420016e-2 2.857234232910305e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.2073689821473175,-1.173678906964727 l 0.26488427785767793,-0.14084146883576715 c -3.8237908403463785e-3,-7.191504631388324e-3 -7.678942388931621e-3,-1.4366290571988134e-2 -1.1565344551492572e-2 -2.1524152926409194e-2l -0.26364513379858945,0.14314762807788245 c 3.4700019308579926e-3,6.390948530733088e-3 6.912101527809102e-3,1.2797007406268634e-2 1.032620049240407e-2 1.9217993684293888e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9333976478563242,-1.0497492725711386 l 0.26364513379858945,-0.14314762807788245 c -3.4700019308575533e-3,-6.390948530733325e-3 -6.967873163385228e-3,-1.276672587885442e-2 -1.0493513806424097e-2 -1.912714996682136e-2l -0.26238591214181856,0.14544288607390105 c 3.102563765874205e-3,5.5971731974109075e-3 6.180690450498559e-3,1.1207857263757472e-2 9.234292149653212e-3 1.683189197080276e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9424847042896396,-1.0328374381289598 l 0.26488427785767793,-0.14084146883576715 c -3.414098964594981e-3,-6.4209862780252895e-3 -6.856198561546091e-3,-1.2827045153560835e-2 -1.0326200492404083e-2 -1.9217993684293923e-2l -0.26364513379858945,0.14314762807788245 c 3.0536016991550338e-3,5.624034707045118e-3 6.082649344472011e-3,1.1261366517516398e-2 9.087056433315588e-3 1.6911834442178614e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.2275163104709197,-1.1349762493488669 l 0.26730195725651024,-0.13619714992186394 c -3.697699396757923e-3,-7.257143682277158e-3 -7.427046506753579e-3,-1.449811853992952e-2 -1.1187934828409544e-2 -2.1722717787364013e-2l -0.26610324995346635,0.1385245839705101 c 3.3579360014785397e-3,6.4505350423522245e-3 6.687710206831805e-3,1.2915691165256118e-2 9.98922752536563e-3 1.939528373871785e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.951423832992088,-1.0158469491170747 l 0.2661032499534664,-0.13852458397051007 c -3.357936001478099e-3,-6.450535042352451e-3 -6.744001833641673e-3,-1.2886387599116948e-2 -1.0158100798237158e-2 -1.9307373877142132e-2l -0.26488427785767793,0.14084146883576715 c 3.0044070888440282e-3,5.650467924662163e-3 5.984145021147974e-3,1.131401817461492e-2 8.939128702448673e-3 1.6990489011885046e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9602143532144096,-0.9987790994270029 l 0.26730195725651024,-0.13619714992186394 c -3.30151731853386e-3,-6.479592573461749e-3 -6.631291523887125e-3,-1.2944748696365645e-2 -9.989227525365664e-3 -1.9395283738717867e-2l -0.26610324995346635,0.1385245839705101 c 2.9549836813011154e-3,5.676470837269958e-3 5.885184982011989e-3,1.1365808225425385e-2 8.790520222321796e-3 1.7067849690071718e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.661777443564852,-0.9211382784680404 l 0.2623859121418188,-0.14544288607390116 c -6.205157066199848e-3,-1.1194399676385459e-2 -1.2507886177207968e-2,-2.2334435666092098e-2 -1.8907467380905707e-2 -3.341883545805862e-2l -0.2598076211353316,0.15000000000000005 c 5.526911039557139e-3,9.572890729425633e-3 1.0970177089973242e-2,1.9193830902354093e-2 1.6329176374418553e-2 2.8861721531959733e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6776004264319613,-0.8919959692931926 l 0.26488427785767815,-0.14084146883576726 c -6.0088427777496385e-3,-1.1300989638219953e-2 -1.2116191516767872e-2,-2.25493267365968e-2 -1.832134858296848e-2 -3.3743726412981845e-2l -0.2623859121418188,0.14544288607390116 c 5.3589992844459795e-3,9.667890629605264e-3 1.0633527740870816e-2,1.9382363578203447e-2 1.5822982867109092e-2 2.9142309174847947e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.692912395957899,-0.8625819495051389 l 0.2673019572565104,-0.13619714992186405 c -5.810698137580359e-3,-1.1404137209135502e-2 -1.1720806147019584e-2,-2.2757349063737296e-2 -1.772964892476999e-2 -3.405833870195685e-2l -0.26488427785767815,0.14084146883576726 c 5.189455126238986e-3,9.759945596644158e-3 1.0293639316209226e-2,1.9564992198345708e-2 1.5311969525937746e-2 2.9414019788053636e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.2657694675916247,-1.0565456543517486 l 0.27189233611099484,-0.12678547852220975 c -3.4421761961846375e-3,-7.381770674331223e-3 -6.916545110516974e-3,-1.4748486862912743e-2 -1.0423007523010388e-2 -2.2099938189267795e-2l -0.27077558530495804,0.12915332904248844 c 3.130770011154835e-3,6.563795827102726e-3 6.232885113237278e-3,1.3141220995479083e-2 9.306256716973604e-3 1.9732087668989096e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9856876255696936,-0.9471244129782493 l 0.27077558530495804,-0.12915332904248844 c -3.130770011154385e-3,-6.563795827102939e-3 -6.290165128418888e-3,-1.3113899829724879e-2 -9.478095126734204e-3 -1.9650124951955516e-2l -0.26963821388974996,0.13151134403672313 c 2.8053783985174784e-3,5.7518781075629605e-3 5.585646101710241e-3,1.1515969629870268e-2 8.34072371152611e-3 1.729210995772082e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.99387713148063,-0.9297601758295388 l 0.27189233611099484,-0.12678547852220975 c -3.0733716037362837e-3,-6.590866673510021e-3 -6.175486705818727e-3,-1.3168291841886379e-2 -9.306256716973563e-3 -1.9732087668989103e-2l -0.27077558530495804,0.12915332904248844 c 2.755077609816255e-3,5.776140327850399e-3 5.484938899648805e-3,1.1564274476021595e-2 8.189505910936756e-3 1.736423714871041e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.283863644106502,-1.0168416076895004 l 0.2740636372927801,-0.12202099292273998 c -3.3128222740422195e-3,-7.440720652907816e-3 -6.658095100129147e-3,-1.4866950953338245e-2 -1.0035722944961818e-2 -2.227847882522878e-2l -0.2729883812629628,0.12440797279687164 c 3.0157391471720267e-3,6.617435599902261e-3 6.002589884749641e-3,1.3247998368143717e-2 8.960466915144516e-3 1.989149895109711e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0019147959283954,-0.9123251338437259 l 0.27298838126296276,-0.12440797279687163 c -3.0157391471715743e-3,-6.617435599902468e-3 -6.06033799599658e-3,-1.3221681037641073e-2 -9.133709599733373e-3 -1.9812547711151013e-2l -0.27189233611099484,0.12678547852220978 c 2.704567011288379e-3,5.799962672688748e-3 5.383813998254384e-3,1.1611698657898722e-2 8.037664447765436e-3 1.743504198581286e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0098000068137223,-0.8948206147667604 l 0.2740636372927801,-0.12202099292273998 c -2.957877030394839e-3,-6.643500582953408e-3 -5.944727767972453e-3,-1.3274063351194864e-2 -8.96046691514448e-3 -1.9891498951097125e-2l -0.2729883812629628,0.12440797279687164 c 2.6538504495113835e-3,5.82334332791399e-3 5.282279098579684e-3,1.1658238563966472e-2 7.885210885327176e-3 1.7504519076965444e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7077086879684176,-0.832905178899247 l 0.2696382138897502,-0.1315113440367232 c -5.610783502468876e-3,-1.150381096938279e-2 -1.1321850506176916e-2,-2.295843928189759e-2 -1.7132548643758048e-2 -3.436257649103271e-2l -0.2673019572565104,0.13619714992186405 c 5.018330209729159e-3,9.8490275897076e-3 9.950615349295195e-3,1.974166113233402e-2 1.4796292010518297e-2 2.9676770605891883e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7219847953696352,-0.8029746973073288 l 0.27189233611099506,-0.12678547852220984 c -5.40915976834966e-3,-1.1599980557368886e-2 -1.091944611999284e-2,-2.3152536137049224e-2 -1.6530229622462495e-2 -3.4656347106431645e-2l -0.2696382138897501,0.13151134403672324 c 4.845676661223793e-3,9.935109473557545e-3 9.604560328551994e-3,1.991231656509965e-2 1.4276107401217542e-2 2.9930481591918245e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.7357363695209418,-0.7727996218440203 l 0.2740636372927803,-0.12202099292274006 c -5.205888351765299e-3,-1.1692616678905672e-2 -1.0513715564741562e-2,-2.3339580505409855e-2 -1.592287533309201e-2 -3.493956106277839e-2l -0.271892336110995,0.12678547852220984 c 4.671547072666295e-3,1.0018165026818274e-2 9.25557966569125e-3,2.0076906513344615e-2 1.3751574151306678e-2 3.017507546330861e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.3418729087126782,-0.8714224560240431 l 0.25160117038362717,-0.1633917105045081 c -1.8061945985872373e-2,-2.7812957801956317e-2 -3.684897932476149e-2,-5.514826093201029e-2 -5.634178978390559e-2 -8.197781282714742e-2l -0.24270509831248419,0.17633557568774194 c 1.6414998281384503e-2,2.259330685906284e-2 3.223565793518587e-2,4.561250949489777e-2 4.74457177127626e-2 6.903394764391357e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.3856406460551016,-0.7999999999999998 l 0.25980762113533157,-0.15 c -1.6581574974123943e-2,-2.8720130324695267e-2 -3.3912242108255344e-2,-5.700120872659514e-2 -5.197418809412782e-2 -8.48141665285514e-2l -0.25160117038362717,0.16339171050450813 c 1.521005977757682e-2,2.3421438149015785e-2 2.9804305785266418e-2,4.723708311903674e-2 4.3767737342423424e-2 7.142245602404326e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4256104387013886,-0.7263847995832747 l 0.2673019572565104,-0.13619714992186402 c -1.5055755017942585e-2,-2.954858296652601e-2 -3.088255379334151e-2,-5.869792017016584e-2 -4.7464128767465565e-2 -8.741805049486104e-2l -0.2598076211353316,0.15000000000000002 c 1.3963431557157093e-2,2.4185372905006483e-2 2.7291262104861453e-2,4.873218318175582e-2 3.996979264628678e-2 7.361520041672504e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.4616727322281615,-0.6507786289212802 l 0.2740636372927803,-0.12202099292274006 c -1.3488668283769744e-2,-3.0296044996342322e-2 -2.7768218545100126e-2,-6.0233744694592514e-2 -4.282397356304282e-2 -8.978232766111846e-2l -0.2673019572565104,0.13619714992186405 c 1.2678530541425426e-2,2.4883017234969218e-2 2.470341497201943e-2,5.009371171770623e-2 3.60622935267729e-2 7.560617066199449e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.363796438998292,-0.8139203861428917 l 0.2836555726797949,-9.767044633714696e-2 c -2.6517144500390524e-3,-7.701137950293578e-3 -5.337018885408074e-3,-1.5390668940241842e-2 -8.055836619987813e-3 -2.306837337451988e-2l -0.28279244732765335,0.10014205777013123 c 2.4275158344461965e-3,6.855093244891104e-3 4.825109080311394e-3,1.372074591448777e-2 7.1927112678462635e-3 2.0596761941535605e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0738112804027926,-0.7343750903142963 l 0.28279244732765335,-0.10014205777013124 c -2.4275158344457272e-3,-6.855093244891268e-3 -4.8849311490475e-3,-1.3699561808901107e-2 -7.3721757656752505e-3 -2.0533210229744466e-2l -0.28190778623577234,0.10260604299770057 c 2.1887752626324206e-3,6.013610610342156e-3 4.3513007394819815e-3,1.2036742946670814e-2 6.487514673794215e-3 1.8069225002175143e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.080140866318497,-0.7162499398057448 l 0.2836555726797949,-9.767044633714696e-2 c -2.3676021875348686e-3,-6.876016027047838e-3 -4.7651954334000666e-3,-1.3741668696644503e-2 -7.192711267846263e-3 -2.0596761941535608e-2l -0.28279244732765335,0.10014205777013123 c 2.136213934312653e-3,6.032482055504172e-3 4.246095990674027e-3,1.2074256404749238e-2 6.329585915704705e-3 1.8125150508551333e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.3776412907378837,-0.7725424859373685 l 0.2853169548885459,-9.270509831248416e-2 c -2.516907191546307e-3,-7.746243828020072e-3 -5.067601821894605e-3,-1.5481468689567424e-2 -7.652011049072099e-3 -2.3205453684405023e-2l -0.2844970965618596,9.519139692152759e-2 c 2.3075082385513347e-3,6.896415173962144e-3 4.584914158505172e-3,1.380286594320085e-2 6.832152722385798e-3 2.0719155075361595e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0863120414536382,-0.6980702440912027 l 0.2844970965618596,-9.519139692152757e-2 c -2.3075082385508616e-3,-6.8964151739623015e-3 -4.645096829671162e-3,-1.3782729103113582e-2 -7.012699017206479e-3 -2.065874513016119e-2l -0.2836555726797949,9.767044633714694e-2 c 2.083489925031078e-3,6.050894103801896e-3 4.1405678852169435e-3,1.211085036145502e-2 6.17117513514176e-3 1.8179695714541824e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.0923243358493377,-0.6798373876248843 l 0.2853169548885459,-9.270509831248416e-2 c -2.2472385638806314e-3,-6.916289132160779e-3 -4.5246444838344686e-3,-1.3822739901399487e-2 -6.832152722385803e-3 -2.071915507536163e-2l -0.2844970965618596,9.519139692152759e-2 c 2.0306072499251746e-3,6.068845353086687e-3 4.034724459484552e-3,1.214652203001675e-2 6.012294395699502e-3 1.8232856466318198e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.785415979493226,-0.6498382723187707 l 0.28190778623577256,-0.10260604299770062 c -4.3775713610252065e-3,-1.2027278466469423e-2 -8.860017847318819e-3,-2.401612618408696e-2 -1.344682743515452e-2 -3.5965173683189376e-2l -0.28007412794916053,0.10751038486359012 c 3.961335553130834e-3,1.0319631931042992e-2 7.832539336748044e-3,2.067363677807632e-2 1.161316914854249e-2 3.106083181729989e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.796485293638702,-0.6185794934685976 l 0.283655572679795,-9.767044633714701e-2 c -4.166999683572467e-3,-1.2101845808304373e-2 -8.439529228472438e-3,-2.41670970442574e-2 -1.281710058949846e-2 -3.619437551072653e-2l -0.28190778623577256,0.10260604299770064 c 3.7806298117952016e-3,1.0387195039223335e-2 7.470541691481541e-3,2.080718474300095e-2 1.1069314145476017e-2 3.1258778850172905e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8070073809607918,-0.5871322893124001 l 0.2853169548885461,-9.270509831248423e-2 c -3.955158697649479e-3,-1.21727268106729e-2 -8.016469847267511e-3,-2.431070637255623e-2 -1.2183469530840799e-2 -3.641255218086032e-2l -0.2836555726797951,9.767044633714703e-2 c 3.598772453995113e-3,1.0451594107171712e-2 7.10626844684705e-3,2.0934394637889136e-2 1.0522087322089813e-2 3.1447204156197534e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4031542398457972,-0.6890933895424979 l 0.2883785087814955,-8.26912067450997e-2 c -2.2450339487570404e-3,-7.829363819808494e-3 -4.524219310305306e-3,-1.564889455020986e-2 -6.837490996352525e-3 -2.345836888338557e-2l -0.2876459204604577,8.520460341117675e-2 c 2.0654211482564453e-3,6.972744940335453e-3 4.100408078210254e-3,1.3954468806765246e-2 6.104902675314716e-3 2.094497221730851e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.109403416710025,-0.6248337583486298 l 0.2876459204604578,-8.520460341117672e-2 c -2.0654211482559674e-3,-6.972744940335594e-3 -4.1612568533032765e-3,-1.393644457843078e-2 -6.287447262894145e-3 -2.089090004703524e-2l -0.2868914267889105,8.771151141682099e-2 c 1.8710475604399644e-3,6.119920812371924e-3 3.715382980881596e-3,1.224797649389569e-2 5.5329535913468675e-3 1.8383992041390976e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.114775731064302,-0.6064021827973982 l 0.2883785087814955,-8.26912067450997e-2 c -2.0044945971045003e-3,-6.9905034105432985e-3 -4.0394815270583095e-3,-1.397222727697309e-2 -6.104902675314754e-3 -2.0944972217308545e-2l -0.2876459204604577,8.520460341117675e-2 c 1.817570610465672e-3,6.136015547495199e-3 3.608359108825024e-3,1.2279932549953418e-2 5.372314354276986e-3 1.8431575551231483e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4148145657226707,-0.6470476127563018 l 0.28977774788672034,-7.764571353075618e-2 c -2.108050779683918e-3,-7.86735261471557e-3 -4.250419381806345e-3,-1.57254696619876e-2 -6.427044625247079e-3 -2.357412673206108e-2l -0.28908913596258673,8.017151282347701e-2 c 1.9434153959292265e-3,7.007729526851323e-3 3.856244504967108e-3,1.4023905461915637e-2 5.738432701113461e-3 2.104832743934025e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.119986997058971,-0.5879244273721651 l 0.28908913596258673,-8.017151282347702e-2 c -1.9434153959287475e-3,-7.0077295268514556e-3 -3.917398578655569e-3,-1.4006945936312585e-2 -5.921893175760548e-3 -2.0997449346855747e-2l -0.28837850878149546,8.269120674509971e-2 c 1.7639552454523813e-3,6.151643001277983e-3 3.501060446251984e-3,1.2310953441603777e-2 5.211265994669256e-3 1.847775542523307e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1250368178359507,-0.5694018992255456 l 0.28977774788672034,-7.764571353075618e-2 c -1.8821881961463556e-3,-7.0244219774246155e-3 -3.795017305184237e-3,-1.4040597912488928e-2 -5.738432701113464e-3 -2.104832743934025e-2l -0.28908913596258673,8.017151282347701e-2 c 1.7102055484177195e-3,6.166801983629165e-3 3.3934951643710552e-3,1.2341036806485762e-2 5.049820776979852e-3 1.852252814661942e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8169790363297678,-0.5555062389731998 l 0.2868914267889107,-8.771151141682103e-2 c -3.742112932072723e-3,-1.2239899882535104e-2 -7.590968571689829e-3,-2.4446910424190917e-2 -1.1546127269340154e-2 -3.6619637234863604e-2l -0.28531695488854614,9.270509831248425e-2 c 3.415818875243462e-3,1.0512809518308233e-2 6.739830564003691e-3,2.1055227713374616e-2 9.971655368975596e-3 3.162605033920038e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.826397222282806,-0.5237109760522984 l 0.28837850878149573,-8.269120674509976e-2 c -3.5279272826461757e-3,-1.2303344562322455e-2 -7.163155013549836e-3,-2.4575667710087817e-2 -1.0905267945623388e-2 -3.681556759262266e-2l -0.2868914267889107,8.771151141682103e-2 c 3.231824804972614e-3,1.0570822625825552e-2 6.37133966348032e-3,2.1169647162532e-2 9.418185953038394e-3 3.179526292090139e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.83525906994923,-0.49175618569478946 l 0.28977774788672056,-7.764571353075624e-2 c -3.3126669923935355e-3,-1.2363041524170948e-2 -6.733159489001674e-3,-2.4696939009530388e-2 -1.0261086771648685e-2 -3.70002835718526e-2l -0.28837850878149573,8.269120674509976e-2 c 3.0468462895587817e-3,1.0625615758369187e-2 6.0009079911749015e-3,2.1277618132088703e-2 8.861847666423839e-3 3.1954790357509075e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.435925161963088,-0.5623776358596624 l 0.2923110194355704,-6.748531630315946e-2 c -1.8321999654718822e-3,-7.936129947305722e-3 -3.699019164547622e-3,-1.586422762795708e-2 -5.600404285164406e-3 -2.3784066633713134e-2l -0.2917109761193028,7.003360915677158e-2 c 1.697665286264986e-3,7.071284826567904e-3 3.364468142582611e-3,1.4149943470006619e-2 5.000360968896778e-3 2.123577378010101e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1392138248748886,-0.5135798004829919 l 0.29171097611930286,-7.003360915677158e-2 c -1.697665286264503e-3,-7.071284826568018e-3 -3.426176841769569e-3,-1.4135128522081366e-2 -5.1854853042005485e-3 -2.1191329359405753e-2l -0.2910887178827988,7.257656867990028e-2 c 1.5481914469392627e-3,6.209456736845462e-3 3.06928161578372e-3,1.2425639188897209e-2 4.563227067696463e-3 1.8648369836277046e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1436141425275177,-0.494892319556503 l 0.2923110194355704,-6.748531630315946e-2 c -1.6358928263141806e-3,-7.085830310094394e-3 -3.3026956826318057e-3,-1.416448895353311e-2 -5.0003609688967915e-3 -2.123577378010101e-2l -0.2917109761193028,7.003360915677158e-2 c 1.4939454519131879e-3,6.222730647379756e-3 2.9607319654726977e-3,1.2451950253605825e-2 4.40031765262916e-3 1.8687480926488892e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4453690018345142,-0.5197792270443983 l 0.2934442802201415,-6.237350724532776e-2 c -1.693416347163204e-3,-7.96689753474703e-3 -3.4215868376355706e-3,-1.5926368215128217e-2 -5.1844621188426145e-3 -2.38781847369619e-2l -0.29288880213597984,6.493188418143082e-2 c 1.5739957867920034e-3,7.099836180208647e-3 3.117005153285188e-3,1.4206506430548993e-2 4.6289840346809275e-3 2.1319807800858834e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.147851215663854,-0.4761671506638263 l 0.29288880213597984,-6.493188418143082e-2 c -1.5739957867915175e-3,-7.099836180208751e-3 -3.1789630104309043e-3,-1.4192770704310994e-2 -4.814855836745569e-3 -2.127860101440528e-2l -0.2923110194355704,6.748531630315945e-2 c 1.4395856871569053e-3,6.235530672882974e-3 2.8519568439595655e-3,1.2477313054092947e-2 4.237073136336145e-3 1.8725168892676655e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.151924721614373,-0.4574057197990705 l 0.2934442802201415,-6.237350724532776e-2 c -1.511978881395718e-3,-7.1133013703098495e-3 -3.0549882478889028e-3,-1.4219971620650196e-2 -4.628984034680906e-3 -2.131980780085884e-2l -0.29288880213597984,6.493188418143082e-2 c 1.385116292376963e-3,6.24785583858361e-3 2.7429645348909654e-3,1.2501725658883115e-2 4.073505950519252e-3 1.8761430864755776e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8435618799243936,-0.4596516016393687 l 0.291088717882799,-7.257656867990031e-2 c -3.0963976316844724e-3,-1.2418972583807647e-2 -6.3011129788475735e-3,-2.4810687382106e-2 -9.613779971241935e-3 -3.7173728906276675e-2l -0.2897777478867206,7.764571353075624e-2 c 2.860939675249675e-3,1.0677172225420124e-2 5.628648384163262e-3,2.1379107733041428e-2 8.302809975163528e-3 3.210458405542076e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.851303123091947,-0.42740700325334346 l 0.29231101943557064,-6.74853163031595e-2 c -2.879185078261336e-3,-1.2471120704090087e-2 -5.867147088639874e-3,-2.4916878178958532e-2 -8.963544720325189e-3 -3.733585076276597e-2l -0.291088717882799,7.257656867990031e-2 c 2.6741615910009548e-3,1.0725476322379154e-2 5.254674236327874e-3,2.1474085050674628e-2 7.741243167553535e-3 3.224459838602517e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8584804413942309,-0.3950322125537427 l 0.29344428022014174,-6.23735072453278e-2 c -2.661095497172069e-3,-1.2519470000195604e-2 -5.431394008592644e-3,-2.5015479053342535e-2 -8.310579086854827e-3 -3.748659975743243e-2l -0.29231101943557064,6.74853163031595e-2 c 2.4865689312264312e-3,1.0770513335350366e-2 4.879099463816927e-3,2.156252115397726e-2 7.177318302283742e-3 3.237479069960074e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.493728682395523,-0.5733887192724803 l 0.28007412794916053,-0.10751038486359007 c -1.1884610047416927e-2,-3.096046767267592e-2 -2.4577772539971822e-2,-6.160447271160756e-2 -3.806644082374168e-2 -9.190051770794981e-2l -0.27406363729278027,0.12202099292274007 c 1.1358878554753565e-2,2.5512458944288215e-2 2.2047857495852426e-2,5.131793687180959e-2 3.20559501673614e-2 7.73899096487998e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5216904260722457,-0.49442719099991583 l 0.2853169548885461,-9.270509831248422e-2 c -1.0247976921013256e-2,-3.1540029859154446e-2 -2.131996056869148e-2,-6.28063471509945e-2 -3.320457061610853e-2 -9.376681482367036e-2l -0.28007412794916053,0.10751038486359007 c 1.0008092671509091e-2,2.6071972776990207e-2 1.9331868374817072e-2,5.24015031280134e-2 2.7961743676722994e-2 7.89615282725645e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5454813220625094,-0.4141104721640332 l 0.2897777478867205,-7.764571353075622e-2 c -8.58325480219723e-3,-3.203314301610962e-2 -1.800371206742465e-2,-6.383607375845622e-2 -2.8251688988438026e-2 -9.537610361761062e-2l -0.28531695488854614,9.270509831248423e-2 c 8.629875301906002e-3,2.6560025144551073e-2 1.656289194630804e-2,5.334144050652715e-2 2.3790895990263683e-2 8.031671883588261e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5650361611740893,-0.3326587053084149 l 0.29344428022014174,-6.23735072453278e-2 c -6.895006578583107e-3,-3.243845555465411e-2 -1.4638116642803687e-2,-6.46908301249371e-2 -2.322137144500104e-2 -9.672397314104668e-2l -0.28977774788672056,7.764571353075624e-2 c 7.228004043955666e-3,2.6975278329355437e-2 1.374851778224668e-2,5.4135172704330575e-2 1.9554839111579847e-2 8.145176685561824e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.481365379103305,-0.3046733585128687 l 0.29776384549239643,-3.656080302154422e-2 c -9.926115146705107e-4,-8.084172043873225e-3 -2.0204922156508627e-3,-1.6163974517977367e-2 -3.0836127490328005e-3 -2.423917668173151e-2l -0.2974334584121429,3.9157857666015455e-2 c 9.49214761948159e-4,7.210001931923344e-3 1.8669653878234734e-3,1.4424111283802043e-2 2.75322566877928e-3 2.1642122037260278e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1811786950223833,-0.2871576228841135 l 0.2974334584121429,-3.915785766601545e-2 c -9.492147619476658e-4,-7.210001931923406e-3 -1.9298846240396127e-3,-1.4415827809207894e-2 -2.941981580600467e-3 -2.161727185003463e-2l -0.29708042062247086,4.175193028801961e-2 c 8.906453217735519e-4,6.337270755927528e-3 1.7536348004144654e-3,1.267839752793788e-2 2.588943790928444e-3 1.9023199228030467e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1836015336109087,-0.26811255549132446 l 0.29776384549239643,-3.656080302154422e-2 c -8.862602809558131e-4,-7.218010753458236e-3 -1.8040109068311275e-3,-1.4432120105336933e-2 -2.7532256687792865e-3 -2.1642122037260278e-2l -0.2974334584121429,3.9157857666015455e-2 c 8.3530899051438e-4,6.344801700092543e-3 1.6429295412846566e-3,1.26932179297458e-2 2.4228385885257664e-3 1.9045067392789043e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4863047384206833,-0.26132115816913365 l 0.2983565686104818,-3.1358538980296016e-2 c -8.513720789103998e-4,-8.100264244902695e-3 -1.7380842319703084e-3,-1.6196775117717197e-2 -2.6601111367206e-3 -2.428930140070904e-2l -0.2980715567029761,3.3960964130371994e-2 c 8.232383078127603e-4,7.225469895528434e-3 1.6149455873305358e-3,1.4454497460541383e-2 2.375099229214861e-3 2.1686876250633064e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1858580824884926,-0.2490470702893948 l 0.2980715567029761,-3.396096413037199e-2 c -8.232383078122655e-4,-7.225469895528492e-3 -1.677999807207573e-3,-1.4447313339643709e-2 -2.564260088163876e-3 -2.166532409310185e-2l -0.2977638454923965,3.656080302154422e-2 c 7.799090472415468e-4,6.351849463043164e-3 1.5320991667094172e-3,1.2707071693864556e-2 2.2565488775842524e-3 1.9065485201929612e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1879481698102015,-0.22996261918883762 l 0.2983565686104818,-3.1358538980296016e-2 c -7.601536418842856e-4,-7.232378790091692e-3 -1.5518609214020612e-3,-1.446140635510464e-2 -2.3750992292148215e-3 -2.1686876250633074e-2l -0.2980715567029761,3.3960964130371994e-2 c 7.244497108752291e-4,6.358413508065023e-3 1.4211521168508716e-3,1.2719957765276417e-2 2.0900873217090665e-3 1.90844511005571e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8815093306089836,-0.2644288918241243 l 0.29708042062247114,-4.175193028801964e-2 c -1.7812991219281454e-3,-1.2674601838680612e-2 -3.6731717979874186e-3,-2.5333417497196583e-2 -5.675401922151629e-3 -3.797500097636395e-2l -0.2963065021785414,4.693033951206927e-2 c 1.7291987435963643e-3,1.0917731186553637e-2 3.3630887820111917e-3,2.1850344709817435e-2 4.901483478221835e-3 3.279659175231433e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.885837688118512,-0.23155175246978021 l 0.29776384549239665,-3.656080302154425e-2 c -1.5598255187245645e-3,-1.2703759391692035e-2 -3.2304832575247135e-3,-2.539366478213904e-2 -5.011782379453718e-3 -3.806826662081953e-2l -0.29708042062247114,4.175193028801964e-2 c 1.538394696211413e-3,1.094624704249679e-2 2.9812354706297236e-3,2.1905710788791936e-2 4.328357509528202e-3 3.287713935434414e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8895916011997194,-0.1986040802085416 l 0.29835656861048204,-3.1358538980296044e-2 c -1.3378767775576114e-3,-1.2729047256528668e-2 -2.7868106805673722e-3,-2.5446176910794906e-2 -4.346636199292798e-3 -3.814993630248684e-2l -0.29776384549239665,3.656080302154425e-2 c 1.3471220388992311e-3,1.0971428565552123e-2 2.598474046044025e-3,2.1954404176054786e-2 3.7539130812074273e-3 3.294767226123863e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4939101256495606,-0.17439118436031326 l 0.29926921507794707,-2.0926942123237577e-2 c -5.681583007388647e-4,-8.12504223984707e-3 -1.171766138205736e-3,-1.6247566744860026e-2 -1.8108062747498118e-3 -2.4367341554414983e-2l -0.2990752001199382,2.3537728718353468e-2 c 5.70571550485782e-4,7.249798937102642e-3 1.1095071196526316e-3,1.450205295943564e-2 1.616791316740973e-3 2.1756554959299096e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1932181342128816,-0.17261001060125886 l 0.2990752001199382,-2.3537728718353468e-2 c -5.705715504852858e-4,-7.249798937102682e-3 -1.1727736508061663e-3,-1.4497073775448985e-2 -1.8065891034563346e-3 -2.1741617549533052e-2l -0.2988584094275235,2.6146722824297433e-2 c 5.577575983321481e-4,6.375198521193979e-3 1.087695446614523e-3,1.2752800378938728e-2 1.5897984110416208e-3 1.9132623443589084e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1946409105716134,-0.15346424223707567 l 0.29926921507794707,-2.0926942123237577e-2 c -5.072841970882721e-4,-7.254501999863455e-3 -1.0462197662551216e-3,-1.4506756022196452e-2 -1.6167913167409035e-3 -2.1756554959299096e-2l -0.2990752001199382,2.3537728718353468e-2 c 5.021029644274882e-4,6.379823064650325e-3 9.763662652943158e-4,1.2761806604303363e-2 1.4227763587320585e-3 1.9145768364183205e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.4965738368864345,-0.13083989060735957 l 0.29958886042637195,-1.570078687288314e-2 c -4.262702279878181e-4,-8.133720486144627e-3 -8.880285340991218e-4,-1.626554230064134e-2 -1.3852617315795717e-3 -2.4395233217356496e-2l -0.2994404395265599,1.831456186045705e-2 c 4.4395821203611604e-4,7.258652604209962e-3 8.562424139212087e-4,1.4519207795724885e-2 1.236840831767505e-3 2.1781458229782582e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1958965565281074,-0.1343067869766851 l 0.29944043952655985,-1.831456186045705e-2 c -4.4395821203561936e-4,-7.258652604209993e-3 -9.195862080182719e-4,-1.4515333523307639e-2 -1.4268704051070404e-3 -2.176983552317106e-2l -0.2992692150779471,2.0926942123237577e-2 c 4.4641009343811624e-4,6.383961759879811e-3 8.649627299028503e-4,1.2769840968685739e-2 1.2556459564943e-3 1.9157455260390532e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1969849764600626,-0.11513910373447643 l 0.29958886042637195,-1.570078687288314e-2 c -3.8059841784626616e-4,-7.262250434057703e-3 -7.928826197313589e-4,-1.4522805625572625e-2 -1.236840831767475e-3 -2.1781458229782585e-2l -0.2994404395265599,1.831456186045705e-2 c 3.906832265917822e-4,6.387614291704767e-3 7.534933242506637e-4,1.2776902860237898e-2 1.0884199319554089e-3 1.916768324220867e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8927699263743167,-0.16559591122055053 l 0.2988584094275237,-2.6146722824297454e-2 c -1.1155205061639108e-3,-1.2750457730261913e-2 -2.342289214080289e-3,-2.5490937887461096e-2 -3.680165991638764e-3 -3.821998514398967e-2l -0.298356568610482,3.1358538980296044e-2 c 1.155439035164137e-3,1.099326808518377e-2 2.214921101091918e-3,2.1996410039128514e-2 3.1783251745970964e-3 3.300816898799108e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8953716954936664,-0.13253730011383807 l 0.2992692150779473,-2.092694212323759e-2 c -8.928244364177427e-4,-1.2767984291054062e-2 -1.897054263608332e-3,-2.5527934077510497e-2 -3.0125747697731077e-3 -3.827839180777234e-2l -0.2988584094275237,2.6146722824297454e-2 c 9.634040735059424e-4,1.1011758948862494e-2 1.8306934697159966e-3,2.203171558262032e-2 2.6017691193495063e-3 3.3058611106712474e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8973961160336905,-9.943831686159328e-2 l 0.29958886042637217,-1.570078687288315e-2 c -6.698564036992574e-4,-1.2781621600144915e-2 -1.4512414520305025e-3,-2.555715421154524e-2 -2.3440658884491114e-3 -3.832513850259924e-2l -0.2992692150779473,2.0926942123237594e-2 c 7.710756496342529e-4,1.102689552409209e-2 1.4459081913748735e-3,2.206031005211964e-2 2.024420540024219e-3 3.309898325224479e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.499619237890978,-4.363101609320878e-2 l 0.2999543085469172,-5.2357219311850505e-3 c -1.42147804397095e-4,-8.14364225980627e-3 -3.1982833122425405e-4,-1.628662552064955e-2 -5.330365063353376e-4 -2.4428717237650978e-2l -0.299897197492667,7.853084492361941e-3 c 1.903644420634674e-4,7.269724747322704e-3 3.490077695877166e-4,1.4540245515932778e-2 4.7592545208519077e-4 2.181135467647409e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1992461149462263,-5.758928627732094e-2 l 0.29989719749266697,-7.853084492361941e-3 c -1.9036444206296994e-4,-7.269724747322718e-3 -4.1244818651435804e-4,-1.4538584270150822e-2 -6.662448911541e-4 -2.1806370986569536e-2l -0.2998172481057286,1.0469849010750286e-2 c 2.233411000829729e-4,6.395652310448468e-3 4.187747952001945e-4,1.2792248690537201e-2 5.862955042156837e-4 1.9189606468181193e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.199664929344061,-3.839529416202373e-2 l 0.2999543085469172,-5.2357219311850505e-3 c -1.2691768249740624e-4,-7.2711091605413124e-3 -2.855610100216554e-4,-1.4541629929151385e-2 -4.7592545208512284e-4 -2.181135467647409e-2l -0.299897197492667,7.853084492361941e-3 c 1.6752070901585132e-4,6.39735777764398e-3 3.071268372371906e-4,1.2795416054020846e-2 4.1881439783497676e-4 1.9193992115297202e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(238,130,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.5,0.0 h 0.2999999999999998 c 0.0,-8.144882764901992e-3 -3.553881174207518e-5,-1.62897267627234e-2 -1.0661542032064375e-4 -2.4434299395447015e-2l -0.29998857691925124,2.6179606495121788e-3 c 6.346125765943622e-5,7.271939850646088e-3 9.519233957200335e-5,1.4544121991558058e-2 9.519233957205886e-5 2.1816338745934836e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.1999162307411773,-1.9198378096422657e-2 l 0.29998857691925124,-2.6179606495121788e-3 c -6.346125765893865e-5,-7.271939850646091e-3 -1.5865208695244528e-4,-1.4543568186732636e-2 -2.855697694503491e-4 -2.1814677347273943e-2l -0.29995430854691724,5.235721931185051e-3 c 1.116875605981554e-4,6.398576061276352e-3 1.954554903764412e-4,1.279760899703251e-2 2.513013971163214e-4 1.919691606560107e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(221,160,221)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 2.2,0.0 h 0.2999999999999998 c 0.0,-7.2722167543767795e-3 -3.173108191256713e-5,-1.454439889528875e-2 -9.519233957200335e-5 -2.1816338745934836e-2l -0.29998857691925124,2.6179606495121788e-3 c 5.584590674030388e-5,6.399307068568558e-3 8.376925882336295e-5,1.279882735257109e-2 8.376925882341846e-5 1.9198378096422657e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.898842571336282,-6.630904373475184e-2 l 0.2998172481057288,-1.0469849010750293e-2 c -4.4668432623116045e-4,-1.2791365503478013e-2 -1.0049865782478927e-3,-2.5578589388829433e-2 -1.6748429819480168e-3 -3.83602109889743e-2l -0.2995888604263722,1.570078687288315e-2 c 5.785123486501069e-4,1.1038673200125112e-2 1.0606824753918304e-3,2.2082184737474066e-2 1.446455302591465e-3 3.312927312684144e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.8997106207971435,-3.315957223083867e-2 l 0.2999543085469174,-5.235721931185054e-3 c -2.2337618439016545e-4,-1.2797213032966014e-2 -5.584255758180254e-4,-2.559223308000043e-2 -1.0051099020500533e-3 -3.8383598583478416e-2l -0.29981724810572874,1.0469849010750293e-2 c 3.857728272003876e-4,1.1047088389367347e-2 6.751336652517212e-4,2.209733297544253e-2 8.680494608613865e-4 3.3149471503913175e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.9000000000000001,0.0 h 0.30000000000000004 c 4.884981308350689e-16,-1.2799162407394786e-2 -1.116944715481738e-4,-2.559808112905773e-2 -3.3507065593920695e-4 -3.839529416202373e-2l -0.2999543085469174,5.235721931185054e-3 c 1.929157956104377e-4,1.1052138528470633e-2 2.893792028570097e-4,2.2105750151724998e-2 2.893792028565434e-4 3.315957223083868e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.58030134495222,-0.25029514406436937 l 0.2963065021785413,-4.6930339512069257e-2 c -5.18785962120312e-3,-3.275485654129269e-2 -1.1232399157947813e-2,-6.536827342264999e-2 -1.812740573653104e-2 -9.780672897730405e-2l -0.29344428022014163,6.237350724532779e-2 c 5.8063213293332435e-3,2.7316594151287645e-2 1.0896459886591934e-2,5.4780524156641155e-2 1.5265183778131353e-2 8.236356124404554e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5912350325892373,-0.16724554122824553 l 0.298356568610482,-3.1358538980296044e-2 c -3.4664931012051143e-3,-3.298147874291375e-2 -7.795894447754495e-3,-6.586654682660437e-2 -1.2983754068957735e-2 -9.862140336789703e-2l -0.29630650217854126,4.693033951206925e-2 c 4.368723891539571e-3,2.7583037087404352e-2 8.014535551791682e-3,5.527572599998592e-2 1.093368763701702e-2 8.304960283612382e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.5978072556073182,-8.373752998871013e-2 l 0.29958886042637217,-1.570078687288315e-2 c -1.7356251645696868e-3,-3.311770100381497e-2 -4.33802173276586e-3,-6.618428460403457e-2 -7.804514833971096e-3 -9.916576334694831e-2l -0.29835656861048204,3.135853898029604e-2 c 2.9191520852254625e-3,2.7773876836137888e-2 5.110643932127503e-3,5.561942092053333e-2 6.572223018080969e-3 8.350801123953541e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(175,238,238)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.6,0.0 h 0.30000000000000004 c 0.0,-3.31631499482479e-2 -8.682588017399074e-4,-6.632061585777832e-2 -2.603883966309717e-3 -9.943831686159328e-2l -0.29958886042637217,1.570078687288315e-2 c 1.461579085953524e-3,2.7888590319002073e-2 2.192744392681867e-3,5.581066687439611e-2 2.1927443926818557e-3 8.373752998871013e-2Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.8698697882665161,-0.9660882731206127 l 0.20073918190765758,-0.22294344764321833 c -8.308601597643377e-2,-7.481098480977567e-2 -0.17378450464875184,-0.14070729405602725 -0.27060897017417324 -0.19660892529127103l -0.1500000000000001,0.2598076211353317 c 7.866987823940486e-2,4.542007537863556e-2 0.1523624002856633,9.896082664121497e-2 0.21986978826651576 0.15974475179915765Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.051722092687432,-0.7641208279802151 l 0.24270509831248432,-0.17633557568774197 c -6.571630883833715e-2,-9.045073936518695e-2 -0.1407322048493092,-0.1737643322860979 -0.2238182208257428 -0.24857531709587377l -0.20073918190765755,0.2229434476432183 c 6.750738798085228e-2,6.078392515794289e-2 0.1284578034897671,0.12847621940618303 0.18185230442091602 0.2019674451403974Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.1876090949353815,-0.5287576359985403 l 0.2740636372927804,-0.12202099292274009 c -4.547448366216879e-2,-0.10213736257953715 -0.10152923238990869,-0.19922703538148956 -0.16724554122824564 -0.28967777474667666l -0.24270509831248432,0.17633557568774197 c 5.339450093114877e-2,7.349122573421452e-2 9.893898427243743e-2,0.15237658488580086 0.13588700224794958 0.2353631919816748Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.2715918809539475,-0.2702851980630871 l 0.29344428022014174,-6.23735072453278e-2 c -2.3245205339180935e-2,-0.10936009293971911 -5.788894528375912e-2,-0.2159825610333281 -0.10336342894592768 -0.31811992361286534l -0.2740636372927803,0.12202099292274007 c 3.694801797551195e-2,8.2986607095874e-2 6.509605668048171e-2,0.16961736242193132 8.398278601856626e-2 0.25847243793545305Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(32,178,170)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.3,0.0 h 0.30000000000000004 c -1.7763568394002506e-16,-0.11180326247048736 -1.1718633486730391e-2,-0.22329861236869572 -3.496383882591108e-2 -0.3326587053084149l -0.29344428022014174,6.23735072453278e-2 c 1.888672933808431e-2,8.885507551352181e-2 2.8408119046052605e-2,0.17944504730581612 2.8408119046052782e-2 0.2702851980630871Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.4999999999999994,0.866025403784439 l 0.14999999999999983,0.25980762113533173 c 0.40222139978605403,-0.232222633440306 0.6500000000000004,-0.661387758039157 0.6500000000000008 -1.1258330249197694l -0.30000000000000004,-2.498001805406602e-16 c -4.163336342344337e-16,0.35726558990816354 -0.1905989232414976,0.6873926088303566 -0.5000000000000006 0.8660254037844379Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.5000000000000004,0.8660254037844384 l -0.15000000000000016,0.25980762113533157 c 0.4022213997860537,0.23222263344030647 0.8977786002139457,0.2322226334403068 1.2999999999999996 8.881784197001252e-16l -0.14999999999999986,-0.25980762113533173 c -0.30940107675850315,0.1786327949540815 -0.690598923241497,0.17863279495408124 -0.9999999999999996 -7.216449660063518e-16Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -1.0,-3.885780586188048e-16 l -0.30000000000000004,-1.1657341758564147e-16 c -1.804732401391611e-16,0.46444526688061255 0.24777860021394557,0.8936103914794639 0.6499999999999992 1.1258330249197703l 0.15000000000000016,-0.25980762113533157 c -0.30940107675850287,-0.17863279495408202 -0.49999999999999956,-0.5087598138762753 -0.49999999999999933 -0.8660254037844386Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M -0.4999999999999998,-0.8660254037844388 l -0.14999999999999997,-0.2598076211353317 c -0.4022213997860539,0.23222263344030616 -0.6500000000000001,0.6613877580391572 -0.6500000000000004 1.1258330249197699l 0.30000000000000004,1.1102230246251565e-16 c 2.498001805406602e-16,-0.35726558990816354 0.1905989232414973,-0.6873926088303567 0.5000000000000002 -0.8660254037844383Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 0.5000000000000001,-0.8660254037844386 l 0.15000000000000005,-0.2598076211353316 c -0.4022213997860538,-0.23222263344030633 -0.8977786002139458,-0.23222263344030647 -1.2999999999999998 -3.3306690738754696e-16l 0.14999999999999997,0.2598076211353317 c 0.3094010767585031,-0.17863279495408163 0.6905989232414969,-0.17863279495408152 0.9999999999999998 2.7755575615628914e-16Z" /></g><g stroke="rgb(255,255,255)" stroke-opacity="1.0" fill="rgb(240,128,128)" fill-opacity="1.0" stroke-width="8.0e-3"><path d="M 1.0,0.0 h 0.30000000000000004 c 0.0,-0.46444526688061255 -0.24777860021394593,-0.8936103914794638 -0.6499999999999997 -1.12583302491977l -0.15000000000000005,0.2598076211353316 c 0.3094010767585029,0.1786327949540819 0.4999999999999998,0.5087598138762751 0.49999999999999967 0.8660254037844385Z" /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t31212D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,-4.598076211353316 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844393,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844384 v 1.0 l 0.5,0.8660254037844388 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-3.732050807568877 l -0.49999999999999956,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 l -0.5,0.8660254037844384 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-3.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-0.5 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,0.8660254037844386 l 0.49999999999999956,-0.8660254037844386 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,1.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844393,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,2.732050807568877 l -0.49999999999999956,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,3.232050807568877 l -0.8660254037844388,-0.5 h -0.9999999999999996 l -0.8660254037844393,0.5 l -0.5,0.8660254037844388 v 1.0 l 0.5,0.8660254037844384 l 0.8660254037844393,0.5 h 0.9999999999999996 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,3.232050807568877 h -0.9999999999999998 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,3.232050807568877 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 1.0 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,3.232050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,2.732050807568877 l -0.8660254037844386,0.5 l -0.5,0.8660254037844388 v 1.0 l 0.5,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844384 v -1.0 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,1.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-1.3660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-2.3660254037844384 v 0.9999999999999998 l 0.5,0.8660254037844386 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.5,0.8660254037844384 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 h -0.9999999999999998 l -0.8660254037844388,0.5 l -0.49999999999999956,0.8660254037844384 v 1.0 l 0.49999999999999956,0.8660254037844388 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 h -0.9999999999999996 l -0.8660254037844393,0.5 l -0.5,0.8660254037844388 v 0.9999999999999998 l 0.5,0.8660254037844386 l 0.8660254037844393,0.5 h 0.9999999999999996 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 h -0.9999999999999998 l -0.8660254037844388,0.5 l -0.49999999999999956,0.8660254037844386 v 1.0 l 0.49999999999999956,0.8660254037844386 l 0.8660254037844388,0.5 h 0.9999999999999998 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 0.9999999999999998 l 0.4999999999999998,0.8660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-3.232050807568877 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-4.598076211353316 l 0.49999999999999956,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-3.732050807568877 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-3.232050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-4.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-3.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,3.232050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,3.232050807568877 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,0.8660254037844386 l 0.49999999999999956,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,1.8660254037844386 l 0.49999999999999956,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.732050807568877 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,3.232050807568877 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,4.098076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-2.3660254037844384 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-3.232050807568877 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-0.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t33336LD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t33336RD.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t33344D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-5.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-5.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-5.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-5.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-5.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-4.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-4.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,4.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,5.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,5.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,5.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,5.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,5.0 v 1.0 h 0.9999999999999996 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,5.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,5.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,4.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,4.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,4.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,4.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,4.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,4.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,5.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,5.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,5.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,4.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,4.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,4.5 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,4.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,4.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,3.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,3.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,2.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,1.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,0.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-0.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-1.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-2.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-3.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.598076211353316,-3.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-4.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-5.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-5.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-5.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-4.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-4.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-4.0 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-4.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-4.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-3.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-3.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-2.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-2.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-1.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-1.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,0.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,0.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,1.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,1.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,2.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,2.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,3.0 v -1.0 l -0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,3.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,3.0 l -0.8660254037844393,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,3.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,3.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,3.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,3.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,4.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,4.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,4.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,3.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,3.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,3.5 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,3.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,3.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,2.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,1.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,0.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-1.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-2.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-3.0 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-3.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-4.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-3.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-3.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-3.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-2.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,-1.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,0.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,1.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,2.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.732050807568877,2.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,2.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,2.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,2.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,2.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,2.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,2.5 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,2.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-2.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-2.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-2.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-2.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-1.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-1.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-0.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,-0.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,0.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,0.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,1.5 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,1.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.8660254037844384,1.5 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,1.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,1.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,1.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,1.5 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.8660254037844386,-1.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-1.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-1.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-0.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,0.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,0.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,0.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,0.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-0.5 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-0.5 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-5.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-4.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-5.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-5.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-4.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,4.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,5.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,5.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,5.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,5.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,4.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,5.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,3.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,4.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,4.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,5.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,4.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,5.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,5.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,4.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,5.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,5.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,4.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,5.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,4.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,4.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,3.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,4.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,2.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,1.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-1.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-2.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-3.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.598076211353316,-2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-5.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-4.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-4.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-4.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-3.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-3.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-2.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-2.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-1.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-1.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,0.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,0.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,1.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,1.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,2.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,2.5 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.598076211353316,3.5 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,3.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,3.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,4.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,3.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,3.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,4.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,3.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-3.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-3.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-2.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,3.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,2.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,2.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,2.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,3.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,2.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,2.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-2.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-1.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,1.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,1.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,2.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,2.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,1.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.8660254037844386,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-1.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-1.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,-0.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.8660254037844384,0.5 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,1.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t33434D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,2.232050807568877 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-4.964101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-4.598076211353316 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,-4.098076211353316 l -0.8660254037844388,0.5 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,-4.098076211353316 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-4.964101615137754 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-4.964101615137754 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-4.964101615137754 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,-4.098076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-4.598076211353316 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-3.598076211353316 l 0.5,0.8660254037844388 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-3.598076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-3.598076211353316 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,-2.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,-2.732050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-1.8660254037844386 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-1.8660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-0.8660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,0.8660254037844386 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,1.8660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,2.732050807568877 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,2.732050807568877 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.464101615137754,2.732050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,3.598076211353316 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,3.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,4.598076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,4.964101615137754 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,4.964101615137754 v 1.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,4.964101615137754 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,4.098076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,4.964101615137754 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,4.964101615137754 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,4.964101615137754 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,4.964101615137754 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,4.964101615137754 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,4.964101615137754 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,4.964101615137754 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,4.098076211353316 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,4.098076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,3.232050807568877 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,3.232050807568877 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,2.232050807568877 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,2.232050807568877 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,2.232050807568877 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-2.232050807568877 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-3.232050807568877 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-3.232050807568877 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-3.232050807568877 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-4.964101615137754 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-4.964101615137754 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-4.964101615137754 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-4.098076211353316 l -0.5,0.8660254037844388 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-4.098076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-4.598076211353316 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844388,0.5 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-4.098076211353316 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-4.964101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-4.964101615137754 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844388 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,-2.732050807568877 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-0.5 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,0.5 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,0.5 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.598076211353316,0.5 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,1.3660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,1.8660254037844386 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,2.732050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,3.232050807568877 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,4.098076211353316 l -0.5,0.8660254037844384 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,4.098076211353316 l -0.5,-0.8660254037844388 l -0.4999999999999998,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,4.098076211353316 h -0.9999999999999998 l 0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,3.598076211353316 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,4.098076211353316 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,4.098076211353316 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,3.232050807568877 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,2.732050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,1.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,1.3660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,0.5 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,0.5 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-0.5 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-0.5 v 1.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.598076211353316,-0.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,-2.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-4.098076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-3.598076211353316 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-3.598076211353316 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-2.232050807568877 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-0.8660254037844386 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,-0.8660254037844386 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,0.8660254037844386 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,1.3660254037844386 l -0.8660254037844388,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,2.232050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,2.232050807568877 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 l -0.5,0.8660254037844388 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,2.232050807568877 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,2.232050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,0.8660254037844386 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,0.8660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,-0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.732050807568877 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-0.5 l 0.5,-0.8660254037844386 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,0.5 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,0.5 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.3660254037844386,1.3660254037844386 h -0.9999999999999998 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,0.8660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,1.3660254037844386 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,1.3660254037844386 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,0.5 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-1.3660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-0.8660254037844386 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,3.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,3.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,2.732050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,2.232050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-2.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.464101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-4.098076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-3.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-5.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-4.098076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-4.598076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-3.598076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-4.964101615137754 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-4.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,-5.464101615137754 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-4.598076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-4.098076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,-5.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-3.598076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-3.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-4.098076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-3.232050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-2.232050807568877 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-1.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-0.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,1.3660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,1.3660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,2.232050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,3.232050807568877 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,3.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,3.598076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,2.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,4.598076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.464101615137754,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,4.964101615137754 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,5.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,5.464101615137754 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,3.598076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,5.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.464101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,5.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,5.464101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,3.598076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,4.964101615137754 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,5.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,5.464101615137754 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,3.232050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,2.732050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,2.232050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,3.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,2.732050807568877 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-2.232050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,-2.732050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-3.232050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-2.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,-2.732050807568877 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-4.098076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-4.964101615137754 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-4.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,-5.464101615137754 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-4.098076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-3.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-4.098076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-5.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-4.598076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-3.598076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.964101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-5.464101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-4.098076211353316 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,-2.732050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,0.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,-0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,0.5 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.464101615137754,0.0 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.598076211353316,2.232050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,1.3660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,3.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,4.098076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,3.598076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.598076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,1.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,0.5 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,-0.5 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.598076211353316,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.598076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-3.598076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-3.598076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-0.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,1.3660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,1.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,2.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,2.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,3.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,2.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,1.3660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,2.232050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,1.3660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-0.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.232050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.732050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,1.3660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,2.232050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,1.3660254037844386 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,1.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,1.3660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,1.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-1.8660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t3464D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.8660254037844384,-4.964101615137754 l -0.5,-0.8660254037844384 h -0.9999999999999998 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-4.464101615137754 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-4.464101615137754 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-4.464101615137754 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-2.732050807568877 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -0.9999999999999996 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,-1.7320508075688772 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,0.0 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,1.0 l 0.5,0.8660254037844386 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,1.0 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,2.732050807568877 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844393,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.732050807568877,3.732050807568877 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,3.732050807568877 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,3.732050807568877 v -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 h 0.9999999999999996 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,4.598076211353316 l -0.8660254037844388,0.5 l 0.5,0.8660254037844384 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,4.098076211353316 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,4.098076211353316 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,4.098076211353316 v 1.0 h 0.9999999999999998 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.598076211353316 l -0.5,0.8660254037844384 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,4.598076211353316 l -0.8660254037844384,0.5 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,4.098076211353316 v 1.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,4.098076211353316 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,3.732050807568877 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,2.732050807568877 v 1.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,2.732050807568877 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-4.464101615137754 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,-4.964101615137754 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,-4.098076211353316 h 1.0 l 0.4999999999999998,-0.8660254037844384 l -0.4999999999999998,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,-1.7320508075688772 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.732050807568877,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.232050807568877,1.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,2.3660254037844384 l -0.8660254037844384,-0.4999999999999998 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,3.232050807568877 l -0.4999999999999998,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.732050807568877 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844388 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.732050807568877 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,3.232050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,2.3660254037844384 h -0.9999999999999998 l -0.5,0.8660254037844388 l 0.5,0.8660254037844388 h 0.9999999999999998 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.232050807568877,1.8660254037844386 l -0.8660254037844388,0.4999999999999998 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999996 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,0.0 v 1.0 h 0.9999999999999996 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-1.7320508075688772 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.732050807568877,-1.7320508075688772 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999996 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,-3.098076211353316 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,-3.098076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-3.098076211353316 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.464101615137754 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.464101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-4.464101615137754 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-4.464101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-3.598076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-3.098076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,-3.098076211353316 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,-3.098076211353316 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,-2.232050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,-0.3660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.8660254037844384,0.5 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,1.3660254037844386 l -0.8660254037844384,0.5 l 0.8660254037844384,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.3660254037844384,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,1.3660254037844386 h -1.0 v 0.9999999999999998 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,1.8660254037844386 l -0.8660254037844384,-0.5 v 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.4999999999999998 l 0.4999999999999998,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.732050807568877 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,1.8660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,1.3660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,1.3660254037844386 v 0.9999999999999998 l 0.8660254037844388,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,1.3660254037844386 h -0.9999999999999998 v 0.9999999999999998 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.8660254037844384,0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.3660254037844384,-1.3660254037844386 v 1.0 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 h 0.9999999999999998 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.732050807568877 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 l -0.4999999999999998,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-0.3660254037844386 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,0.5 l -0.4999999999999998,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.0 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,0.5 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-0.3660254037844386 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-0.3660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999998 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 v -1.0 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l -0.8660254037844384,-0.5 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.464101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-4.098076211353316 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-5.830127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-4.464101615137754 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-4.464101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-4.464101615137754 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-4.464101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-4.098076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-2.732050807568877 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-2.732050807568877 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-1.7320508075688772 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,-1.7320508075688772 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,0.0 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,1.0 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,3.232050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,2.732050807568877 l 0.8660254037844393,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,2.732050807568877 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,3.732050807568877 l 0.8660254037844393,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.732050807568877,3.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,3.732050807568877 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,3.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,3.232050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,4.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,5.098076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,4.098076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,4.098076211353316 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,4.098076211353316 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,5.098076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,5.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,5.464101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,3.732050807568877 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,3.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.732050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,3.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-4.464101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,-4.464101615137754 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-5.464101615137754 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-4.464101615137754 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-5.830127018922193 l 0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-4.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-1.7320508075688772 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.732050807568877,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,2.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,2.3660254037844384 l 0.4999999999999998,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,2.3660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,2.3660254037844384 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,2.3660254037844384 l 0.8660254037844388,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,1.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,0.0 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-1.7320508075688772 h 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.732050807568877,-1.7320508075688772 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.232050807568877,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-3.098076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-3.098076211353316 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-3.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-3.098076211353316 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-3.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.464101615137754 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.464101615137754 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.464101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.464101615137754 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.464101615137754 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-3.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-4.098076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-3.098076211353316 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-3.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-3.098076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-3.098076211353316 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-2.732050807568877 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,-1.7320508075688772 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-0.3660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,-0.8660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,0.0 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.732050807568877,1.0 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.232050807568877,1.8660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,1.3660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,2.3660254037844384 l 0.8660254037844384,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,1.8660254037844386 l 0.8660254037844386,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,2.3660254037844384 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,1.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,1.3660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,1.3660254037844386 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.3660254037844384,-0.3660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-3.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-3.098076211353316 l 0.4999999999999998,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-0.3660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.3660254037844384,-0.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-0.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-0.3660254037844386 h 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-0.3660254037844386 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-0.3660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t3636D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.4641016151377544 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t3D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t4612D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.732050807568877 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.4999999999999991 h -1.0 l -0.8660254037844386,0.4999999999999991 l -0.4999999999999998,0.8660254037844384 v 1.0 l 0.4999999999999998,0.8660254037844393 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,-4.732050807568877 l 0.5,-0.8660254037844393 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-2.8660254037844384 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,-2.3660254037844384 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844388 v -0.9999999999999996 l -0.5,-0.8660254037844393 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 l -0.5,0.8660254037844393 v 0.9999999999999996 l 0.5,0.8660254037844388 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 l 0.8660254037844384,-0.5 v -0.9999999999999998 l -0.8660254037844384,-0.5 l -0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 v -0.9999999999999998 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.964101615137754,3.8660254037844384 l 0.5,0.8660254037844384 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.098076211353316,3.3660254037844384 l 0.8660254037844384,0.5 l 0.8660254037844384,-0.5 v -1.0 l -0.8660254037844384,-0.4999999999999998 l -0.8660254037844384,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.098076211353316,3.3660254037844384 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 v -1.0 l -0.8660254037844388,-0.4999999999999998 l -0.8660254037844386,0.4999999999999998 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,4.732050807568877 v 1.0 l 0.5,0.8660254037844393 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,4.732050807568877 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,4.732050807568877 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,4.732050807568877 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,3.8660254037844384 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,3.3660254037844384 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844384 v 1.0 l 0.5,0.8660254037844393 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,2.3660254037844384 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.232050807568877,1.8660254037844386 l -0.8660254037844388,0.4999999999999998 v 1.0 l 0.8660254037844388,0.5 l 0.8660254037844388,-0.5 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,-4.732050807568877 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844393 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-2.3660254037844384 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844388 v -0.9999999999999996 l -0.5,-0.8660254037844393 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844393 v 0.9999999999999996 l 0.5,0.8660254037844388 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.098076211353316,-1.3660254037844386 v -0.9999999999999998 h -1.0 v 0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.732050807568877,1.0 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844384,0.4999999999999998 h 1.0 l 0.8660254037844388,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,1.5 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,1.5 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844384 v 1.0 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,1.0 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7320508075688772,0.0 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844388,0.4999999999999998 h 1.0 l 0.8660254037844384,-0.4999999999999998 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.3660254037844386,-2.3660254037844384 v 0.9999999999999998 l 0.8660254037844386,0.5 l 0.8660254037844388,-0.5 v -0.9999999999999998 l -0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -0.9999999999999996 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.732050807568877 h 1.0 v -0.9999999999999996 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 v -0.9999999999999996 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 v 0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 l -0.8660254037844388,-0.5 l -0.8660254037844388,0.5 v 0.9999999999999998 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 0.9999999999999998 l 0.4999999999999998,0.8660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-5.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-4.732050807568877 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-5.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-3.732050807568877 v -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,-3.732050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-2.8660254037844384 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-2.8660254037844384 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-2.8660254037844384 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-2.3660254037844384 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-2.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,3.3660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,3.3660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,2.3660254037844384 l 0.8660254037844386,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,1.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,2.3660254037844384 l 0.8660254037844384,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,2.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,3.8660254037844384 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.964101615137754,3.8660254037844384 l 0.8660254037844384,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,3.3660254037844384 l 0.8660254037844384,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.098076211353316,3.3660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,3.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.098076211353316,3.3660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,3.3660254037844384 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,4.732050807568877 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,5.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.232050807568877 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,3.3660254037844384 l 0.4999999999999998,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,4.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,5.732050807568877 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,3.8660254037844384 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,3.3660254037844384 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,3.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,3.3660254037844384 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,2.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,1.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,2.3660254037844384 l 0.8660254037844388,-0.4999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-4.732050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-5.598076211353316 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-3.732050807568877 v -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-2.8660254037844384 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-2.3660254037844384 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-2.3660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.098076211353316,-1.3660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,1.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,2.3660254037844384 l 0.4999999999999998,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,1.5 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,1.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7320508075688772,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-2.3660254037844384 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.3660254037844386,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.732050807568877 v -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.732050807568877 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.732050807568877 v -0.9999999999999996 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,-3.732050807568877 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-2.8660254037844384 l 0.8660254037844388,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t488D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.414213562373095,0.0 l -0.7071067811865479,-0.7071067811865476 h -1.0 l -0.707106781186547,0.7071067811865476 v 1.0 l 0.707106781186547,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.414213562373095,-3.414213562373095 l -0.7071067811865479,-0.7071067811865479 h -1.0 l -0.707106781186547,0.7071067811865479 v 1.0 l 0.707106781186547,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.121320343559643,-4.121320343559643 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.414213562373095,4.414213562373095 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.707106781186547 h 1.0 l 0.7071067811865479,-0.707106781186547 v -1.0 l -0.7071067811865479,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,4.414213562373095 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.707106781186547 h 1.0 l 0.7071067811865476,-0.707106781186547 v -1.0 l -0.7071067811865476,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.414213562373095,4.414213562373095 l -0.7071067811865479,0.7071067811865479 v 1.0 l 0.7071067811865479,0.707106781186547 h 1.0 l 0.7071067811865475,-0.707106781186547 v -1.0 l -0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.414213562373095,3.414213562373095 l -0.7071067811865479,-0.7071067811865475 h -1.0 l -0.707106781186547,0.7071067811865475 v 1.0 l 0.707106781186547,0.7071067811865479 h 1.0 l 0.7071067811865479,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.414213562373095,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.414213562373095 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.414213562373095,3.414213562373095 l -0.7071067811865475,-0.7071067811865475 h -0.9999999999999999 l -0.7071067811865476,0.7071067811865475 v 1.0 l 0.7071067811865476,0.7071067811865479 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.414213562373095,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.121320343559643,2.7071067811865475 l -0.7071067811865479,0.7071067811865475 v 1.0 l 0.7071067811865479,0.7071067811865479 h 1.0 l 0.707106781186547,-0.7071067811865479 v -1.0 l -0.707106781186547,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.121320343559643,1.7071067811865475 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.121320343559643,-0.7071067811865476 l -0.7071067811865479,0.7071067811865476 v 1.0 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.707106781186547,-0.7071067811865475 v -1.0 l -0.707106781186547,-0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.121320343559643,-1.7071067811865475 v 0.9999999999999999 h 1.0 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.414213562373095,-2.414213562373095 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.707106781186547,-0.7071067811865475 v -1.0 l -0.707106781186547,-0.7071067811865479 h -1.0 l -0.7071067811865479,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.414213562373095,-3.414213562373095 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865479,-0.7071067811865479 v -1.0 l -0.7071067811865479,-0.707106781186547 h -1.0 l -0.7071067811865475,0.707106781186547 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.7071067811865476,-4.121320343559643 h 0.9999999999999999 v -1.0 h -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865476,-0.7071067811865479 v -1.0 l -0.7071067811865476,-0.707106781186547 h -1.0 l -0.7071067811865475,0.707106781186547 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.7071067811865475,-4.121320343559643 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.414213562373095,-3.414213562373095 l 0.7071067811865475,-0.7071067811865479 v -1.0 l -0.7071067811865475,-0.707106781186547 h -1.0 l -0.7071067811865479,0.707106781186547 v 1.0 l 0.7071067811865479,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.414213562373095,-2.414213562373095 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.414213562373095,0.0 l 0.7071067811865475,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865479,0.7071067811865475 v 0.9999999999999999 l 0.7071067811865479,0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.414213562373095,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.7071067811865475,1.7071067811865475 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865479,0.7071067811865475 v 1.0 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.7071067811865475,1.7071067811865475 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.7071067811865476,1.7071067811865475 l -0.7071067811865476,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865476,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7071067811865475,1.7071067811865475 h -0.9999999999999999 v 1.0 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.414213562373095,1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 v -1.0 l -0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.414213562373095,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 h 1.0 l 0.7071067811865479,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865479,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.7071067811865476,-1.7071067811865475 v 0.9999999999999999 h 0.9999999999999999 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.414213562373095 l 0.7071067811865476,0.7071067811865475 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865479 h -0.9999999999999999 l -0.7071067811865476,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.414213562373095 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865479 h -1.0 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 h -1.0 v 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.7071067811865475,-0.7071067811865476 h -1.0 l -0.7071067811865475,0.7071067811865476 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v 1.0 l 0.7071067811865476,0.7071067811865475 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865476 h -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.7071067811865476,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865476,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 0.9999999999999999 l 0.7071067811865475,0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,1.7071067811865475 l 0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,-0.7071067811865476 l 0.7071067811865479,0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,-1.7071067811865475 l 0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,-4.121320343559643 l 0.7071067811865479,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,-4.121320343559643 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,-4.121320343559643 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,-3.414213562373095 l 0.7071067811865479,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,4.414213562373095 l 0.7071067811865479,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,4.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,5.121320343559643 l 0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.414213562373095 l 0.7071067811865476,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,5.121320343559643 l 0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,4.414213562373095 l 0.7071067811865475,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,4.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,5.121320343559643 l 0.7071067811865479,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.121320343559643,2.7071067811865475 l 0.7071067811865479,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,3.414213562373095 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,2.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,2.7071067811865475 l 0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.414213562373095 l 0.7071067811865476,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,2.7071067811865475 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,2.7071067811865475 l 0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,4.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,2.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,3.414213562373095 l 0.7071067811865479,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,1.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,2.7071067811865475 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,1.0 l 0.7071067811865479,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,-0.7071067811865476 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,0.0 l 0.7071067811865479,-0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,-1.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.121320343559643,-0.7071067811865476 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,-2.414213562373095 l 0.7071067811865479,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.414213562373095,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,-2.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,-3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,-4.121320343559643 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,-4.121320343559643 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,-4.121320343559643 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.414213562373095 l 0.7071067811865476,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,-4.121320343559643 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,-4.121320343559643 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,-4.121320343559643 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,-3.414213562373095 l 0.7071067811865475,-0.7071067811865479 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,-3.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,-2.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,-2.414213562373095 l 0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,0.0 l 0.7071067811865475,-0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.414213562373095,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,2.7071067811865475 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.414213562373095,1.0 l 0.7071067811865475,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,2.7071067811865475 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,1.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,2.7071067811865475 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 l 0.7071067811865476,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,2.7071067811865475 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,1.7071067811865475 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.414213562373095,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,-0.7071067811865476 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,-1.7071067811865475 h 0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.7071067811865476,-0.7071067811865476 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.414213562373095 l 0.7071067811865476,0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.414213562373095 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.414213562373095 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,-1.7071067811865475 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.7071067811865475,-0.7071067811865476 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.7071067811865476,-0.7071067811865476 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t4D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,5.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,5.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,4.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-4.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-5.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-5.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-4.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,3.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,4.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -5.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,4.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,4.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.0,-4.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-4.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,2.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.0,1.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,1.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h 1.0 v -1.0 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v 1.0 h 1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 v -1.0 h -1.0 v 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,6.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-5.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -6.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,5.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-4.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,4.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-2.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,2.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,-1.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.0 v -1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
+ diagrams/src_Diagrams_TwoD_Tilings_t6D.svg view
@@ -0,0 +1,4 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"+    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill-opacity="0.0" stroke-width="1.0e-2" stroke-linecap="butt" stroke-linejoin="miter" font-size="1.0em" stroke-miterlimit="10.0"><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,0.0 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,1.7320508075688772 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 5.0,3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,4.330127018922193 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,3.4641016151377544 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.5,-0.8660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,1.7320508075688772 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 2.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="0.0"><path d="M 0.0,0.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -4.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 2.0,0.0 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g><g fill-opacity="0.0" stroke-width="2.0e-2"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></g></svg>
− diagrams/t31212D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,-4.598076211353316 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844393,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844384 v 1.0 l 0.5,0.8660254037844388 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-3.732050807568877 l -0.49999999999999956,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 l -0.5,0.8660254037844384 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-3.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-0.5 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,0.8660254037844386 l 0.49999999999999956,-0.8660254037844386 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844393,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,2.732050807568877 l -0.49999999999999956,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,3.232050807568877 l -0.8660254037844388,-0.5 h -0.9999999999999996 l -0.8660254037844393,0.5 l -0.5,0.8660254037844388 v 1.0 l 0.5,0.8660254037844384 l 0.8660254037844393,0.5 h 0.9999999999999996 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 h -0.9999999999999998 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 1.0 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,3.232050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,2.732050807568877 l -0.8660254037844386,0.5 l -0.5,0.8660254037844388 v 1.0 l 0.5,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844384 v -1.0 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-2.3660254037844384 v 0.9999999999999998 l 0.5,0.8660254037844386 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.5,0.8660254037844384 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844388 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 h -0.9999999999999998 l -0.8660254037844388,0.5 l -0.49999999999999956,0.8660254037844384 v 1.0 l 0.49999999999999956,0.8660254037844388 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 h -0.9999999999999996 l -0.8660254037844393,0.5 l -0.5,0.8660254037844388 v 0.9999999999999998 l 0.5,0.8660254037844386 l 0.8660254037844393,0.5 h 0.9999999999999996 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 h -0.9999999999999998 l -0.8660254037844388,0.5 l -0.49999999999999956,0.8660254037844386 v 1.0 l 0.49999999999999956,0.8660254037844386 l 0.8660254037844388,0.5 h 0.9999999999999998 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 0.9999999999999998 l 0.4999999999999998,0.8660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-3.232050807568877 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-4.598076211353316 l 0.49999999999999956,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-3.732050807568877 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-3.232050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-3.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-4.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-3.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,3.232050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,3.232050807568877 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,0.8660254037844386 l 0.49999999999999956,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 l 0.49999999999999956,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,3.232050807568877 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-2.3660254037844384 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-3.232050807568877 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t33336LD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t33336RD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t33344D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-5.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-5.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-5.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-5.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-5.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-4.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-4.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,4.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,5.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,5.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,5.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,5.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,5.0 v 1.0 h 0.9999999999999996 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,5.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,5.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,4.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,4.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,4.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,4.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,4.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,4.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,5.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,5.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,5.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,4.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,4.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,4.5 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,4.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,4.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,3.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,3.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,2.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,1.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,0.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-0.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-1.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-2.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-3.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.598076211353316,-3.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-4.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-5.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-5.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-5.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-4.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-4.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-4.0 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-4.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-4.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-3.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-3.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-2.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-2.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-1.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-1.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,0.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,0.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,1.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,1.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,2.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,2.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,3.0 v -1.0 l -0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,3.0 l -0.8660254037844393,0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,3.0 l -0.8660254037844393,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,3.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,3.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,3.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,3.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,4.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,4.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,4.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,3.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,3.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,3.5 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,3.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,3.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,2.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,1.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,0.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-1.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-2.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-3.0 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-3.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-4.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-3.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-3.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-3.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-2.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,-1.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,0.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,1.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,2.0 v -1.0 h -0.9999999999999996 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.732050807568877,2.0 h -0.9999999999999996 v 1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,2.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,2.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,2.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,2.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,2.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,2.5 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,2.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-2.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-2.5 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-2.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-2.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-1.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-1.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,0.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,0.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,1.5 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,1.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.8660254037844384,1.5 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,1.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,1.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,1.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,1.5 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-1.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-1.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,0.5 v -1.0 h -0.9999999999999998 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,0.5 h -0.9999999999999998 v 1.0 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,0.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-5.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-4.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-5.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-5.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-4.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-5.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,4.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,5.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,5.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,5.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,5.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,5.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,4.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,5.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,3.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,4.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,4.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,5.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,4.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,5.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,5.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,4.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,5.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,5.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,4.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,5.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,4.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,4.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,3.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,4.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,2.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,1.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-1.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-2.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-3.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.598076211353316,-2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-4.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-4.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-5.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-4.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-5.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-4.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-4.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-3.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-3.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-2.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-2.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-1.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-1.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,-0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,0.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,0.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,1.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,1.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,2.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,2.5 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.598076211353316,3.5 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,3.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,3.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,4.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,3.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,3.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,4.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,3.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,3.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,2.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,1.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-1.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-2.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-3.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-3.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-3.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-4.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-3.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-2.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,3.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,2.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,2.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,2.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,3.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,2.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,2.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-2.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-2.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-3.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-1.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,1.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,1.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,2.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,1.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,2.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,1.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.8660254037844386,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-1.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-1.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,-0.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.8660254037844384,0.5 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,1.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-1.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t33434D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,2.232050807568877 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-4.598076211353316 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,-4.098076211353316 l -0.8660254037844388,0.5 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,-4.098076211353316 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,-4.098076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-4.598076211353316 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 l 0.5,0.8660254037844388 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-1.8660254037844386 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-1.8660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,0.8660254037844386 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,3.598076211353316 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,3.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,4.964101615137754 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,4.964101615137754 v 1.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,4.964101615137754 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,4.964101615137754 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,4.964101615137754 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,4.964101615137754 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,4.964101615137754 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,4.964101615137754 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,4.964101615137754 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,4.964101615137754 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,4.098076211353316 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,4.098076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,2.232050807568877 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,2.232050807568877 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,2.232050807568877 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-2.232050807568877 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-3.232050807568877 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-3.232050807568877 l -0.8660254037844384,0.5 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-3.232050807568877 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-4.098076211353316 l -0.5,0.8660254037844388 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-4.098076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-4.598076211353316 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-4.598076211353316 l -0.5,-0.8660254037844384 l -0.8660254037844388,0.5 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,-4.098076211353316 l -0.5,-0.8660254037844384 l -0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844388 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,-2.732050807568877 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-0.5 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,0.5 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,0.5 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.598076211353316,0.5 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,1.3660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,2.732050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,4.098076211353316 l -0.5,0.8660254037844384 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,4.098076211353316 l -0.5,-0.8660254037844388 l -0.4999999999999998,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,4.098076211353316 h -0.9999999999999998 l 0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,3.598076211353316 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,2.732050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,1.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,1.3660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,0.5 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,0.5 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-0.5 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-0.5 v 1.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.598076211353316,-0.5 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,-2.732050807568877 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-3.598076211353316 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-3.598076211353316 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,0.8660254037844386 l -0.8660254037844388,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 l -0.8660254037844388,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,2.232050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,2.232050807568877 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 l -0.5,0.8660254037844388 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,2.232050807568877 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,2.232050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,0.8660254037844386 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,0.8660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-1.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.5,-0.8660254037844386 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,0.5 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.3660254037844386,1.3660254037844386 h -0.9999999999999998 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,3.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,3.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,2.732050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,2.232050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-2.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-2.732050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.464101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-4.098076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-3.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-5.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-4.098076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-4.598076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-3.598076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,-5.464101615137754 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-4.598076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-4.098076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,-5.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-3.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-4.098076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-3.232050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-2.232050807568877 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-1.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,-2.732050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,1.3660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,1.3660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,2.232050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,3.232050807568877 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,3.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,3.598076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,2.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.464101615137754,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,4.098076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,4.964101615137754 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,5.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,5.464101615137754 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,3.598076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,5.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.464101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.964101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,5.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,5.464101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,3.598076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,4.964101615137754 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,5.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,5.464101615137754 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,4.098076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,4.098076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,2.732050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,4.098076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,2.232050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,3.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,2.732050807568877 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-2.232050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,-2.732050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-3.232050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-2.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,-2.732050807568877 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-4.098076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,-5.464101615137754 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-4.098076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-3.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-4.098076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-5.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-4.598076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-3.598076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-5.464101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,-2.732050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,0.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,-0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,0.5 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.464101615137754,0.0 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.598076211353316,2.232050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,1.3660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,3.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,4.098076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,4.098076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,3.598076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.598076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,4.098076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,1.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,0.5 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,-0.5 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.598076211353316,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.732050807568877,0.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-2.732050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-4.098076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.598076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-3.598076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-3.598076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,-4.098076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-1.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,1.3660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.732050807568877,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,2.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,2.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,3.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,2.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,1.3660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,2.232050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,0.8660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,1.3660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.732050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,1.3660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,2.232050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,1.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,1.3660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,1.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.3660254037844386,-1.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-1.8660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t3464D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.8660254037844384,-4.964101615137754 l -0.5,-0.8660254037844384 h -0.9999999999999998 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-4.464101615137754 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-4.464101615137754 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-4.464101615137754 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844388,-0.5 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-2.732050807568877 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -0.9999999999999996 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,-1.7320508075688772 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,0.0 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,1.0 l 0.5,0.8660254037844386 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,1.0 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,2.732050807568877 l 0.8660254037844393,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844393,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 l 0.8660254037844393,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.732050807568877,3.732050807568877 l 0.8660254037844393,-0.5 l -0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,3.732050807568877 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,3.732050807568877 v -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 h 0.9999999999999996 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,4.598076211353316 l -0.8660254037844388,0.5 l 0.5,0.8660254037844384 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,4.098076211353316 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,4.098076211353316 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 v 1.0 h 0.9999999999999998 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.598076211353316 l -0.5,0.8660254037844384 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,4.598076211353316 l -0.8660254037844384,0.5 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 v 1.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,4.098076211353316 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,4.598076211353316 l -0.5,0.8660254037844384 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,3.732050807568877 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 v 1.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-4.464101615137754 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,-4.964101615137754 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,-4.098076211353316 h 1.0 l 0.4999999999999998,-0.8660254037844384 l -0.4999999999999998,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,-1.7320508075688772 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.732050807568877,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,2.3660254037844384 l -0.8660254037844384,-0.4999999999999998 l -0.5,0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l -0.4999999999999998,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.732050807568877 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844388 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.732050807568877 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l -0.8660254037844386,0.5 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,2.3660254037844384 h -0.9999999999999998 l -0.5,0.8660254037844388 l 0.5,0.8660254037844388 h 0.9999999999999998 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 l -0.8660254037844388,0.4999999999999998 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999996 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,0.0 v 1.0 h 0.9999999999999996 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-1.7320508075688772 h 0.9999999999999996 v -1.0 h -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.732050807568877,-1.7320508075688772 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999996 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,-3.098076211353316 l 0.5,0.8660254037844388 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,-3.098076211353316 l 0.8660254037844388,-0.5 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-3.098076211353316 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.464101615137754 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.464101615137754 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-4.464101615137754 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-4.464101615137754 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-3.598076211353316 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-3.098076211353316 l 0.8660254037844384,-0.5 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,-3.098076211353316 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,-3.098076211353316 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,-2.232050807568877 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,-1.3660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,-0.3660254037844386 v -1.0 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.8660254037844384,0.5 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,1.3660254037844386 l -0.8660254037844384,0.5 l 0.8660254037844384,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.3660254037844384,1.3660254037844386 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 h -1.0 v 0.9999999999999998 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,1.8660254037844386 l -0.8660254037844384,-0.5 v 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.732050807568877 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.732050807568877 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.4999999999999998 l 0.4999999999999998,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.732050807568877 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,1.8660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,1.3660254037844386 l -0.8660254037844386,0.5 l 0.8660254037844386,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,1.3660254037844386 v 0.9999999999999998 l 0.8660254037844388,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,1.3660254037844386 h -0.9999999999999998 v 0.9999999999999998 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.8660254037844384,0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844388,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.8660254037844388,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.3660254037844384,-1.3660254037844386 v 1.0 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 h 0.9999999999999998 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.732050807568877 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 l -0.4999999999999998,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-0.3660254037844386 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l -0.4999999999999998,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.0 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l -0.8660254037844386,0.5 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-0.3660254037844386 h 0.9999999999999998 v -1.0 h -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-0.3660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 0.9999999999999998 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.8660254037844386,-0.5 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 v -1.0 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 l -0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l -0.8660254037844384,-0.5 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,0.5 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.464101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-4.098076211353316 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-5.830127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-4.098076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-4.464101615137754 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-4.464101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-4.464101615137754 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-4.464101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,-4.964101615137754 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-4.098076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-2.732050807568877 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-2.732050807568877 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-1.7320508075688772 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,-1.7320508075688772 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,0.0 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,1.0 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,3.232050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,2.732050807568877 l 0.8660254037844393,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,2.732050807568877 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,3.732050807568877 l 0.8660254037844393,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.732050807568877,3.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,3.732050807568877 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,3.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,3.232050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,4.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,5.098076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,4.098076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,4.098076211353316 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,4.098076211353316 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.598076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,5.098076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,5.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,4.598076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,5.464101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,3.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,3.732050807568877 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,3.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,3.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-4.464101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,-4.464101615137754 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-5.464101615137754 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-4.464101615137754 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-5.830127018922193 l 0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 l 0.4999999999999998,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-4.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,-4.964101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-4.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-1.7320508075688772 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.732050807568877,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,2.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,2.3660254037844384 l 0.4999999999999998,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,4.098076211353316 l 0.4999999999999998,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,3.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,2.3660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,2.3660254037844384 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,2.3660254037844384 l 0.8660254037844388,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,1.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,0.0 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-1.7320508075688772 h 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.732050807568877,-1.7320508075688772 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.232050807568877,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,-2.232050807568877 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-3.098076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-3.098076211353316 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-3.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-3.098076211353316 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-3.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-3.598076211353316 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.464101615137754 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.464101615137754 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.464101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.464101615137754 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.464101615137754 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-4.964101615137754 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-3.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-4.098076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-3.098076211353316 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-3.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-3.098076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-3.098076211353316 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-3.598076211353316 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-2.732050807568877 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,-1.7320508075688772 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-0.3660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,-0.8660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,0.0 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.732050807568877,1.0 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.232050807568877,1.8660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.8660254037844384,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,2.3660254037844384 l 0.8660254037844384,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,1.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,1.8660254037844386 l 0.8660254037844386,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.732050807568877 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,2.3660254037844384 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,1.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,1.3660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,2.3660254037844384 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,1.3660254037844386 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.8660254037844384,0.5 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-0.3660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.3660254037844384,-0.3660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-2.232050807568877 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-3.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-3.098076211353316 l 0.4999999999999998,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-0.3660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.3660254037844384,-0.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-0.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,1.3660254037844386 l 0.4999999999999998,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-0.3660254037844386 h 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-0.3660254037844386 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-2.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-0.3660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t3636D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t3D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,0.8660254037844393 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 l -0.5,0.8660254037844393 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,4.330127018922193 h -1.0 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l -0.5,-0.8660254037844393 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 l -0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 h -1.0 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l -0.5,-0.8660254037844384 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l -0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h -1.0 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l -0.5,-0.8660254037844388 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l -0.5,-0.8660254037844386 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(255,255,0)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -0.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t4612D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.732050807568877 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844386,-0.4999999999999991 h -1.0 l -0.8660254037844386,0.4999999999999991 l -0.4999999999999998,0.8660254037844384 v 1.0 l 0.4999999999999998,0.8660254037844393 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,-4.732050807568877 l 0.5,-0.8660254037844393 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-2.8660254037844384 l 0.8660254037844384,0.5 l 0.5,-0.8660254037844388 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,-2.3660254037844384 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844388 v -0.9999999999999996 l -0.5,-0.8660254037844393 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 l -0.5,0.8660254037844393 v 0.9999999999999996 l 0.5,0.8660254037844388 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 l 0.8660254037844384,-0.5 v -0.9999999999999998 l -0.8660254037844384,-0.5 l -0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 v -0.9999999999999998 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 l 0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.964101615137754,3.8660254037844384 l 0.5,0.8660254037844384 l 0.8660254037844384,-0.5 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.098076211353316,3.3660254037844384 l 0.8660254037844384,0.5 l 0.8660254037844384,-0.5 v -1.0 l -0.8660254037844384,-0.4999999999999998 l -0.8660254037844384,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.098076211353316,3.3660254037844384 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 v -1.0 l -0.8660254037844388,-0.4999999999999998 l -0.8660254037844386,0.4999999999999998 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,4.732050807568877 v 1.0 l 0.5,0.8660254037844393 l 0.8660254037844388,0.5 h 1.0 l 0.8660254037844384,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844384 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,4.732050807568877 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,4.732050807568877 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,4.732050807568877 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,3.8660254037844384 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,3.3660254037844384 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844384 v 1.0 l 0.5,0.8660254037844393 l 0.8660254037844384,0.5 h 1.0 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844393 v -1.0 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,2.3660254037844384 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l -0.8660254037844388,0.4999999999999998 v 1.0 l 0.8660254037844388,0.5 l 0.8660254037844388,-0.5 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,-4.732050807568877 l 0.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844393 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-2.3660254037844384 l 0.8660254037844388,-0.5 l 0.5,-0.8660254037844388 v -0.9999999999999996 l -0.5,-0.8660254037844393 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844393 v 0.9999999999999996 l 0.5,0.8660254037844388 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 v -0.9999999999999998 h -1.0 v 0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.732050807568877,1.0 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844388,-0.5 h -1.0 l -0.8660254037844384,0.5 l -0.5,0.8660254037844386 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844384,0.4999999999999998 h 1.0 l 0.8660254037844388,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,1.5 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,1.5 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844384 v 1.0 l 0.4999999999999998,0.8660254037844384 l 0.8660254037844386,0.5 h 1.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,1.0 l -0.8660254037844386,0.5 l 0.5,0.8660254037844384 l 0.8660254037844386,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7320508075688772,0.0 v 1.0 l 0.5,0.8660254037844386 l 0.8660254037844388,0.4999999999999998 h 1.0 l 0.8660254037844384,-0.4999999999999998 l 0.5,-0.8660254037844386 v -1.0 l -0.5,-0.8660254037844386 l -0.8660254037844384,-0.5 h -1.0 l -0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l -0.5,0.8660254037844386 l 0.8660254037844386,0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.3660254037844386,-2.3660254037844384 v 0.9999999999999998 l 0.8660254037844386,0.5 l 0.8660254037844388,-0.5 v -0.9999999999999998 l -0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 l 0.8660254037844386,-0.5 l -0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -0.9999999999999996 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.732050807568877 h 1.0 v -0.9999999999999996 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 v -0.9999999999999996 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 v 0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 l -0.8660254037844386,-0.5 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 l -0.8660254037844388,-0.5 l -0.8660254037844388,0.5 v 0.9999999999999998 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l -0.4999999999999998,-0.8660254037844386 l -0.8660254037844388,0.5 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.8660254037844386,-0.5 l -0.8660254037844386,0.5 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v 1.0 l 0.8660254037844386,0.5 l 0.8660254037844386,-0.5 v -1.0 l -0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(100,149,237)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 v -0.9999999999999998 l -0.5,-0.8660254037844388 l -0.8660254037844386,-0.5 h -1.0 l -0.8660254037844386,0.5 l -0.4999999999999998,0.8660254037844388 v 0.9999999999999998 l 0.4999999999999998,0.8660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-5.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-4.732050807568877 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-5.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-3.732050807568877 v -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,-3.732050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-2.8660254037844384 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-2.8660254037844384 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-2.8660254037844384 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-2.3660254037844384 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-2.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,-0.8660254037844386 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-1.3660254037844386 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,3.3660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,3.3660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,2.3660254037844384 l 0.8660254037844386,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,1.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,1.8660254037844386 l 0.8660254037844384,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,2.3660254037844384 l 0.8660254037844384,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,2.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,3.8660254037844384 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.964101615137754,3.8660254037844384 l 0.8660254037844384,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,3.3660254037844384 l 0.8660254037844384,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.098076211353316,3.3660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,3.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.098076211353316,3.3660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,3.3660254037844384 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,4.732050807568877 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,5.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.232050807568877 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,4.232050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,3.3660254037844384 l 0.4999999999999998,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,4.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,5.732050807568877 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,3.8660254037844384 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,3.8660254037844384 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,3.3660254037844384 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,3.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,3.3660254037844384 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,2.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l 0.8660254037844388,0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,2.3660254037844384 l 0.8660254037844388,-0.4999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-4.732050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-5.598076211353316 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-3.732050807568877 v -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-2.8660254037844384 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-2.3660254037844384 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-2.3660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.098076211353316,-1.3660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.098076211353316,-1.3660254037844386 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,1.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,1.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,2.3660254037844384 l 0.4999999999999998,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,1.5 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,1.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,1.5 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7320508075688772,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-0.5 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-2.3660254037844384 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.3660254037844386,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.732050807568877 v -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.732050807568877 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.732050807568877 v -0.9999999999999996 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-3.232050807568877 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,-3.732050807568877 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-2.3660254037844384 l 0.4999999999999998,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-2.8660254037844384 l 0.8660254037844388,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 v -0.9999999999999998 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.232050807568877,-0.8660254037844386 l 0.8660254037844388,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.732050807568877,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.3660254037844384,-1.3660254037844386 l 0.4999999999999998,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.8660254037844386,-0.5 l 0.8660254037844386,0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.8660254037844386,-0.5 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t488D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.414213562373095,0.0 l -0.7071067811865479,-0.7071067811865476 h -1.0 l -0.707106781186547,0.7071067811865476 v 1.0 l 0.707106781186547,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.414213562373095,-3.414213562373095 l -0.7071067811865479,-0.7071067811865479 h -1.0 l -0.707106781186547,0.7071067811865479 v 1.0 l 0.707106781186547,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.121320343559643,-4.121320343559643 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.414213562373095,4.414213562373095 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.707106781186547 h 1.0 l 0.7071067811865479,-0.707106781186547 v -1.0 l -0.7071067811865479,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,4.414213562373095 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.707106781186547 h 1.0 l 0.7071067811865476,-0.707106781186547 v -1.0 l -0.7071067811865476,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.414213562373095,4.414213562373095 l -0.7071067811865479,0.7071067811865479 v 1.0 l 0.7071067811865479,0.707106781186547 h 1.0 l 0.7071067811865475,-0.707106781186547 v -1.0 l -0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.414213562373095,3.414213562373095 l -0.7071067811865479,-0.7071067811865475 h -1.0 l -0.707106781186547,0.7071067811865475 v 1.0 l 0.707106781186547,0.7071067811865479 h 1.0 l 0.7071067811865479,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.414213562373095,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.414213562373095 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.414213562373095,3.414213562373095 l -0.7071067811865475,-0.7071067811865475 h -0.9999999999999999 l -0.7071067811865476,0.7071067811865475 v 1.0 l 0.7071067811865476,0.7071067811865479 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.414213562373095,3.414213562373095 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.121320343559643,2.7071067811865475 l -0.7071067811865479,0.7071067811865475 v 1.0 l 0.7071067811865479,0.7071067811865479 h 1.0 l 0.707106781186547,-0.7071067811865479 v -1.0 l -0.707106781186547,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.121320343559643,1.7071067811865475 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.121320343559643,-0.7071067811865476 l -0.7071067811865479,0.7071067811865476 v 1.0 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.707106781186547,-0.7071067811865475 v -1.0 l -0.707106781186547,-0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.121320343559643,-1.7071067811865475 v 0.9999999999999999 h 1.0 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.414213562373095,-2.414213562373095 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.707106781186547,-0.7071067811865475 v -1.0 l -0.707106781186547,-0.7071067811865479 h -1.0 l -0.7071067811865479,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.414213562373095,-3.414213562373095 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865479,-0.7071067811865479 v -1.0 l -0.7071067811865479,-0.707106781186547 h -1.0 l -0.7071067811865475,0.707106781186547 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.7071067811865476,-4.121320343559643 h 0.9999999999999999 v -1.0 h -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 h 1.0 l 0.7071067811865476,-0.7071067811865479 v -1.0 l -0.7071067811865476,-0.707106781186547 h -1.0 l -0.7071067811865475,0.707106781186547 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.7071067811865475,-4.121320343559643 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.414213562373095,-3.414213562373095 l 0.7071067811865475,-0.7071067811865479 v -1.0 l -0.7071067811865475,-0.707106781186547 h -1.0 l -0.7071067811865479,0.707106781186547 v 1.0 l 0.7071067811865479,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.414213562373095,-2.414213562373095 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.414213562373095,0.0 l 0.7071067811865475,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865479,0.7071067811865475 v 0.9999999999999999 l 0.7071067811865479,0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.414213562373095,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.7071067811865475,1.7071067811865475 l -0.7071067811865475,-0.7071067811865475 h -1.0 l -0.7071067811865479,0.7071067811865475 v 1.0 l 0.7071067811865479,0.7071067811865475 h 1.0 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.7071067811865475,1.7071067811865475 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.7071067811865476,1.7071067811865475 l -0.7071067811865476,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865476,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7071067811865475,1.7071067811865475 h -0.9999999999999999 v 1.0 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.414213562373095,1.0 l -0.7071067811865475,0.7071067811865475 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865479,-0.7071067811865475 v -1.0 l -0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.414213562373095,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 h 1.0 l 0.7071067811865479,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865479,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.7071067811865476,-1.7071067811865475 v 0.9999999999999999 h 0.9999999999999999 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.414213562373095 l 0.7071067811865476,0.7071067811865475 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865479 h -0.9999999999999999 l -0.7071067811865476,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.414213562373095 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865479 h -1.0 l -0.7071067811865475,0.7071067811865479 v 1.0 l 0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 h -1.0 v 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.7071067811865475,-0.7071067811865476 h -1.0 l -0.7071067811865475,0.7071067811865476 v 1.0 l 0.7071067811865475,0.7071067811865475 h 1.0 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v 1.0 l 0.7071067811865476,0.7071067811865475 h 0.9999999999999999 l 0.7071067811865475,-0.7071067811865475 v -1.0 l -0.7071067811865475,-0.7071067811865476 h -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(176,196,222)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.7071067811865476,-0.7071067811865476 v -0.9999999999999999 l -0.7071067811865476,-0.7071067811865475 h -1.0 l -0.7071067811865475,0.7071067811865475 v 0.9999999999999999 l 0.7071067811865475,0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,1.7071067811865475 l 0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,-0.7071067811865476 l 0.7071067811865479,0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,-1.7071067811865475 l 0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,-4.121320343559643 l 0.7071067811865479,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,-4.121320343559643 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,-4.121320343559643 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,-3.414213562373095 l 0.7071067811865479,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,4.414213562373095 l 0.7071067811865479,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,4.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,5.121320343559643 l 0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.414213562373095 l 0.7071067811865476,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,5.121320343559643 l 0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,4.414213562373095 l 0.7071067811865475,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,4.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,5.121320343559643 l 0.7071067811865479,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.121320343559643,2.7071067811865475 l 0.7071067811865479,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,3.414213562373095 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,2.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,2.7071067811865475 l 0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.414213562373095 l 0.7071067811865476,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,2.7071067811865475 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,2.7071067811865475 l 0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,4.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,2.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,3.414213562373095 l 0.7071067811865479,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,1.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,2.7071067811865475 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,1.0 l 0.7071067811865479,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,-0.7071067811865476 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,0.0 l 0.7071067811865479,-0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,-1.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.121320343559643,-0.7071067811865476 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,-2.414213562373095 l 0.7071067811865479,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.414213562373095,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,-2.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,-3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,-4.121320343559643 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,-4.121320343559643 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,-4.121320343559643 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.414213562373095 l 0.7071067811865476,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,-4.121320343559643 l 0.7071067811865475,0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,-4.121320343559643 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,-4.121320343559643 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,-4.121320343559643 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,-3.414213562373095 l 0.7071067811865475,-0.7071067811865479 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,-3.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,-2.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,-2.414213562373095 l 0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,0.0 l 0.7071067811865475,-0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.414213562373095,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,2.7071067811865475 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.414213562373095,1.0 l 0.7071067811865475,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,2.7071067811865475 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,1.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,2.7071067811865475 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 l 0.7071067811865476,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,2.7071067811865475 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,1.7071067811865475 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.414213562373095,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,-0.7071067811865476 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,-1.7071067811865475 h 0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.7071067811865476,-0.7071067811865476 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.414213562373095 l 0.7071067811865476,0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.414213562373095 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.414213562373095 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,-1.7071067811865475 l 0.7071067811865475,-0.7071067811865475 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,-1.7071067811865475 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,-0.7071067811865476 v -0.9999999999999999 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.7071067811865475,-0.7071067811865476 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.7071067811865475,-0.7071067811865476 l 0.7071067811865475,0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.7071067811865476,-0.7071067811865476 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t4D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,5.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,5.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,4.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-4.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-5.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-5.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-5.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-4.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,3.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,4.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -5.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,4.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,4.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.0,-4.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-4.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-4.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-3.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-3.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,2.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,-2.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-2.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-2.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.0,1.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,1.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.0,-1.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 v -1.0 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v 1.0 h 1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 v -1.0 h -1.0 v 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(60,179,113)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 v 1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,6.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-5.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -6.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,5.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-4.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,4.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-2.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,2.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,-1.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.0 v -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/t6D.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="300.0" height="299.9999999999999" font-size="1" viewBox="0 0 300 300"><g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-4.330127018922193 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,4.330127018922193 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,4.330127018922193 h -1.0 l -0.5,0.8660254037844393 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,3.4641016151377544 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 l 0.5,-0.8660254037844393 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -4.0,1.7320508075688772 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,2.598076211353316 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,3.4641016151377544 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,3.4641016151377544 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844393 h 1.0 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,2.598076211353316 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,0.8660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844393 h -1.0 l -0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,-2.598076211353316 h 1.0 l 0.5,-0.8660254037844384 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -2.5,0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,1.7320508075688772 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,1.7320508075688772 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844384 h 1.0 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844388 h 1.0 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 2.0,0.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 l 0.5,-0.8660254037844388 l -0.5,-0.8660254037844384 h -1.0 l -0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844388 h -1.0 l -0.5,0.8660254037844388 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M -1.0,0.0 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 l -0.5,-0.8660254037844386 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(138,43,226)" fill-opacity="1.0" stroke-width="0.0" font-size="1.0em"><path d="M 0.0,0.0 h -1.0 l -0.5,0.8660254037844386 l 0.5,0.8660254037844386 h 1.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 5.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,5.196152422706632 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,-0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-4.330127018922193 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-5.196152422706632 l 0.5,0.8660254037844393 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -5.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,4.330127018922193 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-3.4641016151377544 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-4.330127018922193 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,-0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-2.598076211353316 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-3.4641016151377544 l 0.5,0.8660254037844384 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -4.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -3.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,2.598076211353316 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,1.7320508075688772 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 2.0,0.0 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,-0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,-1.7320508075688772 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,-1.7320508075688772 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-2.598076211353316 l 0.5,0.8660254037844388 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -2.5,-0.8660254037844386 h 1.0 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,-0.8660254037844386 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.5,0.8660254037844386 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,-0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M 0.0,0.0 l 0.5,0.8660254037844386 " /></g></g><g transform="matrix(29.99999999999999,0.0,0.0,29.99999999999999,150.00000000000003,149.99999999999994)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="2.0e-2" font-size="1.0em"><path d="M -1.0,0.0 h 1.0 " /></g></g></g></svg>
− diagrams/tree500.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="233.40678713089463" font-size="1" viewBox="0 0 400 233"><g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.4010796456188147,-1.0577346848832085 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3690270794102326,-1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.33697451320165056,-0.9936295524660443 l 1.1915322378701072,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.33697451320165056,-0.9936295524660443 l -1.1915322378701072,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8545577246684567,-0.9615769862574624 l 0.6378898894186467,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8545577246684567,-0.9615769862574624 l -0.6378898894186467,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4924476140871032,-0.9295244200488803 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5245001802956852,-0.8974718538402982 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4956528707079615,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5277054369165435,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4956528707079615,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.21666783524980993,-0.9295244200488803 l 1.1796220802115471,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.21666783524980993,-0.9295244200488803 l -1.1796220802115471,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3962899154613573,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4283424816699393,-0.865419287631716 l 0.21435153651989267,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4283424816699393,-0.865419287631716 l -0.21435153651989267,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.642694018189832,-0.833366721423134 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.642694018189832,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6779518410192722,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.61064145198125,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5785888857726675,-0.7692615890059697 l 0.20433510957971077,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5785888857726675,-0.7692615890059697 l -0.20433510957971077,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7829239953523786,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7508714291437966,-0.7051564565888057 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7508714291437966,-0.7051564565888057 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8149765615609605,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7829239953523786,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7508714291437966,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7829239953523786,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7540766857646548,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7861292519732368,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7540766857646548,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7861292519732368,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.8181818181818188,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6867662967266321,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7188188629352146,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6867662967266321,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6867662967266321,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7188188629352146,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6867662967266321,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7220241195560728,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6899715533474904,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7220241195560728,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6547137305180502,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6226611643094682,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6547137305180502,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6226611643094682,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6579189871389084,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6258664209303264,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6579189871389084,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6258664209303264,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6579189871389084,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6899715533474904,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7220241195560728,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6899715533474904,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7540766857646548,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.7861292519732368,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.374253776192957,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.342201209984375,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3101486437757925,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.342201209984375,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.342201209984375,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.374253776192957,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.374253776192957,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.406306342401539,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.438358908610121,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.470411474818703,-0.5128410593373132 l 7.211827396930968e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.470411474818703,-0.5128410593373132 l -7.211827396930968e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.542529748788013,-0.48078849312873106 l 4.807884931287312e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.542529748788013,-0.48078849312873106 l -4.807884931287312e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5906085981008857,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5585560318923037,-0.416683360711567 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5585560318923037,-0.416683360711567 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6226611643094682,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6547137305180502,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6258664209303264,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6579189871389084,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6258664209303264,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4944508994751398,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5265034656837217,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5585560318923037,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5585560318923037,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5906085981008857,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6258664209303264,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.593813854721744,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.52970872230458,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.561761288513162,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.52970872230458,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.497656156095998,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.561761288513162,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.593813854721744,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4944508994751398,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4623983332665578,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4335510236788336,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.465603589887416,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.497656156095998,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5457350054088712,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3982932008493933,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4335510236788336,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4014984574702516,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4736167314395612,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4415641652309792,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4095115990223972,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3454064666052332,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3774590328138152,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3133539003966508,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3454064666052332,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3133539003966508,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3454064666052332,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3774590328138152,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.5817941423935258,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6138467086021082,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.6458992748106902,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.833366721423134 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2460435113586286,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2492487679794868,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2171962017709048,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2492487679794868,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1819383789414646,-0.801314155214552 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1498858127328822,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1819383789414646,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2460435113586286,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2460435113586286,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2813013341880688,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2139909451500466,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1819383789414646,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1498858127328822,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1498858127328822,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1851436355623228,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1210385031451584,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1530910693537404,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1851436355623228,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2171962017709048,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2492487679794868,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1851436355623228,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2171962017709048,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1851436355623228,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1530910693537404,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.1851436355623228,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.2171962017709048,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.4315477382907975,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.3994951720822155,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9629542449617372,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9309016787531551,-0.865419287631716 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9629542449617372,-0.833366721423134 l 0.5014473736928564,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9629542449617372,-0.833366721423134 l -0.5014473736928564,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.46150687126888085,-0.801314155214552 l 0.6312853079049643,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.46150687126888085,-0.801314155214552 l -0.6312853079049643,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.16977843663608339,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.13772587042750128,-0.7372090227973878 l 0.5784486557955048,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.13772587042750128,-0.7372090227973878 l -0.5784486557955048,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.716174526223006,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7482270924315882,-0.6731038903802236 l 0.20934332304980172,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7482270924315882,-0.6731038903802236 l -0.20934332304980172,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9575704154813899,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9575704154813899,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9896229816899719,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0216755478985542,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0216755478985542,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0569333707279944,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9896229816899719,-0.5448936255458953 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9607756721022481,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9928282383108301,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 1.0248808045194124,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9928282383108301,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9287231058936659,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9607756721022481,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5388837693817864,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5068312031732044,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5388837693817864,-0.5769461917544774 l 0.2904763812652751,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5388837693817864,-0.5769461917544774 l -0.2904763812652751,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8293601506470615,-0.5448936255458953 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8293601506470615,-0.5448936255458953 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8934652830642257,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9255178492728077,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8966705396850839,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.9287231058936659,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8966705396850839,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7652550182298973,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7652550182298973,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7973075844384795,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8293601506470615,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8614127168556437,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8325654072679197,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8646179734765019,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8325654072679197,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8005128410593377,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7332024520213153,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7332024520213153,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7684602748507555,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7011498858127333,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6690973196041511,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7043551424335915,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6723025762250093,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7043551424335915,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7364077086421735,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7684602748507555,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8325654072679197,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2484073881165113,-0.5448936255458953 l 0.15625626026683764,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2484073881165113,-0.5448936255458953 l -0.15625626026683764,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.404663648383349,-0.5128410593373132 l 8.814455707360072e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.404663648383349,-0.5128410593373132 l -8.814455707360072e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4928082054569497,-0.48078849312873106 l 4.807884931287312e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4928082054569497,-0.48078849312873106 l -4.807884931287312e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5408870547698228,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5729396209784049,-0.416683360711567 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5729396209784049,-0.416683360711567 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6370447533955691,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6370447533955691,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6723025762250093,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6081974438078451,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.6402500100164273,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5088344885612407,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.544092311390681,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5120397451820989,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5761448775992631,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.544092311390681,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4447293561440766,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4126767899354945,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4447293561440766,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4767819223526587,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4767819223526587,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5088344885612407,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4767819223526587,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4767819223526587,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5088344885612407,-0.2564205296686566 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5408870547698228,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5761448775992631,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.544092311390681,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5120397451820989,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4447293561440766,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4126767899354945,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4126767899354945,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4447293561440766,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4767819223526587,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5120397451820989,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4799871789735169,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4479346127649348,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3806242237269124,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4158820465563527,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3838294803477706,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4158820465563527,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4479346127649348,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4799871789735169,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5120397451820989,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4479346127649348,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4799871789735169,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4479346127649348,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4158820465563527,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4479346127649348,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4960134620778079,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3165190913097482,-0.48078849312873106 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3165190913097482,-0.48078849312873106 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3806242237269124,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3517769141391885,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3838294803477706,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2524139588925841,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2524139588925841,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2844665251011662,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3165190913097482,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3485716575183303,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3838294803477706,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3517769141391885,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3197243479306064,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2876717817220244,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.22356664930486023,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2556192155134423,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.3197243479306064,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.4078689050042072,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.215112784967372e-2,-0.5128410593373132 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.215112784967372e-2,-0.5128410593373132 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1562562602668378,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1562562602668378,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1883088264754199,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1562562602668378,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1883088264754199,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1562562602668378,-0.3525782282944028 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1562562602668378,-0.3525782282944028 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.220361392684002,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1883088264754199,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.15946151688769603,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.19151408309627813,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.22356664930486023,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.215112784967372e-2,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.12740895067911404,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.535638447053192e-2,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.15946151688769603,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.19151408309627813,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.15946151688769603,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.19151408309627813,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.12740895067911404,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.15946151688769603,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.804599543250952e-2,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.804599543250952e-2,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.330381826194982e-2,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.013141552143184e-4,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.125125205336773e-2,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.535638447053192e-2,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.2516126447373695,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5420890260026446,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5100364597940626,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.5420890260026446,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7514323490524465,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.7193797828438643,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.44072278536800336,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.44072278536800336,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.4054649625385631,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.47277535157658546,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5048279177851676,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5048279177851676,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.47277535157658546,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.44072278536800336,-0.5769461917544774 l 0.10817741095396452,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.44072278536800336,-0.5769461917544774 l -0.10817741095396452,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.33254537441403886,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.30049280820545676,-0.5128410593373132 l 0.1201971232821828,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.30049280820545676,-0.5128410593373132 l -0.1201971232821828,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.180295684923274,-0.48078849312873106 l 0.11218398173003728,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.180295684923274,-0.48078849312873106 l -0.11218398173003728,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.811170319323673e-2,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.811170319323673e-2,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.605913698465463e-2,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.006570776072527e-3,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.006570776072527e-3,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.125125205336773e-2,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.605913698465463e-2,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -4.006570776072527e-3,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 2.804599543250952e-2,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 6.330381826194982e-2,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 3.125125205336773e-2,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.013141552143184e-4,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.285388036379642e-2,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -8.013141552143184e-4,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -3.285388036379642e-2,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.10016426940181877,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.13221683561040087,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.16106414519812473,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.12901157898954266,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -9.695901278096057e-2,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -6.490644657237853e-2,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.29247966665331127,-0.4487359269201491 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.29247966665331127,-0.4487359269201491 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2283745342361471,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2283745342361471,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.19632196802756502,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.22516927761528888,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.1931167114067068,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.257221843823871,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.22516927761528888,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2892744100324531,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3213269762410352,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.29247966665331127,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.257221843823871,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2892744100324531,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3213269762410352,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.42068993148763956,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.41748467486678137,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2892744100324531,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.17709042830241578,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.42068993148763956,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.41748467486678137,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.41748467486678137,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2972875515845986,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3293401177931807,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,-0.5448936255458953 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.48479506390480376,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.48479506390480376,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5456949397011097,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5136423734925276,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.48158980728394557,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5136423734925276,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.48158980728394557,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5136423734925276,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.58095276253055,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5777475059096917,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5456949397011097,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.43751752874714517,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.46957009495572727,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5336752273728914,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5016226611643093,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.46957009495572727,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.43751752874714517,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1409311270483595,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.1729836932569416,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.092792179173845,-0.7692615890059697 l 0.10316919748387357,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.092792179173845,-0.7692615890059697 l -0.10316919748387357,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9896229816899715,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9575704154813894,-0.7051564565888057 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9255178492728073,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8934652830642252,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9223125926519491,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.890260026443367,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9223125926519491,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9543651588605312,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9864177250691133,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1959613766577186,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1959613766577186,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1639088104491364,-0.7051564565888057 l 0.12220040867021918,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1639088104491364,-0.7051564565888057 l -0.12220040867021918,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0417084017789173,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0417084017789173,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.006450578949477,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0737609679874995,-0.6410513241716416 l 8.413798629752796e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0737609679874995,-0.6410513241716416 l -8.413798629752796e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9896229816899715,-0.6089987579630594 l 0.13622340638647384,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9896229816899715,-0.6089987579630594 l -0.13622340638647384,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8533995753034976,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8213470090949155,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7892944428863335,-0.5128410593373132 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8213470090949155,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7892944428863335,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7892944428863335,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7540366200568932,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8213470090949155,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7892944428863335,-0.3846307945029849 l 0.17628911414720144,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7892944428863335,-0.3846307945029849 l -0.17628911414720144,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.613005328739132,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.613005328739132,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.58095276253055,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,-0.2564205296686566 l 0.1923153972514925,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,-0.2564205296686566 l -0.1923153972514925,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.29247966665331127,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.29247966665331127,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.257221843823871,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.32453223286189337,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.41748467486678137,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3213269762410352,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.2892744100324531,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3565847990704754,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3886373652790575,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.42068993148763956,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.45274249769622166,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.48158980728394557,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.44953724107536347,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.41748467486678137,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3213269762410352,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3854321086581993,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3533795424496172,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3213269762410352,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7091630273648784,-0.22436796346007448 l 9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7091630273648784,-0.22436796346007448 l -9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.613005328739132,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.613005328739132,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.613005328739132,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.58095276253055,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.548900196321968,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5168476301133859,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5456949397011097,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5136423734925276,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5777475059096917,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5456949397011097,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5777475059096917,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6771104611562961,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6771104611562961,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6771104611562961,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6771104611562961,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6450578949477141,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6739052045354379,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6418526383268559,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7059577707440201,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6739052045354379,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6418526383268559,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7059577707440201,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6739052045354379,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6418526383268559,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6418526383268559,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8053207259906245,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8373732921992066,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8053207259906245,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7732681597820424,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8053207259906245,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8053207259906245,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7700629031611842,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8373732921992066,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8021154693697663,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8341680355783484,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8021154693697663,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7700629031611842,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8021154693697663,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8341680355783484,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8021154693697663,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7059577707440201,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5136423734925276,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5777475059096917,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5456949397011097,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.5777475059096917,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6418526383268559,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.6098000721182738,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9335309908249528,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,-6.410513241716409e-2 l 9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,-6.410513241716409e-2 l -9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9014784246163707,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8694258584077887,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9014784246163707,3.205256620858221e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9014784246163707,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8694258584077887,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8341680355783484,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8662206017869305,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9335309908249528,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,9.615769862574641e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,0.1602628310429104 l 9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,0.1602628310429104 l -9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9335309908249528,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9335309908249528,0.1923153972514926 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8982731679955125,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9655835570335349,0.2243679634600746 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9303257342040946,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1258463880764453,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,0.2243679634600746 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,0.2243679634600746 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,0.2884730958772388 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,0.2884730958772388 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,0.3205256620858208 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1578989542850273,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1578989542850273,0.3205256620858208 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1899515204936095,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1578989542850273,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1258463880764453,0.4166833607115672 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,0.4487359269201492 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,0.4807884931287314 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,0.5128410593373134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,0.4807884931287314 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,0.4487359269201492 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.154693697664169,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1867462638727513,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.154693697664169,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1258463880764453,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.154693697664169,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9303257342040946,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8982731679955125,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8662206017869305,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8982731679955125,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,3.205256620858221e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.997636123242117,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9303257342040946,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9623783004126767,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7860891862654753,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8181417524740573,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7860891862654753,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8181417524740573,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.7860891862654753,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8181417524740573,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.8501943186826394,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1258463880764453,-0.5769461917544774 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,-0.5128410593373132 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0296886894506991,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9944308666212588,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,-0.416683360711567 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,-0.416683360711567 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0617412556592811,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.026483432829841,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0585359990384229,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9864177250691133,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1578989542850273,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1867462638727513,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.154693697664169,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0705557113666413,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.038503145158059,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2861092191193557,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2540566529107737,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2540566529107737,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2220040867021917,-0.6089987579630594 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2508513962899155,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2187988300813335,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2829039624984975,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2508513962899155,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2829039624984975,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1607035538282782,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2248086862454426,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1927561200368604,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0895869225529868,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.45830161464802266,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4644016186545934,-0.801314155214552 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4644016186545934,-0.801314155214552 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4002964862374294,-0.7692615890059697 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4002964862374294,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3682439200288474,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3682439200288474,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.6410513241716416 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3682439200288474,-0.6089987579630594 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.5769461917544774 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3682439200288474,-0.5448936255458953 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.5128410593373132 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.5128410593373132 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.272086221403101,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.304138787611683,-0.4487359269201491 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.304138787611683,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2688809647822428,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.416683360711567 l 0.14623983332665574,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3361913538202652,-0.416683360711567 l -0.14623983332665574,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1899515204936095,-0.3846307945029849 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1899515204936095,-0.3846307945029849 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1578989542850273,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1258463880764453,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.0937938218678633,-0.2884730958772386 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.090588565247005,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.122641131455587,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.154693697664169,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2220040867021917,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2540566529107737,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2187988300813335,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2508513962899155,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2187988300813335,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1867462638727513,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4824311871469211,-0.3846307945029849 l 0.13221683561040107,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4824311871469211,-0.3846307945029849 l -0.13221683561040107,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,-0.3525782282944028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3149565287070795,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3822669177451021,-0.3205256620858207 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4143194839536841,-0.2884730958772386 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3790616611242439,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3790616611242439,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3470090949156617,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.614648022757322,-0.3525782282944028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5825954565487401,-0.3205256620858207 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5505428903401577,-0.2884730958772386 l 0.10417084017789176,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5505428903401577,-0.2884730958772386 l -0.10417084017789176,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-0.2564205296686566 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.478424616370848,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4143194839536841,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.478424616370848,-9.615769862574619e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.478424616370848,-9.615769862574619e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-6.410513241716409e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,-6.410513241716409e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4143194839536841,-3.205256620858199e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3822669177451021,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3822669177451021,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3822669177451021,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,9.615769862574641e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,9.615769862574641e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3149565287070795,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3822669177451021,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.35021435153652,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3149565287070795,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3470090949156617,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3790616611242439,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3470090949156617,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3790616611242439,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3470090949156617,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4143194839536841,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.446372050162266,6.41051324171642e-2 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4431667935414079,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3790616611242439,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.478424616370848,-3.205256620858199e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.51047718257943,0.0 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.51047718257943,0.0 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4752193597499899,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5425297487880125,3.205256620858221e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,6.41051324171642e-2 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6066348812051765,9.615769862574641e-2 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6066348812051765,9.615769862574641e-2 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5425297487880125,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5425297487880125,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5072719259585718,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5393244921671543,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5713770583757363,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5393244921671543,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6707400136223405,0.1282102648343284 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6707400136223405,0.1282102648343284 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6386874474137585,0.1602628310429104 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6066348812051765,0.1923153972514926 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,0.2243679634600746 l 8.01314155214552e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,0.2243679634600746 l -8.01314155214552e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4944508994751393,0.2564205296686568 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4944508994751393,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.459193076645699,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.2884730958772388 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.2884730958772388 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.491245642854281,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5585560318923033,0.3205256620858208 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.352578228294403 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4944508994751393,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.459193076645699,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.491245642854281,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5585560318923033,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.523298209062863,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.523298209062863,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.523298209062863,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.491245642854281,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.2564205296686568 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.2564205296686568 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.2884730958772388 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.2884730958772388 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.3205256620858208 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.3205256620858208 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.352578228294403 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.384630794502985 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.384630794502985 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.4166833607115672 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.4487359269201492 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.4807884931287314 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.5128410593373134 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.5128410593373134 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.5448936255458954 l 9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.5448936255458954 l -9.615769862574625e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5585560318923033,0.5769461917544776 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.6089987579630596 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.6089987579630596 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.6410513241716418 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.6731038903802238 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.6731038903802238 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.7051564565888058 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.7051564565888058 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5585560318923033,0.737209022797388 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.76926158900597 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5265034656837213,0.76926158900597 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4623983332665573,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4944508994751393,0.8333667214231342 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4623983332665573,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4944508994751393,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.523298209062863,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.491245642854281,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.459193076645699,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.491245642854281,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.459193076645699,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.8013141552145522 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.8333667214231342 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5906085981008853,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.8974718538402984 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.9295244200488804 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.9615769862574626 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.9936295524660446 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.9936295524660446 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7508714291437957,1.0256821186746266 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7508714291437957,1.0256821186746266 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7797187387315199,1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7476661725229374,1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.9936295524660446 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.9615769862574626 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.523298209062863,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6226611643094677,0.737209022797388 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.7051564565888058 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.7051564565888058 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.737209022797388 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.76926158900597 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.8013141552145522 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.8333667214231342 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.8333667214231342 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6867662967266317,0.8974718538402984 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.782923995352378,0.8654192876317162 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.81497656156096,0.8974718538402984 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7797187387315199,0.9295244200488804 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.8117713049401019,0.8974718538402984 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7797187387315199,0.8654192876317162 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.8333667214231342 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.8013141552145522 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.76926158900597 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.737209022797388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.7051564565888058 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.6731038903802238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.6089987579630596 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.555350775271445,0.5769461917544776 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7508714291437957,0.5769461917544776 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.6089987579630596 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.6089987579630596 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7508714291437957,0.6410513241716418 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.6731038903802238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7476661725229374,0.6410513241716418 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.6089987579630596 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7476661725229374,0.5769461917544776 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.5448936255458954 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.5448936255458954 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.5128410593373134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.4807884931287314 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.4487359269201492 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.4166833607115672 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6194559076886095,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.587403341480027,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7188188629352137,0.352578228294403 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.384630794502985 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.352578228294403 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7156136063143554,0.3205256620858208 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6835610401057735,0.2884730958772388 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,0.2564205296686568 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5713770583757363,0.2243679634600746 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6034296245843183,0.1923153972514926 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6354821907929002,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6995873232100647,0.1602628310429104 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6675347570014822,0.1282102648343284 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6034296245843183,9.615769862574641e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5713770583757363,6.41051324171642e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5393244921671543,3.205256620858221e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5072719259585718,0.0 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4752193597499899,-3.205256620858199e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4431667935414079,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5072719259585718,-6.410513241716409e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4752193597499899,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4431667935414079,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4111142273328259,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4431667935414079,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4752193597499899,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4431667935414079,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,-0.2564205296686566 l 8.01314155214552e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6547137305180497,-0.2564205296686566 l -8.01314155214552e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5425297487880125,-0.19231539725149238 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,-0.16026283104291028 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5745823149965945,-0.16026283104291028 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.51047718257943,-0.12821026483432818 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5393244921671543,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5072719259585718,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6386874474137585,-0.12821026483432818 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6034296245843183,-9.615769862574619e-2 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6354821907929002,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5713770583757363,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5393244921671543,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6034296245843183,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5713770583757363,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.734845146039505,-0.22436796346007448 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.734845146039505,-0.22436796346007448 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.702792579830923,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6675347570014822,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6995873232100647,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.766897712248087,-0.19231539725149238 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.734845146039505,-0.16026283104291028 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.734845146039505,-0.16026283104291028 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6995873232100647,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7636924556272287,-0.12821026483432818 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7316398894186467,-0.16026283104291028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7636924556272287,-0.19231539725149238 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.7316398894186467,-0.22436796346007448 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6515084738971915,-0.2564205296686566 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5473376337192994,-0.2884730958772386 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5793901999278819,-0.3205256620858207 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6114427661364639,-0.3525782282944028 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4792259305260629,-0.3846307945029849 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.332986097199407,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3009335309908248,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.2688809647822428,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4002964862374294,-0.48078849312873106 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4002964862374294,-0.48078849312873106 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3682439200288474,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3970912296165712,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3650386634079892,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4323490524460114,-0.4487359269201491 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4611963620337352,-0.416683360711567 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4291437958251532,-0.4487359269201491 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3970912296165712,-0.48078849312873106 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.332986097199407,-0.5128410593373132 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3650386634079892,-0.5448936255458953 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.332986097199407,-0.5769461917544774 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3650386634079892,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.332986097199407,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3650386634079892,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.332986097199407,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3650386634079892,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4323490524460114,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4611963620337352,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4291437958251532,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.3970912296165712,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5285067510717578,-0.7692615890059697 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5605593172803398,-0.7372090227973878 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5605593172803398,-0.7372090227973878 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5253014944508996,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5926118834889218,-0.7051564565888057 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6246644496975038,-0.6731038903802236 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6246644496975038,-0.6731038903802236 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5894066268680636,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6567170159060862,-0.6410513241716416 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6214591930766455,-0.6089987579630594 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.653511759285228,-0.6410513241716416 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.6214591930766455,-0.6731038903802236 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5894066268680636,-0.7051564565888057 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5573540606594816,-0.7372090227973878 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5253014944508996,-0.7692615890059697 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4611963620337352,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.959748988340879,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.9276964221322969,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.959748988340879,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.21987309187066814,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 0.8577629812893149,-0.9615769862574624 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5285067510717578,-0.9615769862574624 l 6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5285067510717578,-0.9615769862574624 l -6.410513241716416e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4644016186545934,-0.9295244200488803 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4932489282423176,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4611963620337352,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5926118834889218,-0.9295244200488803 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5605593172803398,-0.8974718538402982 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5605593172803398,-0.8974718538402982 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5285067510717578,-0.865419287631716 l 3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4964541848631758,-0.833366721423134 l -3.205256620858208e-2,3.205256620858208e-2 " /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5253014944508996,-0.801314155214552 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.4932489282423176,-0.833366721423134 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5253014944508996,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5894066268680636,-0.865419287631716 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5573540606594816,-0.8974718538402982 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5894066268680636,-0.9295244200488803 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.5253014944508996,-0.9615769862574624 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3337692565807924,-0.9936295524660443 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3658218227893744,-1.0256821186746266 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g><g transform="matrix(99.99999999999997,0.0,0.0,99.99999999999997,200.0,116.70339356544733)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="1.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -0.3978743889979565,-1.0577346848832085 c 0.0,-1.77021435099417e-3 -1.4350422698640379e-3,-3.2052566208582082e-3 -3.2052566208582074e-3 -3.2052566208582082e-3c -1.77021435099417e-3,-1.0839436693748596e-19 -3.2052566208582082e-3,1.4350422698640379e-3 -3.2052566208582082e-3 3.2052566208582074e-3c -2.1678873387497193e-19,1.77021435099417e-3 1.4350422698640377e-3,3.2052566208582082e-3 3.205256620858207e-3 3.2052566208582082e-3c 1.77021435099417e-3,3.251831008124579e-19 3.2052566208582082e-3,-1.4350422698640375e-3 3.2052566208582082e-3 -3.2052566208582065e-3Z" /></g></g></g></svg>
− diagrams/zagD.svg
@@ -1,4 +0,0 @@-<?xml version="1.0" encoding="UTF-8"?>-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="400.0" height="121.33314464870149" font-size="1" viewBox="0 0 400 121"><g><g transform="matrix(155.84446764689915,0.0,0.0,155.84446764689915,200.0,60.666572324350746)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M 9.999999999999987e-2,-1.1102230246251565e-16 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 3.828243462710051e-2,7.257879895392585e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.82824346271005e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.8282434627100494e-2,7.257879895392584e-2 l 5.34375816403756e-2,-7.457183410406341e-2 l 3.8282434627100494e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 3.82824346271005e-2,7.257879895392584e-2 l -7.337601301398088e-2,1.5944281201100638e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 3.828243462710051e-2,7.257879895392585e-2 l -7.337601301398089e-2,1.594428120110064e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l -7.337601301398089e-2,1.5944281201100488e-3 l 2.8074862709504315e-2,-5.933858165922873e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504326e-2,-5.9338581659228715e-2 l -7.337601301398088e-2,1.5944281201100315e-3 l 2.8074862709504326e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l 2.8074862709504333e-2,-5.9338581659228715e-2 l 3.624092024358124e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 3.8282434627100466e-2,7.257879895392585e-2 l -7.337601301398088e-2,1.5944281201100312e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504347e-2,-5.933858165922869e-2 l -7.337601301398086e-2,1.5944281201099968e-3 l 2.8074862709504347e-2,-5.933858165922869e-2 l 3.624092024358122e-2,4.619532283129495e-2 l 2.8074862709504336e-2,-5.9338581659228694e-2 l 3.624092024358122e-2,4.619532283129495e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l -7.337601301398088e-2,1.5944281201100002e-3 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l 2.807486270950435e-2,-5.93385816592287e-2 l 3.624092024358122e-2,4.619532283129496e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l 2.807486270950434e-2,-5.93385816592287e-2 l 3.624092024358123e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 l 3.6240920243581234e-2,4.6195322831294953e-2 l -5.145262636246846e-2,1.0514607062347006e-2 " /></g></g><g transform="matrix(155.84446764689915,0.0,0.0,155.84446764689915,200.0,60.666572324350746)"><g stroke="rgb(0,0,0)" stroke-opacity="1.0" fill="rgb(0,0,0)" fill-opacity="0.0" stroke-width="1.0e-2" font-size="1.0em"><path d="M -1.1666643324813557,-1.1102230246251565e-16 l 0.46153846153846156,0.30769230769230765 l 7.692307692307687e-2,-0.6153846153846154 l 0.46153846153846156,0.30769230769230765 " /></g></g></g></svg>
src/Diagrams/Example/Logo.hs view
@@ -10,7 +10,7 @@ -- -- Source code for creating the diagrams logo. ----- <<diagrams/diaLogo.svg#diagram=diaLogo&height=100>>+-- <<diagrams/src_Diagrams_Example_Logo_diaLogo.svg#diagram=diaLogo&height=100>> -- ----------------------------------------------------------------------------- module Diagrams.Example.Logo where@@ -18,7 +18,6 @@ -- > import Diagrams.Example.Logo -- > diaLogo = logo -import           Diagrams.Coordinates      ((&)) import           Diagrams.Prelude  import           Diagrams.TwoD.Layout.Tree@@ -32,7 +31,7 @@  d = (stroke $    circle 2 # alignBR # translateX (-0.5)-   <> (hcat' with { sep = 0.2 } . map (vcat' with {sep = 0.2})+   <> (hcat' (with & sep.~ 0.2) . map (vcat' (with & sep .~ 0.2))         $ (replicate 2 (replicate 9 (reversePath $ circle 0.3)))) # alignBR)     # fc red     # lw 0@@ -41,7 +40,7 @@  ico_d = (stroke $         circle 2 # alignBR # translateX (-0.5)-        <> (vcat' with {sep = 0.3} $ replicate 5 (reversePath $ circle 0.5)) # alignBR)+        <> (vcat' (with & sep.~ 0.3) $ replicate 5 (reversePath $ circle 0.5)) # alignBR)         # fc red         # lw 0 @@ -58,7 +57,7 @@ -- A ------------------------------------------------------------ -sierpinski 1 = polygon with { polyType = PolyRegular 3 1 }+sierpinski 1 = polygon (with & polyType .~ PolyRegular 3 1 ) sierpinski n = t === (t ||| t) # centerX   where t = sierpinski (n-1) @@ -72,7 +71,7 @@ ------------------------------------------------------------  grid = verts # centerXY <> horiz # centerXY-  where verts = hcat' with {sep=0.5} $ replicate 20 (vrule 10)+  where verts = hcat' (with & sep.~0.5) $ replicate 20 (vrule 10)         horiz = rotateBy (1/4) verts  gbkg = grid@@ -94,7 +93,7 @@                  >> forward 0.9 >> left 135 >> forward 3                  )   # reversePath-  # stroke' with { vertexNames = [["end"]] }+  # stroke' (with & vertexNames .~ [["end"]] )   # lw 0.3   # lineJoin LineJoinRound   # lineCap LineCapRound@@ -127,9 +126,9 @@ -- S ------------------------------------------------------------ -vs = map (uncurry (&)) [(5,5), (3,6), (1,5), (1,4), (3,3), (5,2), (4,0), (0,0.5)]-s = (mconcat (map (\v -> translate v (dot blue)) vs) <>-    cubicSpline False vs # lw 0.20)+ps = map p2 [(5,5), (3,6), (1,5), (1,4), (3,3), (5,2), (4,0), (0,0.5)]+s = (mconcat (map (place (dot blue)) ps) <>+    cubicSpline False ps # lw 0.20)     # scale 0.8  dot c = circle 0.4 # fc c # lw 0@@ -138,5 +137,5 @@ -- Logo ------------------------------------------------------------ -logo = (hcat' with {sep = 0.5} . map alignB $ [ d, i, a1, g, r, a2, m, s ])+logo = (hcat' (with & sep .~ 0.5) . map alignB $ [ d, i, a1, g, r, a2, m, s ])        # centerXY
+ src/Diagrams/Lens.hs view
@@ -0,0 +1,259 @@+{-# LANGUAGE ConstraintKinds       #-}+{-# LANGUAGE FlexibleContexts      #-}+{-# LANGUAGE FlexibleInstances     #-}+{-# LANGUAGE GADTs                 #-}+{-# LANGUAGE MultiParamTypeClasses #-}+{-# LANGUAGE RankNTypes            #-}+{-# LANGUAGE TemplateHaskell       #-}+{-# LANGUAGE TypeFamilies          #-}+{-# LANGUAGE ViewPatterns          #-}++{-# OPTIONS_GHC -fno-warn-orphans  #-}++-- |+-- Module      :  Diagrams.Lens+-- Copyright   :  (c) 2013 Michael Sloan+-- License     :  BSD-style (see LICENSE)+-- Maintainer  :  Michael Sloan <mgsloan at gmail>+--+-- This module provides utilities for using "Control.Lens" with diagrams,+-- including orphan instances for the 'Wrapped' class.+module Diagrams.Lens+  ( Wrapped'+  , _P+  -- * Diagrams.Align+  , _envelopeVMove+  , _alignedVMove+  -- * Diagrams.BoundingBox+  , _corners+  , _boxExtents+  -- * Diagrams.Core.Style+  , _attr+  , _mkAttr+  , _mkTAttr+  -- * Diagrams.Core.Types+  , _location+  , _mkSubdiagram+  -- * Diagrams.Located+  , _Loc+  -- * Diagrams.Parametric+  -- , _arcLength+  -- * Diagrams.Segment+  , _mkFixedSeg+  , _straight+  , _bezier3+  -- * Diagrams.Trail+  , _lineVertices+  , _lineOffsets+  , _lineSegments+  -- * Diagrams.TwoD.Types+  , _toTurn+  ) where++import           Control.Applicative+import           Control.Lens+import           Data.AffineSpace.Point (Point (P))+import           Data.Basis+import           Diagrams.BoundingBox+import           Diagrams.Core.Style+import           Diagrams.Prelude++type Wrapped' s a = Wrapped s s a a++instance Wrapped v v (Point v) (Point v) where+  wrapped = _P+  {-# INLINE wrapped #-}++_P :: Iso s t (Point s) (Point t)+_P = iso P $ \(P x) -> x++-- $(concat <$> mapM makeWrapped+--  [ ''Deg+--  , ''R3+--  , ''Rad+--  , ''Turn+--TODO: re-introduce - this is probably a bug in 'makeWrapped'+--  , ''SubMap+--  , ''Path+--  , ''Point+--  , ''QDiagram+  --])++-- * Diagrams.Align++-- | A singleton 'Traversal' for an envelope vector, where modification of the+--   vector moves the origin appropriately.  No vector is traversed when the+--   envelope is empty.+--+--   This is the same as '_alignedVMove' with @1@ as the interpolation+--   parameter.+_envelopeVMove+  :: (Monoid a, HasOrigin a, Enveloped a, Num (Scalar (V a)))+  => V a -> Traversal' a (V a)+_envelopeVMove v f x = case envelopeVMay v x of+  (Just p) -> (\p' -> moveOriginBy (p ^-^ p') x) <$> f p+  Nothing -> pure x++-- | A singleton 'Traversal' for an alignment vector, where modification of the+--   vector moves the origin appropriately.  No vector is traversed when the+--   envelope is empty.+--+--   The interface mimics "Diagrams.Align.alignBy" in that the @d@ parameter+--   specifies an interpolation between two extremes of the envelope. @d = 1@+--   is on the envelope along the vector, whereas @d = -1@ is on the envelope,+--   away from the vector.+--+--   If you need a 'Point' instead of a vector, then compose with '_P'.+_alignedVMove+  :: (Monoid a, HasOrigin a, Enveloped a, Num (Scalar (V a)))+  => V a -> Scalar (V a) -> Traversal' a (V a)+_alignedVMove v d f x = case appEnvelope $ getEnvelope x of+  (Just env) -> (\p' -> moveOriginBy (p ^-^ p') x) <$> f p+    where+      p = v ^* lerp' (env (negateV v)) (env v) ((d + 1) / 2)+      -- Constraints were pretty wacky otherwise.+      lerp' l u t = (1 - t) * u + t * l+  Nothing -> pure x++{- TODO+_traceMove :: Point v -> v -> Traversal (QDiagram b v m) (Scalar v)+_traceMove p v f x = case appTrace (trace x) p v of+  Finite t ->+  PosInfty -> pure x+-}+++-- * Diagrams.BoundingBox++-- | A traversal that either has 0 (empty box) or 2 points.  These points are+--   the lower and upper corners, respectively.+_corners+  :: ( HasBasis v, Ord (Basis v), AdditiveGroup (Scalar v), Ord (Scalar v)+     , HasBasis v', Ord (Basis v'), AdditiveGroup (Scalar v'), Ord (Scalar v'))+  => Traversal (BoundingBox v) (BoundingBox v') (Point v) (Point v')+_corners f (getCorners -> Just (l, t)) = fromCorners <$> f l <*> f t+_corners _ _ = pure emptyBox++-- | A lens that gets the extents of the box.  In order to change the extents,+--   this modifies the upper corner.+_boxExtents+  :: (HasBasis v, Ord (Basis v), AdditiveGroup (Scalar v), Ord (Scalar v))+  => Lens' (BoundingBox v) v+_boxExtents = lens boxExtents setExtent+  where+    setExtent (getCorners -> Just (l, _)) x = fromCorners l (l .+^ x)+    setExtent _ _ = emptyBox+++-- * Diagrams.Core.Style++_attr :: AttributeClass a => Lens' (Style v) (Maybe a)+_attr = lens getAttr setAttr'+  where+    setAttr' style (Just x) = setAttr x style+    setAttr' style Nothing = style++_mkAttr+  :: AttributeClass a => Prism' (Attribute v) a+_mkAttr = prism' mkAttr unwrapAttr++_mkTAttr+  :: (AttributeClass a, Transformable a, V a ~ v)+  => Prism' (Attribute v) a+_mkTAttr = prism' mkTAttr unwrapAttr+++-- * Diagrams.Core.Types++-- | Gets or set the 'location' of a 'Subdiagram'.+_location+  :: (HasLinearMap v, InnerSpace v, OrderedField (Scalar v))+  => Lens' (Subdiagram b v m) (Point v)+--TODO: Is this correct??+_location = lens location (flip Diagrams.Prelude.moveTo)++_mkSubdiagram+  :: (HasLinearMap v, InnerSpace v, OrderedField (Scalar v), Semigroup m)+  => Iso' (QDiagram b v m) (Subdiagram b v m)+_mkSubdiagram = iso mkSubdiagram getSub+++-- * Diagrams.Located++_Loc :: Iso (Located a) (Located a') (Point (V a), a) (Point (V a'), a')+_Loc = iso viewLoc (uncurry $ flip Diagrams.Prelude.at)+++-- * Diagrams.Parametric++{- TODO: requires 'arcLengthFromParam'++_arcLength+  :: HasArcLength p => Scalar (V p) -> p -> Iso' (Scalar (V p)) (Scalar (V p))+_arcLength eps curve+  = iso' (arcLengthFromParam eps curve) (arcLengthToParam eps curve)++-}++-- * Diagrams.Segment++_mkFixedSeg+  :: (AdditiveGroup v, AdditiveGroup v')+  => Iso+    (Located (Segment Closed v))+    (Located (Segment Closed v'))+    (FixedSegment v)+    (FixedSegment v')+_mkFixedSeg = iso mkFixedSeg fromFixedSeg++-- | Prism that constructs linear segments.  Can also destruct them, if the+--   segment is Linear.+_straight :: Prism' (Segment Closed v) v+_straight = prism' straight fromStraight+  where+    fromStraight :: Segment c a -> Maybe a+    fromStraight (Linear (OffsetClosed x)) = Just x+    fromStraight _ = Nothing++-- | Prism that constructs cubic bezier segments.  Can also destruct them, if+--   segment is a 'Cubic'.+_bezier3 :: Prism' (Segment Closed v) (v, v, v)+_bezier3 = prism' (\(c1, c2, c3) -> bezier3 c1 c2 c3) fromBezier3+  where+    fromBezier3 :: Segment c a -> Maybe (a, a, a)+    fromBezier3 (Cubic c1 c2 (OffsetClosed c3)) = Just (c1, c2, c3)+    fromBezier3 _ = Nothing+++-- * Diagrams.Trail++_lineVertices+  :: ( InnerSpace v, OrderedField (Scalar v)+     , InnerSpace v', OrderedField (Scalar v'))+  => Iso+    (Located (Trail' Line v)) (Located (Trail' Line v'))+    [Point v] [Point v']+_lineVertices = iso lineVertices fromVertices++_lineOffsets+  :: ( InnerSpace v, OrderedField (Scalar v)+     , InnerSpace v', OrderedField (Scalar v'))+  => Iso+    (Trail' Line v) (Trail' Line v')+    [v] [v']+_lineOffsets = iso lineOffsets lineFromOffsets++_lineSegments+  :: ( InnerSpace v, OrderedField (Scalar v)+     , InnerSpace v', OrderedField (Scalar v'))+  => Iso+    (Trail' Line v) (Trail' Line v')+    [Segment Closed v] [Segment Closed v']+_lineSegments = iso lineSegments lineFromSegments+++-- * Diagrams.TwoD.Types++-- | 'toTurn' is an isomorphism from angles to 'Turn's.+_toTurn :: (Angle a, Angle a') => Iso a a' Turn Turn+_toTurn = iso toTurn fromTurn
src/Diagrams/TwoD/Apollonian.hs view
@@ -25,17 +25,17 @@ -- > import Diagrams.TwoD.Apollonian -- > apollonian1 = apollonianGasket 0.01 2 2 2 ----- <<diagrams/apollonian1.svg#diagram=apollonian1&width=400>>+-- <<diagrams/src_Diagrams_TwoD_Apollonian_apollonian1.svg#diagram=apollonian1&width=400>> -- -- > import Diagrams.TwoD.Apollonian -- > apollonian2 = apollonianGasket 0.01 2 3 3 ----- <<diagrams/apollonian2.svg#diagram=apollonian2&width=400>>+-- <<diagrams/src_Diagrams_TwoD_Apollonian_apollonian2.svg#diagram=apollonian2&width=400>> -- -- > import Diagrams.TwoD.Apollonian -- > apollonian3 = apollonianGasket 0.01 2 4 7 ----- <<diagrams/apollonian3.svg#diagram=apollonian3&width=400>>+-- <<diagrams/src_Diagrams_TwoD_Apollonian_apollonian3.svg#diagram=apollonian3&width=400>> -- ----------------------------------------------------------------------------- 
src/Diagrams/TwoD/Factorization.hs view
@@ -16,7 +16,7 @@ -- prime factorization of n by drawing n dots recursively grouped -- according to the factors. ----- <<diagrams/grid100Big.svg#diagram=grid100Big&width=600>>+-- <<diagrams/src_Diagrams_TwoD_Factorization_grid100Big.svg#diagram=grid100Big&width=600>> -- ----------------------------------------------------------------------------- @@ -47,14 +47,14 @@ --   > import Diagrams.TwoD.Factorization --   > plExample --   >   = pad 1.1 . centerXY---   >   . hcat' with {sep = 0.5}+--   >   . hcat' (with & sep .~ 0.5) --   >   . map (sized (Width 1)) --   >   $ [ primeLayout defaultColors 5 (circle 1 # fc black) --   >     , primeLayout defaultColors 103 (square 1 # fc green # lw 0) --   >     , primeLayout (repeat white) 13 (circle 1 # lc orange) --   >     ] -----   <<diagrams/plExample.svg#diagram=plExample&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_plExample.svg#diagram=plExample&width=400>> primeLayout :: (Backend b R2, Renderable (Path R2) b)             => [Colour Double] -> Integer -> Diagram b R2 -> Diagram b R2 primeLayout _ 2 d@@ -64,15 +64,14 @@                         # centerX primeLayout colors p d   = (mconcat $-       iterateN (fromIntegral p)-         (rotateBy (1/fromIntegral p))-         (d # translateY r)+       map (\n -> d # translateY r # rotateBy+              (fromIntegral n/fromIntegral p)) [0..p-1]     )     <>     colorBars colors p poly-  where poly = polygon with { polyType   = PolyRegular (fromIntegral p) r-                            , polyOrient = OrientH-                            }+  where poly = polygon (with & polyType   .~ PolyRegular (fromIntegral p) r+                             & polyOrient .~ OrientH+                            )         w  = max (width d) (height d)         r  = w * c / sin (tau / (2 * fromIntegral p))         c  = 0.75@@ -84,7 +83,7 @@ --   > import Diagrams.TwoD.Factorization --   > colorBarsEx = colorBars defaultColors 3526 (square 1) -----   <<diagrams/colorBarsEx.svg#diagram=colorBarsEx&width=200>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_colorBarsEx.svg#diagram=colorBarsEx&width=200>> colorBars :: (Renderable (Path R2) b)           => [Colour Double] -> Integer -> Path R2 -> Diagram b R2 colorBars colors p poly | p <= 11 = stroke poly@@ -102,7 +101,7 @@ --   code for resistors (<http://en.wikipedia.org/wiki/Electronic_color_code>), --   lightened up a bit by blending with white. -----   <<diagrams/showDefaultColors.svg#diagram=showDefaultColors&height=50>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_showDefaultColors.svg#diagram=showDefaultColors&height=50>> defaultColors :: [Colour Double] defaultColors = map (blend 0.1 white)   [black,red,orange,yellow,green,blue,gray,purple,white,brown]@@ -121,7 +120,7 @@ --   > import Diagrams.TwoD.Factorization --   > factorDiagram'Ex = factorDiagram' [2,5,6] -----   <<diagrams/factorDiagram'Ex.svg#diagram=factorDiagram'Ex&height=200>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_factorDiagram'Ex.svg#diagram=factorDiagram'Ex&height=200>> factorDiagram' :: (Backend b R2, Renderable (Path R2) b)                => [Integer] -> Diagram b R2 factorDiagram' = centerXY . foldr (primeLayout defaultColors) (circle 1 # fc black)@@ -134,7 +133,7 @@ --   > import Diagrams.TwoD.Factorization --   > factorDiagramEx = factorDiagram 700 -----   <<diagrams/factorDiagramEx.svg#diagram=factorDiagramEx&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_factorDiagramEx.svg#diagram=factorDiagramEx&width=400>> factorDiagram :: (Backend b R2, Renderable (Path R2) b)               => Integer -> Diagram b R2 factorDiagram = factorDiagram'@@ -147,7 +146,7 @@ --   > import Diagrams.TwoD.Factorization --   > ensquareEx = ensquare 1 (circle 25) ||| ensquare 1 (factorDiagram 30) -----   <<diagrams/ensquareEx.svg#diagram=ensquareEx&width=200>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_ensquareEx.svg#diagram=ensquareEx&width=200>> ensquare   :: (Backend b R2, Renderable (Path R2) b)   => Double -> Diagram b R2 -> Diagram b R2@@ -160,7 +159,7 @@ --   > import Diagrams.TwoD.Factorization --   > fdGridEx = fdGrid [[7,6,5],[4,19,200],[1,10,50]] -----   <<diagrams/fdGridEx.svg#diagram=fdGridEx&width=200>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_fdGridEx.svg#diagram=fdGridEx&width=200>> fdGrid   :: (Renderable (Path R2) b, Backend b R2)   => [[Integer]] -> Diagram b R2@@ -175,7 +174,7 @@ --   > grid100 = fdGridList 10 --   > grid100Big = grid100 -----   <<diagrams/grid100.svg#diagram=grid100&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_grid100.svg#diagram=grid100&width=400>> fdGridList   :: (Renderable (Path R2) b, Backend b R2)   => Integer -> Diagram b R2@@ -189,7 +188,7 @@ --   > import Diagrams.TwoD.Factorization --   > fdMultTableEx = fdMultTable 13 -----   <<diagrams/fdMultTableEx.svg#diagram=fdMultTableEx&width=600>>+--   <<diagrams/src_Diagrams_TwoD_Factorization_fdMultTableEx.svg#diagram=fdMultTableEx&width=600>> fdMultTable   :: (Renderable (Path R2) b, Backend b R2)   => Integer -> Diagram b R2
src/Diagrams/TwoD/Layout/CirclePacking.hs view
@@ -12,6 +12,7 @@ -- Here is an example: -- -- > import Optimisation.CirclePacking+-- > import Diagrams.TwoD.Vector       (e) -- > -- > colorize = zipWith fc $ -- >     cycle [red,blue,yellow,magenta,cyan,bisque,firebrick,indigo]@@ -28,7 +29,7 @@ -- >     position $ map (\(o,(x,y)) -> (p2 (x,y),o)) $ -- >     packCircles radiusApproximation objects ----- <<diagrams/circlePackingExample.svg#diagram=circlePackingExample&width=400>>+-- <<diagrams/src_Diagrams_TwoD_Layout_CirclePacking_circlePackingExample.svg#diagram=circlePackingExample&width=400>>  module Diagrams.TwoD.Layout.CirclePacking        ( renderCirclePacking@@ -41,6 +42,7 @@  import           Diagrams.Core.Envelope import           Diagrams.Prelude+import           Diagrams.TwoD.Vector       (e)   -- | Combines the passed objects, whose radius is estimated using the given@@ -66,7 +68,7 @@ -- | A safe approximation. Calculates the outer radius of the smallest -- axis-aligned polygon with the given number of edges that contains the -- object. A parameter of 4 up to 8 should be sufficient for most applications.-approxRadius :: Int -> RadiusFunction b m+approxRadius :: (Monoid' m) => Int -> RadiusFunction b m approxRadius n =     if n < 3     then error "circleRadius: n needs to be at least 3"@@ -85,5 +87,5 @@ -- fits in the rectangular bounding box of the object, so it may be too small. -- It is, however, exact for circles, and there is no function that is safe for -- all diagrams and exact for circles.-circleRadius :: RadiusFunction b m+circleRadius :: (Monoid' m) => RadiusFunction b m circleRadius o = maximum [ envelopeS (e (alpha :: Turn)) o | alpha <- [0,0.25,0.5,0.75]]
src/Diagrams/TwoD/Layout/Tree.hs view
@@ -32,7 +32,7 @@ -- >   # lw 0.03 -- >   # centerXY # pad 1.1 ----- <<diagrams/exampleSymmTree.svg#diagram=exampleSymmTree&width=300>>+-- <<diagrams/src_Diagrams_TwoD_Layout_Tree_exampleSymmTree.svg#diagram=exampleSymmTree&width=300>> -- -- Laying out a rose tree of diagrams, with spacing automatically -- adjusted for the size of the diagrams:@@ -55,7 +55,7 @@ -- >   # lw 0.03 -- >   # centerXY # pad 1.1 ----- <<diagrams/exampleSymmTreeWithDs.svg#diagram=exampleSymmTreeWithDs&width=300>>+-- <<diagrams/src_Diagrams_TwoD_Layout_Tree_exampleSymmTreeWithDs.svg#diagram=exampleSymmTreeWithDs&width=300>> -- -- Using a variant symmetric layout algorithm specifically for binary trees: --@@ -69,7 +69,7 @@ -- >         -- genTree 500 0.05 randomly generates trees of size 500 +/- 5%, -- >         -- definition not shown ----- <<diagrams/tree500.svg#diagram=tree500&width=400>>+-- <<diagrams/src_Diagrams_TwoD_Layout_Tree_tree500.svg#diagram=tree500&width=400>> -- -- Using force-based layout on a binary tree: --@@ -88,7 +88,7 @@ -- >             (forceLayoutTree t') -- >         # centerXY # pad 1.1 ----- <<diagrams/fblEx.svg#diagram=fblEx&width=300>>+-- <<diagrams/src_Diagrams_TwoD_Layout_Tree_fblEx.svg#diagram=fblEx&width=300>> --  module Diagrams.TwoD.Layout.Tree@@ -147,7 +147,7 @@ import qualified Data.Traversable    as T import           Data.Tree -import           Diagrams.Prelude    hiding (e, view)+import           Diagrams.Prelude    hiding (view)   
+ src/Diagrams/TwoD/Path/Calligraphic.hs view
@@ -0,0 +1,41 @@+-----------------------------------------------------------------------------+-- |+-- Module      :  Diagrams.TwoD.Path.Calligraphic+-- Copyright   :  (c) 2013 Brent Yorgey+-- License     :  BSD-style (see LICENSE)+-- Maintainer  :  byorgey@cis.upenn.edu+--+-- Create \"calligraphic\" strokes by filling between two offset+-- copies of a curve.+--+-----------------------------------------------------------------------------++module Diagrams.TwoD.Path.Calligraphic+    ( calligraphic+    ) where++import           Diagrams.Prelude++-- | @calligraphic pen t@ creates a \"calligraphic\" variant of @t@ by+--   filling between two copies of @t@ offset by the @pen@ vector.+--+--   <<diagrams/src_Diagrams_TwoD_Path_Calligraphic_calligraphicEx.svg#diagram=calligraphicEx&width=400>>+--+--   > import Diagrams.Coordinates+--   > import Diagrams.TwoD.Path.Calligraphic+--   >+--   > curve = cubicSpline False [1 ^& 1, 2 ^& 5, 5 ^& 6, 8 ^& 12]+--   >       # scale 3+--   >+--   > calligraphicEx =+--   >   [ circle 15 # calligraphic (2 ^& 1)+--   >   , curve     # calligraphic (2 ^& 2)+--   >   ]+--   >   # map (centerXY . strokeLoop)+--   >   # fc black+--   >   # hcat' (with & sep .~ 10)++calligraphic :: R2 -> Trail' Line R2 -> Trail' Loop R2+calligraphic pen p+  = (p <> fromOffsets [pen] <> reverseLine p <> fromOffsets [negateV pen])+  # closeLine
src/Diagrams/TwoD/Path/IteratedSubset.hs view
@@ -44,7 +44,6 @@        ) where  -- Diagrams.Core.Points needed for V (Point a) instance on GHC < 7.6-import           Diagrams.Coordinates       ((&)) import           Diagrams.Core.Points       () import           Diagrams.Prelude @@ -68,10 +67,10 @@ --   seed pattern. -- --   > import Diagrams.TwoD.Path.IteratedSubset---   > iterTrailEx = vcat' with { sep = 0.3 } . map strokeLine . take 5+--   > iterTrailEx = vcat' (with & sep .~ 0.3) . map strokeLine . take 5 --   >             $ iterTrail koch -----   <<diagrams/iterTrailEx.svg#diagram=iterTrailEx&width=200>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_iterTrailEx.svg#diagram=iterTrailEx&width=200>> iterTrail :: Trail' Line R2 -> [Trail' Line R2] iterTrail t = iterate (mconcat . mapMaybe (refineSegment t) . lineSegments)                       (fromOffsets [unitX])@@ -80,7 +79,7 @@ --   rotated copy of the trail with the same endpoint as the segment. refineSegment :: Trail' Line R2 -> Segment Closed R2 -> Maybe (Trail' Line R2) refineSegment t seg-  | tOff == 0 || sOff == 0 = Nothing+  | tOff == zeroV || sOff == zeroV = Nothing   | otherwise              = Just $ t # scale k # rotateBy r   where     sOff = segOffset seg@@ -102,13 +101,13 @@ -- them as inspiration for creating your own seed trails.  -- > import Diagrams.TwoD.Path.IteratedSubset--- > showTrail n t = hcat' with { sep = 0.2 } [ iters !! 1, iters !! n ]+-- > showTrail n t = hcat' (with & sep .~ 0.2) [ iters !! 1, iters !! n ] -- >             # centerXY # pad 1.1 -- >   where iters = map strokeLine $ iterTrail t  -- | Seed for the Koch curve (side of the famous Koch 'snowflake'). -----   <<diagrams/kochD.svg#diagram=kochD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_kochD.svg#diagram=kochD&width=400>> koch :: (TrailLike t, V t ~ R2) => t koch = fromOffsets [unitX, unitX # rotateBy (1/6), unitX # rotateBy (-1/6), unitX] @@ -116,7 +115,7 @@  -- | Seed for the Lévy dragon curve. -----   <<diagrams/levyD.svg#diagram=levyD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_levyD.svg#diagram=levyD&width=400>> levy :: (TrailLike t, V t ~ R2) => t levy = fromOffsets [unitY, unitX] @@ -125,16 +124,16 @@ -- | Strange zig-zag seed that produces a dense fractal path with lots --   of triangles. -----   <<diagrams/zagD.svg#diagram=zagD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_zagD.svg#diagram=zagD&width=400>> zag :: (TrailLike t, V t ~ R2) => t-zag = fromOffsets [unitX, (-0.5) & 1, unitX]+zag = fromOffsets [unitX, (-0.5) ^& 1, unitX]  -- > zagD = showTrail 5 zag  -- | A \"square impulse\" seed which produces a quadratic von Koch --   curve. -----   <<diagrams/sqUpD.svg#diagram=sqUpD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpD.svg#diagram=sqUpD&width=400>> sqUp :: (TrailLike t, V t ~ R2) => t sqUp = fromOffsets [unitX, unitY, unitX, unit_Y, unitX] @@ -143,7 +142,7 @@ -- | A \"double square impulse\" seed which produces fantastic --   rectilinear spiral patterns. -----   <<diagrams/sqUpDownD.svg#diagram=sqUpDownD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownD.svg#diagram=sqUpDownD&width=400>> sqUpDown :: (TrailLike t, V t ~ R2) => t sqUpDown = fromOffsets [unitX, unitY, unitX, 2 *^ unit_Y, unitX, unitY, unitX] @@ -152,7 +151,7 @@ -- | Like 'sqUpDown' but with 'cubicSpline' applied to produce a curvy --   version. -----   <<diagrams/sqUpDownD2.svg#diagram=sqUpDownD2&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownD2.svg#diagram=sqUpDownD2&width=400>> sqUpDown' :: (TrailLike t, V t ~ R2) => t sqUpDown' = cubicSpline False sqUpDown @@ -171,7 +170,7 @@ -- | The famous Koch snowflake, made by putting three Koch curves --   together. @snowflake n@ yields an order-@n@ snowflake. -----   <<diagrams/snowflake4.svg#diagram=snowflake4&width=300>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_snowflake4.svg#diagram=snowflake4&width=300>> snowflake :: Int -> Trail R2 snowflake n = iterateN 3 (rotateBy (-1/3)) edge             # mconcat@@ -185,7 +184,7 @@ -- | A cool diagram featuring successive iterations of @sqUpDown'@ --   superimposed atop one another. -----   <<diagrams/sqUpDownOverlayD.svg#diagram=sqUpDownOverlayD&width=400>>+--   <<diagrams/src_Diagrams_TwoD_Path_IteratedSubset_sqUpDownOverlayD.svg#diagram=sqUpDownOverlayD&width=400>> sqUpDownOverlay :: Renderable (Path R2) b => Diagram b R2 sqUpDownOverlay   = sized (Width 4)@@ -214,14 +213,14 @@ randITC :: (MonadRandom m, Applicative m) => m IterTrailConfig randITC = do   -- use between two and five segments for the seed pattern-  numSegs <- getRandomR (2,5)+  nSegs <- getRandomR (2,5)    -- should we make the seed pattern a cubic spline?   spline  <- getRandom    -- generate a random list of linear segments drawn from (-1,1)^2.   s       <- fromOffsets <$>-                replicateM numSegs ((&) <$> getRandomR (-1,1) <*> getRandomR (-1,1))+                replicateM nSegs ((^&) <$> getRandomR (-1,1) <*> getRandomR (-1,1))    -- generate a random color.   c       <- sRGB <$> getRandom <*> getRandom <*> getRandom@@ -230,7 +229,7 @@   -- (since fewer is not very interesting) and an upper bound chosen   -- to ensure we won't get more than 10000 segments in the final   -- path.-  i       <- getRandomR (3, floor (logBase (fromIntegral numSegs :: Double) 10000))+  i       <- getRandomR (3, floor (logBase (fromIntegral nSegs :: Double) 10000))   let s'         | spline    = cubicSpline False s         | otherwise = fromVertices s
+ src/Diagrams/TwoD/Path/Metafont.hs view
@@ -0,0 +1,79 @@+{-# LANGUAGE DeriveFunctor #-}+{-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE GADTs #-}+{-# LANGUAGE TemplateHaskell #-}++-----------------------------------------------------------------------------+-- |+-- Module      :  Diagrams.TwoD.Path.Metafont+-- Copyright   :  (c) 2013 Daniel Bergey+-- License     :  BSD-style (see LICENSE)+-- Maintainer  :  bergey@alum.mit.edu+--+-- Define Diagrams Paths by specifying points and+-- optionally directions and tension.  Calculate control points to+-- maintain smooth curvature at each point, following rules+-- implemented in Donald Knuth's /Metafont/.+--+--  This module is intended to be imported qualified.+-----------------------------------------------------------------------------+module Diagrams.TwoD.Path.Metafont+       (+             module  Diagrams.TwoD.Path.Metafont.Combinators+           , module  Diagrams.TwoD.Path.Metafont+           , metafontParser+       )+       where++import Control.Lens hiding ((#), at)+import Data.Text (Text)+import Data.Either+import Text.Parsec (ParseError, parse)++import Diagrams.Prelude hiding (view)++import Diagrams.TwoD.Path.Metafont.Types+import Diagrams.TwoD.Path.Metafont.Internal+import Diagrams.TwoD.Path.Metafont.Combinators+import Diagrams.TwoD.Path.Metafont.Parser++-- | MF.fromString parses a Text value in MetaFont syntax, and+-- attempts to return a TrailLike.  Only a subset of Metafont is+-- supported; see the tutorial for details.+fromString :: (TrailLike t, V t ~ R2) => Text -> Either ParseError t+fromString s = case parse metafontParser "" s of+  (Left err) -> Left err -- with different type+  (Right p)  -> Right . fromPath  $ p++-- | fromStrings takes a list of MetaFont strings, and returns either+--  all errors, or, if there are no parsing errors, a TrailLike for+--  each string.  fromStrings is provided as a convenience because the+--  MetaFont &-join is not supported.  'mconcat' ('<>') on the TrailLike is+--  equivalent, with clearer semantics.+fromStrings :: (TrailLike t, V t ~ R2) => [Text] -> Either [ParseError] [t]+fromStrings ss = case partitionEithers . map fromString $ ss of+  ([],ts) -> Right ts+  (es,_)  -> Left es++-- | Should you wish to construct the MFPath in some other fashion,+--   fromPath makes a TrailLike directly from the MFPath+fromPath :: (TrailLike t, V t ~ R2) => MFP -> t+fromPath = trailLike . locatedTrail . over (segs.mapped) computeControls . solve++-- | flex ps draws a Trail through the points ps, such that at every+-- point p ∊ ps except the endpoints, the Trail is parallel to the+-- line from the first to the last point.  This is the same as the+-- flex command defined in plain MetaFont.+flex :: (TrailLike t, V t ~ R2) => [P2] -> t+flex ps = fromPath . MFP False $ (s0:rest) where+  tj = (Left (TJ (TensionAmt 1) (TensionAmt 1)))+  jj = PJ Nothing tj Nothing+  s0 = MFS (head ps) jj (head.tail $ ps)+  d = Just . PathDirDir $ (last ps) .-. (head ps)+  seg z1 z2 = MFS z1 (PJ d tj Nothing) z2+  rest = zipWith seg (init . tail $ ps) (tail . tail $ ps)++-- | metafont converts a path defined in the Metafont combinator synax into a+-- native Diagrams TrailLike.+metafont :: (TrailLike t, V t ~ R2) => MFPathData P -> t+metafont = fromPath . mfPathToSegments
+ src/Diagrams/TwoD/Path/Metafont/Combinators.hs view
@@ -0,0 +1,75 @@+{-# LANGUAGE TypeFamilies #-}++-- | Combinators to allow writing Metafont-style paths embedded in+-- Haskell, with the usual Diagrams types for points and directions.++module Diagrams.TwoD.Path.Metafont.Combinators+       (+           (.-), (-.), (.--.)+       , endpt, cyclePath+       , simpleJoin -- is this actually needed?+       , tension, tensions, controls+       , leaving, arriving+       ) where++import Diagrams.Prelude+import Diagrams.TwoD.Path.Metafont.Types++-- internal alias to keep the signatures readable+type Join = PathJoin (Maybe PathDir) (Maybe BasicJoin)++-- | /point/ @.-@ /join/ @-.@ /path/ adds /point/ to the+-- left end of the metafont /path/, connected by /join/.+(.-) :: P2 -> MFPathData J -> MFPathData P+(.-) = MFPathPt++-- | See @.-@ above.+(-.) :: Join -> MFPathData P -> MFPathData J+(-.) = MFPathJoin++infixr 5 .-+infixr 5 -.++-- | Terminate the right-end of a Metafont path at the given point.+endpt :: P2 -> MFPathData P+endpt = MFPathEnd++-- | Wrap the right-end of the Metafont path back to the left-end.+-- When converted to a Diagrams 'Trail'', this will be a Loop.+cyclePath :: MFPathData P+cyclePath = MFPathCycle++-- | Add a point to the left of a Metafont path using a simple join.+-- That is, neither direction is specified, and both tensions are 1.+(.--.) :: P2 -> MFPathData P -> MFPathData P+p .--. q = p .- mempty -. q++infixr 5 .--.++-- | simpleJoin is the same as mempty, with a more specific type.  It+-- is provided for convenience in situations where explicit type+-- signatures would otherwise be needed, such as when building up a+-- join using lenses.+simpleJoin :: Join+simpleJoin = mempty++-- | A join with both tensions the same.+tension :: Double -> Join+tension t = PJ Nothing (Just . Left $ TJ (TensionAmt t) (TensionAmt t)) Nothing++-- | A join with two tension values.+tensions :: Double -> Double -> Join+tensions tl tr = PJ Nothing (Just . Left $ TJ (TensionAmt tl) (TensionAmt tr)) Nothing++-- | A join with explicit control points.  Note that these are in the+-- same coordinate system as the endpoints, not relative to the latter.+controls :: P2 -> P2 -> Join+controls u v = (mempty :: Join) & j.~ (Just . Right $ CJ u v)++-- | A join with the left-end direction specified.+leaving :: R2 -> Join+leaving d = mempty & d1.~ (Just . PathDirDir $ d)++-- | A join with the right-end direction specified.+arriving :: R2 -> Join+arriving d = mempty & d2.~ (Just . PathDirDir $ d)
+ src/Diagrams/TwoD/Path/Metafont/Internal.hs view
@@ -0,0 +1,418 @@+{-# LANGUAGE DeriveFunctor #-}+{-# LANGUAGE GADTs #-}+{-# LANGUAGE TemplateHaskell #-}++-----------------------------------------------------------------------------+-- |+-- Module      :  Diagrams.TwoD.Path.Metafont.Internal+-- Copyright   :  (c) 2013 Daniel Bergey+-- License     :  BSD-style (see LICENSE)+-- Maintainer  :  bergey@alum.mit.edu+--+-- Solve equations due to John Hobby, as implemented in Donald Knuth's+-- /Metafont/, to create (usually) smooth paths from specified points+-- and directions.+--+-----------------------------------------------------------------------------++module Diagrams.TwoD.Path.Metafont.Internal+       (+           solve, computeControls, locatedTrail+           -- combinator style+           , mfPathToSegments+       )+    where++import Control.Lens hiding ((#), at)+import Data.Maybe++import Diagrams.CubicSpline.Internal+import Diagrams.Prelude hiding (view)++import  Diagrams.TwoD.Path.Metafont.Types+++-- | Reverse a MetaFont segment, including all directions & joins.+reverseSeg :: MFS -> MFS+reverseSeg s = MFS (s^.x2) (PJ (rDir $ s^.pj.d2) (s^.pj.j.to rj) (rDir $ s^.pj.d1)) (s^.x1) where+  rj (Left t) = (Left (TJ (t^.t2) (t^.t1)))+  rj (Right c) = (Right (CJ (c^.c2) (c^.c1)))+  rDir (Just (PathDirDir d)) = (Just (PathDirDir (negateV d)))+  rDir d = d++-- | Calculate the length of a MetaFont segment.+mfSegmentLength :: MetafontSegment p j -> Double+mfSegmentLength = magnitude . mfSegmentOffset++-- | Calculate the vector between endpoints of the given segment.+mfSegmentOffset :: MetafontSegment p j -> R2+mfSegmentOffset s = s^.x2 .-. s^.x1++-- | leftCurl s is True if the first direction of s is specified as a curl+leftCurl, rightCurl :: MFS -> Bool+leftCurl (MFS _ (PJ (Just (PathDirCurl _)) _ _) _) = True+leftCurl _ = False++-- | rightCurl s is True if the second direction of s is specified as a curl+rightCurl (MFS _ (PJ _ _ (Just (PathDirCurl _))) _) = True+rightCurl _ = False++-- | Normalize a number representing number of turns to ±½+normalizeTurns :: Double -> Double+normalizeTurns t | t >  1/2   = t - realToFrac (ceiling t :: Int)+normalizeTurns t | t < -1/2   = t - realToFrac (floor t   :: Int)+normalizeTurns t = t++-- | By analogy with fromJust, fromLeft returns the Left value or errors+fromLeft :: Either a b -> a+fromLeft (Left l) = l+fromLeft (Right _) = error "got Right in fromLeft"+++-- | Fill in default values for as many blank directions as possible.+-- @fillDirs@ implements all of the following rules:+--+-- 1. Empty direction at beginning or end of path -> curl 1.+--    Note cyclic paths have no beginning/end; will use cyclic tridiagonal.+--+-- 2. Empty direction next to & -> curl 1.+--+-- 3. empty P nonempty -> replace empty with nonempty.+--+-- 4. nonempty P empty -> replace empty with nonempty.+--+-- 5.  .. z .. controls u and ...  -> {u - z} z ... controls if (u /=+--        z), or {curl 1} if u = z+--+--        Similarly  controls u and v ... z ... ->  z {z - v} (or curl 1)+fillDirs :: MFP -> MFP+fillDirs p  = (copyDirsLoop . curlEnds) p & segs %~+              (copyDirsR . copyDirsL . map controlPtDirs)++-- rules 1 & 2+curlEnds :: MFP -> MFP+curlEnds p | (p^.loop) = p+curlEnds p             = p & segs %~ leftEnd where+  leftEnd  [s]         = [s & pj.d1 %~ curlIfEmpty & pj.d2 %~ curlIfEmpty]+  leftEnd  (s:ss)      = (s & pj.d1 %~ curlIfEmpty) : rightEnd ss+  leftEnd  []          = []+  rightEnd []          = []+  rightEnd [s]         = [s & pj.d2 %~ curlIfEmpty]+  rightEnd (s:ss)      = s:rightEnd ss+  curlIfEmpty Nothing  = Just $ PathDirCurl 1+  curlIfEmpty d        = d++-- rule 3+copyDirsL :: [MFS] -> [MFS]+copyDirsL (s1@(MFS _ (PJ _ _ Nothing) _) : ss@(MFS _ (PJ (Just d) _ _) _ : _))+  = (s1 & pj.d2 .~ Just d) : copyDirsL ss+copyDirsL (s1 : ss') = s1 : copyDirsL ss'+copyDirsL [] = []++-- rule 4+copyDirsR :: [MFS] -> [MFS]+copyDirsR (s1@(MFS _ (PJ _ _ (Just d)) _) : s2@(MFS _ (PJ Nothing _ _) _) : ss)+  = s1 : copyDirsR ((s2 & pj.d1 .~ Just d) : ss)+copyDirsR (s1 : ss') = s1 : copyDirsR ss'+copyDirsR [] = []++-- copy a direction from one end of a loop to the other+copyDirsLoop :: MFP -> MFP+copyDirsLoop p | not $ _loop p = p+copyDirsLoop p@(MFP _ []) = p+copyDirsLoop p | (p^?!segs._head.pj.d1.to isJust) &&+                 (p^?!segs._last.pj.d2.to isNothing) =+                   p & over (segs._last.pj.d2) (const $ p^?!segs._head.pj.d1)+copyDirsLoop p | p^?!segs._head.pj.d1.to isNothing &&+                 p^?!segs._last.pj.d2.to isJust =+                   p & over (segs._head.pj.d1) (const $ p^?!segs._last.pj.d2)+copyDirsLoop p = p++-- rule 5+-- apply rule 5 before rules 3 & 4, then depend on those rules to copy the directions+-- into adjacent segments+controlPtDirs :: MFS -> MFS+controlPtDirs s@(MFS z0 (PJ _ jj@(Right (CJ u v)) _) z1) = s & pj .~ dirs where+  dirs = PJ (dir z0 u) jj (dir v z1)+  dir :: P2 -> P2 -> Maybe PathDir+  dir p0 p1 | p0 == p1 = Just $ PathDirCurl 1+  dir p0 p1 | otherwise = Just $ PathDirDir (p1 .-. p0)+controlPtDirs s = s++-- | Run all the rules required to fully specify all segment directions,+-- but do not replace the Joins with ControlJoin.+solve :: MFP -> MFPath Dir BasicJoin+solve = solvePath . fillDirs++-- | each sublist of groupSegments ss satisfies:+-- isJust . d1 . pj . head+-- isJust . d2 . pj . last+-- all (isNothing . d1 . pj) . init . tail+-- all (isNothing . d2 . pj) . init . tail+-- That is, each sublist can be handled as a line,+-- (except the first and last, if the initial MFP was a loop).+groupSegments :: [MFS] -> [[MFS]]+groupSegments [] = []+groupSegments (s:ss) = (s:open):groupSegments rest where+  (open,rest) = span (view $ pj.d1.to isNothing) ss++-- | Calculate the tangent direction at all remaining points.+-- This function dispatches all of the hard work to other functions.+-- It distinguishes 3 cases:+-- * A loop with no internal directions given.+-- * A loop with one or more directions given.+--     Mathematically, this is handled like a line, but the Loopness is+--     preserved, so that the Diagrams Trail is a Loop.+-- * A line, consisting of one or more segments as described in groupSegments.+-- Note that the result type is different from the input, reflecting+-- fully specified directions.+solvePath :: MFP -> MFPath Dir BasicJoin+solvePath (MFP False ss) = MFP False (concat . map solveLine . groupSegments $ ss)+-- A simple loop.  All directions are unknown, curvature gives us enough equations.+solvePath (MFP True ss) | all (view $ pj.d1.to isNothing) ss = MFP True $ solveLoop ss+solvePath (MFP True ss) = MFP True ss'' where+  ss' = groupSegments ss+  ss'' = concat . map solveLine $ case ss'^?!_head^?!_head.pj.d1 of+      (Just (PathDirDir _)) -> ss'+      _ -> (maybe [] id $ ss'^?_tail._init) ++ [last ss' ++ head ss']++-- | Calculate the tangent directions at all points.  The input list is assumed+-- to form a loop; this is not checked.+-- See 'setDirs' for an explanation of offset angles.+solveLoop :: [MFS] -> [MetafontSegment Dir BasicJoin]+solveLoop ss = zipWith3 setDirs ss thetas phis where+  segmentPairs = zip ss (tail . cycle $ ss)+  thetas = loopDirs ss+  phis = map negate $ zipWith (+) (map psi segmentPairs) (tail . cycle $ thetas)++-- | Calculate the offset angles θ for the case of a loop.+--   This is a system of (length ss) equations.  The first element of+--   loopDirs ss is θ for the starting point of the first segment of ss.+loopDirs :: [MFS] -> [Double]+loopDirs ss = solveCyclicTriDiagonal lower diag upper products ll ur where+  (lower, diag, upper, products, ll, ur) = loopEqs ss++-- | Calculate the coefficients for the loop case, in the+-- format required by solveCyclicTriDiagonal.+-- See mf.web ¶ 273+loopEqs :: [MFS]+           -> ([Double], [Double], [Double], [Double], Double, Double)+loopEqs ss = (lower, diag, upper, products, ll, ur) where+  lower = map aCo (init ss)+  sLast = last ss+  diag = zipWith (+) (map bCo $ [sLast] ++ ss) (map cCo ss)+  upper = map dCo (init ss)+  ur = aCo sLast+  ll = dCo sLast+  segmentPairs = zip ([last ss] ++ init ss) ss+  products = zipWith (-)+               [-1 * bCo l * psi s | s@(l,_) <- segmentPairs]+               (zipWith (*)+                (map dCo ss)+                (map psi $ tail segmentPairs)+                ++ [dCo sLast * psi (head segmentPairs)])++-- | solveLine takes a list of segments where only the first and last points+-- have known directions.  The type signature matches that of solveLoop, and the+-- precondition is not checked.+-- The equivalent MetaFont code (in make_choices) is written in terms of points,+-- rather than segments.  See metafont code paragraphs 271--274.+solveLine :: [MFS] -> [MetafontSegment Dir BasicJoin]+solveLine [MFS z1 (PJ (Just (PathDirDir d1')) jj (Just (PathDirDir d2'))) z2] =+  [MFS z1 (PJ d1' jj d2') z2]+solveLine ss = zipWith3 setDirs ss (init thetas) phis where+  segmentPairs = zip (init ss) (tail ss)+  thetas = lineDirs ss+  phis :: [Double]+  phis = map negate $ zipWith (+) (map psi segmentPairs ++ [0]) (tail thetas)++-- | setDirs takes a segment with underspecified directions, and two offset+-- angles, and sets the directions at both ends of the segment.+-- The offset angle is measured between the direction vector at either end and+-- the vector difference of the segment endpoints.+setDirs :: MFS -- ^ The segment to be modified+        -> Double -- ^ theta, the offset angle at the starting point+        -> Double -- ^ phi, the ofset angle at the endpoint+        -> MetafontSegment Dir BasicJoin+setDirs (MFS z0 (PJ w0' jj w1') z1) t p = MFS z0 (PJ w0 jj w1) z1 where+    offs  = z1 .-. z0+    w0 = case w0' of+      (Just (PathDirDir d)) -> d+      _ -> offs # rotate (Turn t)+    w1 = case w1' of+      (Just (PathDirDir d)) -> d+      _ -> offs # rotate (Turn (negate p))++-- | psi (l,r) calculates the turning angle between segments l and r, if+-- each segment were a straight line connecting its endpoints.  The endpoint of l+-- is assumed to be the starting point of r; this is not checked.+psi :: (MetafontSegment p j1, MetafontSegment p j1) -> Double+psi (l,r) = normalizeTurns t where+  (Turn t) =  direction (mfSegmentOffset r) - direction (mfSegmentOffset l)++-- | lineDirs calculates the offset angles θ for a Line.  Most of the work+-- done by lineEqs and solveTriDiagonal, but lineDirs handles the separate cases+-- of an empty list, and lists of length one.  See mf.web ¶ 280.+lineDirs :: [MFS] -> [Double]+lineDirs ss | length ss > 1 = solveTriDiagonal lower diag upper products where+  (lower, diag, upper, products) = lineEqs ss+lineDirs [] = []+lineDirs [s] | leftCurl s && rightCurl s = [0, 0] where+lineDirs [s] | rightCurl s = solveTriDiagonal [a] [1,c] [0] [normalizeTurns t, r] where+  (a,c,r) = solveOneSeg s+  (PathDirDir dir) = s^.pj.d1.to fromJust+  (Turn t) = direction dir - direction (s^.x2 .-. s^.x1)+lineDirs [s] | leftCurl s = reverse $ lineDirs [reverseSeg s]+lineDirs s = error $ "lineDirs was called on something inappropriate.  \+\It should be called on a list of segments with directions specified at both ends.\+\It should only be called through solveLine.  The input was: "++ show s++-- | Each intermediate point produces one curvature equation, as in loopEqs.+-- The endpoint equations are the same as those for the single-segment line in+-- lineDirs.+-- lineEqs only works when segs has length > 1; this precondition is not checked.+lineEqs :: [MFS] -> ([Double], [Double], [Double], [Double])+lineEqs ss = (lower, diag, upper, products) where+  segmentPairs = zip (init ss) (tail ss)+  lower = map aCo (init ss) ++ [an]+  diag  = c0 : zipWith (+) (map bCo (init ss)) (map cCo (tail ss)) ++ [cn]+  upper = (d0 : map dCo (tail ss))+  products = r0 : zipWith (-)+               [-1 * bCo l * psi s | s@(l,_) <- segmentPairs]+               (zipWith (*)+                 (map dCo (tail $ ss))+                 (map psi (tail segmentPairs)+                ++ [0])) ++ [rn]+  (d0,c0,_) = solveOneSeg . reverseSeg $ s0+  r0 = r0' (s0^.pj.d1.to fromJust) where+    r0' (PathDirDir d) = normalizeTurns t where+                         (Turn t) = direction d - direction (s0^.x2 .-. s0^.x1)+    r0' (PathDirCurl _) = negate $ d0 * psi (s0, ss!!1)+  s0 = head ss+  (an, cn, rn) = solveOneSeg (last ss)++-- These functions calculate the coefficients in lineEqs, loopEqs+-- They are derived in mf.web ¶ 272-273+alpha, beta, aCo, bCo, cCo, dCo :: MFS -> Double+alpha s = 1 / s^.pj.j.to fromLeft.t1.to getTension+beta  s = 1 / s^.pj.j.to fromLeft.t2.to getTension+aCo s = (alpha s) / (beta s **2 * mfSegmentLength s)+bCo s = (3 - alpha s) / (beta s **2 * mfSegmentLength s)+cCo s = (3 - beta s) / (alpha s **2 * mfSegmentLength s)+dCo s = (beta s) / (alpha s **2 * mfSegmentLength s)++-- | solveOneSeg calculates the coefficients of the angle equation for+-- the final segment of a line, which may incidentally be the only+-- segment.+solveOneSeg :: MFS -> (Double, Double, Double)+solveOneSeg s = (a, c, r) where+  a = a' (s^.pj.d2.to fromJust) where+    a' (PathDirDir _) = 0+    a' (PathDirCurl g) = (3 - beta s) * (beta s) **2 * g / (alpha s **2) + alpha s+  c = c' (s^.pj.d2.to fromJust) where+       c' (PathDirDir _) = 1+       c' (PathDirCurl g) = beta s **3 * g / (alpha s **2) + 3 - alpha s+  r = r' (s^.pj.d2.to fromJust) where+    r' (PathDirDir d) = normalizeTurns t where+      (Turn t) = direction d - direction (s^.x2 .-. s^.x1)+    r' (PathDirCurl _) = 0++-- | Take a segment whose endpoint directions have been fully+--   determined, and compute the control points to realize it as a+--   cubic Bézier segment.  If the segment already has control points+--   specified, the directions are ignored (they are assumed to+--   match).  If the segment tensions are specified as TensionAtLeast,+--   check whether the minimum tension will lead to an inflection+--   point.  If so, pick the maximum velocity (equivalent to minimum+--   tension) that avoids the inflection point.  Otherwise, calculate+--   the velocity from the tension using 'hobbyF'.  Then calculate the+--   control point positions from the direction and the velocity.+--   Afterwards we can forget the direction information (since the+--   control points are what we really want, and the directions can be+--   recovered by subtracting the control points from the endpoints+--   anyway).+computeControls+  :: MetafontSegment Dir (Either TensionJoin ControlJoin)+  -> MetafontSegment ()  ControlJoin+computeControls (MFS z0 (PJ _ (Right cj) _) z1)+  = MFS z0 (PJ () cj ()) z1+computeControls (MFS z0 (PJ w0 (Left (TJ a b)) w1) z1)+  = MFS z0 (PJ () (CJ u v) ()) z1+  where+    (u,v) = ctrlPts z0 w0 va vb w1 z1+    offs  = z1 .-. z0+    theta = direction w0   - direction offs+    phi   = direction offs - direction w1+    sinR  = sin . op Rad+    boundingTriangleExists = signum (sinR theta) == signum (sinR phi)+                             && signum (sinR theta) == signum (sinR (theta+phi))+    va = case a of+              (TensionAmt ta) -> hobbyF theta phi / ta+              (TensionAtLeast ta) -> case boundingTriangleExists of+                  True -> min (sinR phi / sinR (theta + phi))+                              (hobbyF theta phi / ta)+                  False -> hobbyF theta phi / ta+    vb = case b of+              (TensionAmt tb) -> hobbyF phi theta / tb+              (TensionAtLeast tb) -> case boundingTriangleExists of+                  True -> min (sinR theta / sinR (theta + phi))+                              (hobbyF phi theta / tb)+                  False -> hobbyF phi theta / tb++-- | Compute the control points for a cubic bezier, given a segment+--   where we know the directions and tensions at both endpoints,+--   i.e. go from+--+--   @z0{w0} .. tension a and b .. {w1}z1@+--+--   to+--+--   @z0 .. controls u and v .. z1@.+--+--   This uses a mysterious, magical formula due to John Hobby.+ctrlPts :: P2 -> R2 -> Double -> Double -> R2 -> P2 -> (P2, P2)+ctrlPts z0 w0 va vb w1 z1 = (u,v)+  where+    offs  = z1 .-. z0+    theta, phi :: Rad+    theta = direction w0   - direction offs+    phi   = direction offs - direction w1+    u     = z0 .+^ (offs # rotate theta  # scale va)+    v     = z1 .-^ (offs # rotate (-phi) # scale vb)++-- | Some weird function that computes some sort of scaling factor+--   based on the turning angles between endpoints and direction+--   vectors (again due to Hobby).+hobbyF :: Rad -> Rad -> Double+hobbyF (Rad theta) (Rad phi) =+  (2 + sqrt 2 * (sin theta - sin phi / 16)*(sin phi - sin theta / 16)*(cos theta - cos phi))+  /+  (3 * (1 + (sqrt 5 - 1)/2 * cos theta + (3 - sqrt 5)/2 * cos phi))++-- | Convert a fully specified MetafontSegment to a Diagrams Segment+importSegment :: MetafontSegment () ControlJoin -> Segment Closed R2+importSegment (MFS z0 (PJ () (CJ u v) ()) z1) = bezier3 (u .-. z0) (v .-. z0) (z1 .-. z0)++-- | Convert a MetaFont path to a Diagrams Trail, using a Loop or Line as needed+locatedTrail :: MFPath () ControlJoin -> Located (Trail R2)+locatedTrail (MFP False ss)  = (wrapLine . fromSegments . map importSegment $ ss)+                                `at` (head ss ^.x1)+locatedTrail (MFP True ss)   = (wrapLoop . fromSegments . map importSegment $ ss)+                                `at` (head ss ^.x1)++-- | Convert a path in combinator syntax to the internal+-- representation used for solving.+mfPathToSegments :: MFPathData P -> MFP+mfPathToSegments = fixCycleSegment . snd . mfPathToSegments'+  where+    mfPathToSegments' :: MFPathData P -> (P2, MFP)+    mfPathToSegments' (MFPathEnd p0) = (p0, MFP False [])+    mfPathToSegments' MFPathCycle    = (origin, MFP True [])+    mfPathToSegments' (MFPathPt p0 (MFPathJoin jj path)) = (p0, MFP c (MFS p0 jj' p1 : ss))+      where+        (p1, MFP c ss) = mfPathToSegments' path+        jj' = case jj^.j of+            Nothing -> jj & j .~ Left (TJ (TensionAmt 1) (TensionAmt 1))+            Just bj -> jj & j .~ bj+    fixCycleSegment (MFP True ss) = MFP True (ss & _last.x2 .~ ss^?!_head.x1)+    fixCycleSegment p = p
+ src/Diagrams/TwoD/Path/Metafont/Parser.hs view
@@ -0,0 +1,117 @@+{-# OPTIONS_GHC -fno-warn-unused-do-bind #-}+module Diagrams.TwoD.Path.Metafont.Parser+       (metafontParser) where++import Control.Lens ((^.))++import Text.Parsec+import Text.Parsec.Text++import Diagrams.Prelude hiding (option)+import Diagrams.TwoD.Path.Metafont.Types++num :: Parser Double+num = read <$> float where+  sign = plus <|> minus <|> unsigned+  plus = char '+' *> unsigned+  minus = (:) <$> char '-' <*> unsigned+  unsigned = many1 digit+  decimal = option "" (try $ (:) <$> char '.' <*> unsigned)+  float = (++) <$> sign <*> decimal++-- points++xy :: Parser (Double, Double)+xy = do+  spaces+  x <- num+  spaces *> char ',' *> spaces+  y <- num+  spaces+  return (x,y)++pt :: Parser P2+pt = char '(' *> (p2 <$> xy) <* char ')'++-- Joins++join :: Parser (PathJoin (Maybe PathDir) BasicJoin)+join = straightJoin <|> do+  d1' <- optionMaybe pathDir+  j' <- tenseLine <|> dotsJoin+  d2' <- optionMaybe pathDir+  return $ PJ d1' j' d2'++dotsJoin :: Parser BasicJoin+dotsJoin = string ".." *> spaces *>+           (boundedJoin <|>tensionJoin <|> controlJoin <|> plainJoin)++plainJoin :: Parser BasicJoin+plainJoin = pure (Left $ TJ t1' t1') where+  t1' = TensionAmt 1++tensionJoin :: Parser BasicJoin+tensionJoin = do+  string "tension"+  spaces+  t1' <- num+  t2' <- try (spaces *> string "and" *> spaces *> num <* spaces) <|> pure t1'+  string ".."+  return . Left $ TJ (TensionAmt t1') (TensionAmt t2')++controlJoin :: Parser BasicJoin+controlJoin = do+  string "controls" *> spaces+  z1 <- pt+  spaces *> string "and" <* spaces+  z2 <- pt+  spaces *> string ".."+  return . Right $ CJ z1 z2++boundedJoin :: Parser BasicJoin+boundedJoin = char '.' *> pure (Left $ TJ t t) where t = TensionAtLeast 1++straightJoin :: Parser (PathJoin (Maybe PathDir) BasicJoin)+straightJoin = try (string "--" *> notFollowedBy (char '-')) *> pure (PJ c jj c)+  where+    c = Just $ PathDirCurl 1+    jj = Left $ TJ (TensionAmt 1) (TensionAmt 1)++tenseLine :: Parser BasicJoin+-- 4096 is the constant 'infinity' in Plain MetaFont+tenseLine = string "---" *> pure (Left $ TJ t t) where t = TensionAmt 4096++-- Directions++dir :: Parser PathDir+dir = PathDirDir . r2 <$> xy++curl :: Parser PathDir+curl = PathDirCurl <$> (string "curl" *> spaces *> num)++pathDir :: Parser PathDir+pathDir = do+  char '{' *> spaces+  d <- curl <|> dir+  spaces *> char '}'+  return d++-- Segments & Paths++mfs :: Parser (MetafontSegment (Maybe PathDir) BasicJoin)+mfs = MFS <$> pt <*> join <*> lookAhead pt++matches :: Stream s m t => ParsecT s u m a -> ParsecT s u m Bool+matches p = option False (p *> return True)++-- | Parse a 'Text' value in Metafont syntax, as destribed in /The+-- METAFONTbook/.+metafontParser :: Parser (MFPath (Maybe PathDir) BasicJoin)+metafontParser = do+  ss <- many1 (try mfs)+  lastP <- pt+  lastD <- optionMaybe pathDir+  c  <- matches $ string "..cycle"+  if c+     then return . MFP c $ ss ++ [MFS lastP (PJ lastD (Left $ TJ (TensionAmt 1) (TensionAmt 1)) Nothing) (head ss^.x1)]+    else return $ MFP c ss
+ src/Diagrams/TwoD/Path/Metafont/Types.hs view
@@ -0,0 +1,114 @@+{-# LANGUAGE DeriveFunctor #-}+{-# LANGUAGE GADTs #-}+{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE FlexibleInstances #-}++module Diagrams.TwoD.Path.Metafont.Types where++import Control.Lens hiding ((#))+import Data.Monoid+import Data.Semigroup++import Diagrams.TwoD.Types++-- | A @PathJoin@ specifies the directions at both ends of a segment,+-- and a join which describes the control points explicitly or implicitly.+data PathJoin d j = PJ { _d1 :: d, _j :: j, _d2 :: d }+  deriving (Functor, Show)++makeLenses ''PathJoin++-- | A direction can be specified at any point of a path.  A /curl/+-- should only be specified at the endpoints.  The endpoints default+-- to curl 1 if not set.+data PathDir+  = PathDirCurl Curl+  | PathDirDir  Dir+    deriving Show++-- | A predicate to determine the constructor used.+isCurl :: PathDir -> Bool+isCurl (PathDirDir _) = False+isCurl (PathDirCurl _) = True++type Curl = Double+type Dir  = R2++type BasicJoin = Either TensionJoin ControlJoin++-- | Higher /Tension/ brings the path closer to a straight line+-- between segments.  Equivalently, it brings the control points+-- closer to the endpoints.  @TensionAmt@ introduces a fixed tension.+-- @TensionAtLeast@ introduces a tension which will be increased if by+-- so doing, an inflection point can be eliminated.+data Tension+  = TensionAmt Double+  | TensionAtLeast Double+  deriving Show++getTension :: Tension -> Double+getTension (TensionAmt t)     = t+getTension (TensionAtLeast t) = t++-- | Two tensions and two directions completely determine the control+-- points of a segment.+data TensionJoin = TJ { _t1 :: Tension, _t2 :: Tension }+                 deriving Show++-- | The two intermediate control points of a segment, specified directly.+data ControlJoin = CJ { _c1 :: P2, _c2 :: P2 }+                 deriving Show++makeLenses ''TensionJoin+makeLenses ''ControlJoin++data P+data J++-- | @MFPathData@ is the type manipulated by the metafont combinators.+data MFPathData a where+  MFPathCycle:: MFPathData P+  MFPathEnd  :: P2 -> MFPathData P+  MFPathPt   :: P2 -> MFPathData J -> MFPathData P+  MFPathJoin :: PathJoin (Maybe PathDir) (Maybe BasicJoin) -> MFPathData P -> MFPathData J++-- | @MetafontSegment@ is used internally in solving the metafont+-- equations.  It represents a segment with two known endpoints, and a+-- /join/, which may be specified in various ways.+data MetafontSegment d j = MFS { _x1 :: P2, _pj :: (PathJoin d j), _x2 :: P2 }+                         deriving (Functor, Show)++-- | @MFPath@ is the type used internally in solving the metafont+-- equations.  The direction and join types are progressively refined+-- until all control points are known.  The @loop@ flag affects both+-- the equations to be solved and the type of 'Trail' in the result.+-- If constructing an @MFPath@ in new code, the responsibility rests+-- on the user to ensure that successive @MetafontSegment@s share an+-- endpoint.  If this is not true, the result is undefined.+data MFPath d j = MFP { _loop :: Bool, _segs :: [MetafontSegment d j] }+                deriving Show++-- | MFP is a type synonym to clarify signatures in Metafont.Internal.+-- Note that the type permits segments which are \"overspecified\",+-- having one or both directions specified, and also a 'ControlJoin'.+-- In this case, "Metafont.Internal" ignores the directions.+type MFP = MFPath (Maybe PathDir) BasicJoin++-- | MFS is a type synonym to clarify signatures in "Metafont.Internal".+type MFS = MetafontSegment (Maybe PathDir) BasicJoin++makeLenses ''MetafontSegment+makeLenses ''MFPath++instance Monoid (PathJoin (Maybe PathDir) (Maybe BasicJoin)) where+    -- | The default join, with no directions specified, and both tensions 1.+    mempty = PJ Nothing Nothing Nothing+    l `mappend` r = PJ (c (l^.d1) (r^.d1)) (c (l^.j) (r^.j)) (c (l^.d2) (r^.d2))+      where+        c a b = case b of+            Nothing -> a+            Just _  -> b++instance Semigroup (PathJoin (Maybe PathDir) (Maybe BasicJoin)) where+    (<>) = mappend+
+ src/Diagrams/TwoD/Sunburst.hs view
@@ -0,0 +1,110 @@+{-# LANGUAGE TemplateHaskell       #-}+{-# LANGUAGE TypeFamilies          #-}+{-# LANGUAGE FlexibleContexts      #-}++-----------------------------------------------------------------------------+-- |+-- Module      :  Diagrams.TwoD.Sunburst+-- Copyright   :  (c) 2013 Jeffrey Rosenbluth+-- License     :  BSD-style (see LICENSE)+-- Maintainer  :  jeffrey.rosenbluth@gmail.com+--+-- Generation of Sunburst Partitions. A radial view of a Treemap.+--+-- The partitions are created without examining the contents of the tree nodes+-- which allows us to create a sunburst for any @Tree a@. As a consequence we cannot+-- base the size or color of the sections on the data in the tree, but only+-- on depth and number of children. Of course the code could easily be adapted+-- to handle more specific tree data.+--+-- See John Stasko, Richard Catrambone, \"An evaluation of space-filling+-- information visualizations for depicting hierarchical structures\", 2000.+-- <http://www.cc.gatech.edu/~john.stasko/papers/ijhcs00.pdf>.+--+-----------------------------------------------------------------------------++module Diagrams.TwoD.Sunburst+  ( --  * Sunburst+    sunburst'+  , sunburst+  , SunburstOpts(..), radius, sectionWidth, colors+  ) where++import           Control.Lens        (makeLenses, (^.))++import           Data.Tree+import           Data.Foldable       (foldMap)+import           Data.Default.Class+import           Diagrams.Prelude    hiding (radius)++data SunburstOpts+  = SunburstOpts+    { _radius       :: Double -- ^ Relative size of the root circle, usually 1.+    , _sectionWidth :: Double -- ^ Relative width of the sections.+    , _colors       :: [Colour Double] -- ^ Color list one for each ring.+    }++instance Default SunburstOpts where+  def = SunburstOpts+        { _radius       = 1.0+        , _sectionWidth = 0.3+        , _colors       = [ lightcoral, lightseagreen, paleturquoise+                         ,lightsteelblue, plum, violet, coral, honeydew]+        }++makeLenses ''SunburstOpts++-- Section data: Will be stored in nodes of a new rose tree and used to+-- make each section of the sunburst partition.+-- radius, ring width, start angle, end angle, number of sections, color.+data SData = SData Double Double Turn Turn Int (Colour Double)++-- Make n sections (annular wedges) spanning a1 to a2.+sections :: Renderable (Path R2) b+        => Double -> Double -> Turn -> Turn -> Int -> (Colour Double)+        -> Diagram b R2+sections r s a1 a2 n c = mconcat $ iterateN n (rotate theta) w+  where+    theta = (a2 - a1) / (fromIntegral n)+    w = annularWedge (s + r) r a1 (a1 + theta)+      # lc white # lw 0.008 # fc c++-- Convert an arbitrary @Tree a@ to a @Tree SData@ storing the sections info+-- in the nodes. If color list is shorter than depth of tree than the first+-- color of the list is repeated. If the color list is empty, lightgray is used.+toTree :: Double -> Double-> [(Colour Double)] -> Tree a -> Turn -> Turn  -> Tree SData+toTree r s [] x q1 q2 = toTree r s (repeat lightgray) x q1 q2+toTree r s (c:cs) (Node _ ts) q1 q2+  = Node (SData r s q1 q2 n c) ts'+      where+        n = length ts+        dt =  (q2 - q1) / (fromIntegral n)+        qs = [q1 + ((fromIntegral i) * dt ) | i <- [0..n]]+        fs = toTree (r + s) s (cs ++ [c])+        ts' = zipWith3 fs ts (take (n-1) qs) (drop 1 qs)++-- | Take any @Tree a@ and @SunburstOpts@ and make a sunburst partition.+--   Basically a treemap with a radial layout.+--   The root is the center of the sunburst and its circumference is divided+--   evenly according to the number of child nodes it has. Then each of those+--   sections is treated the same way.+sunburst' :: Renderable (Path R2) b => SunburstOpts -> Tree a -> Diagram b R2+sunburst' opts t+  = sunB $ toTree r s cs t 0 1+      where+        r = opts^.radius+        s = opts^.sectionWidth+        cs = opts^.colors+        sunB (Node (SData r' m a1 a2 n c) ts')+          = sections r' m a1 a2 n c <> (foldMap sunB ts')++-- | @sunburst@ with default opts+--+--   > import Diagrams.TwoD.Sunburst+--   > import Data.Tree (unfoldTree)+--   > aTree = unfoldTree (\n -> (0, replicate n (n-1))) 6+--   > sunburstEx = sunburst aTree # pad 1.1+--+--   <<diagrams/src_Diagrams_TwoD_Sunburst_sunburstEx.svg#diagram=sunburstEx&width=500>>+sunburst :: Renderable (Path R2) b => Tree a -> Diagram b R2+sunburst = sunburst' def
src/Diagrams/TwoD/Tilings.hs view
@@ -85,7 +85,7 @@ import qualified Data.Set             as S  import           Data.Colour-import           Diagrams.Prelude     hiding (e)+import           Diagrams.Prelude  ------------------------------------------------------------ -- The ring Q[sqrt(2), sqrt(3)]@@ -390,21 +390,21 @@  -- Regular tilings --- | <<diagrams/t3D.svg#diagram=t3D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t3D.svg#diagram=t3D&width=300>> t3 :: Tiling t3 = Tiling (replicate 6 Triangle) (const t3)  -- > import Diagrams.TwoD.Tilings -- > t3D = drawTiling t3 10 10 --- | <<diagrams/t4D.svg#diagram=t4D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t4D.svg#diagram=t4D&width=300>> t4 :: Tiling t4 = Tiling (replicate 4 Square) (const t4)  -- > import Diagrams.TwoD.Tilings -- > t4D = drawTiling t4 10 10 --- | <<diagrams/t6D.svg#diagram=t6D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t6D.svg#diagram=t6D&width=300>> t6 :: Tiling t6 = Tiling (replicate 3 Hexagon) (const t6) @@ -427,28 +427,28 @@           ) mk3Tiling _ = error "mk3Tiling may only be called on a list of length 3." --- | <<diagrams/t4612D.svg#diagram=t4612D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t4612D.svg#diagram=t4612D&width=300>> t4612 :: Tiling t4612 = mk3Tiling [4,6,12]  -- > import Diagrams.TwoD.Tilings -- > t4612D = drawTiling t4612 10 10 --- | <<diagrams/t488D.svg#diagram=t488D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t488D.svg#diagram=t488D&width=300>> t488 :: Tiling t488 = mk3Tiling [4,8,8]  -- > import Diagrams.TwoD.Tilings -- > t488D = drawTiling t488 10 10 --- | <<diagrams/t31212D.svg#diagram=t31212D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t31212D.svg#diagram=t31212D&width=300>> t31212 :: Tiling t31212 = mk3Tiling [3,12,12]  -- > import Diagrams.TwoD.Tilings -- > t31212D = drawTiling t31212 10 10 --- | <<diagrams/t3636D.svg#diagram=t3636D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t3636D.svg#diagram=t3636D&width=300>> t3636 :: Tiling t3636 = mkT [3,6,3,6]   where mkT :: [Int] -> Tiling@@ -480,7 +480,7 @@ rot _ []     = [] rot n (x:xs) = rot (n-1) (xs ++ [x]) --- | <<diagrams/t3464D.svg#diagram=t3464D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t3464D.svg#diagram=t3464D&width=300>> t3464 :: Tiling t3464 = semiregular [4,3,4,6] [3,2,1,0] @@ -503,28 +503,28 @@  -} --- | <<diagrams/t33434D.svg#diagram=t33434D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t33434D.svg#diagram=t33434D&width=300>> t33434 :: Tiling t33434  = semiregular [3,4,3,4,3] [0,2,1,4,3]  -- > import Diagrams.TwoD.Tilings -- > t33434D = drawTiling t33434 10 10 --- | <<diagrams/t33344D.svg#diagram=t33344D&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t33344D.svg#diagram=t33344D&width=300>> t33344 :: Tiling t33344  = semiregular [4,3,3,3,4] [0,4,2,3,1]  -- > import Diagrams.TwoD.Tilings -- > t33344D = drawTiling t33344 10 10 --- | <<diagrams/t33336LD.svg#diagram=t33336LD&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t33336LD.svg#diagram=t33336LD&width=300>> t33336L :: Tiling t33336L = semiregular [3,3,3,3,6] [4,1,3,2,0]  -- > import Diagrams.TwoD.Tilings -- > t33336LD = drawTiling t33336L 10 10 --- | <<diagrams/t33336RD.svg#diagram=t33336RD&width=300>>+-- | <<diagrams/src_Diagrams_TwoD_Tilings_t33336RD.svg#diagram=t33336RD&width=300>> t33336R :: Tiling t33336R = semiregular [3,3,3,3,6] [4,2,1,3,0]